@import "https://cdn.jsdelivr.net/npm/@fontsource/source-sans-pro@latest/300.css";
@import "https://cdn.jsdelivr.net/npm/@fontsource/source-sans-pro@latest/300-italic.css";
@import "https://cdn.jsdelivr.net/npm/@fontsource/source-sans-pro@latest/400.css";
@import "https://cdn.jsdelivr.net/npm/@fontsource/source-sans-pro@latest/400-italic.css";
@import "https://cdn.jsdelivr.net/npm/@fontsource/source-sans-pro@latest/600.css";
@import "https://cdn.jsdelivr.net/npm/@fontsource/source-sans-pro@latest/600-italic.css";
@import "https://cdn.jsdelivr.net/npm/@fontsource/source-sans-pro@latest/700.css";
@import "https://cdn.jsdelivr.net/npm/@fontsource/source-sans-pro@latest/700-italic.css";

body {
    margin: 0;
    min-height: 100svh;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    word-break: break-word;
    overflow-wrap: anywhere;
    font-family: 'Source Sans Pro', sans-serif
}

:focus-visible {
    outline: 2px solid #9B9D4E;
    outline-offset: 4px;
    border-radius: 2px
}

.site-header {
    position: relative;
    background: #F4F6EA;
    border-bottom: 1px solid #9b9d4e2e;
    box-shadow: 1px 4px 25px 0 #9b9d4e1c;
    z-index: 10
}

.header-top-bar {
    background: linear-gradient(90deg, #9B9D4E 0%, #AEC89E 100%);
    padding: 8px 24px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto
}

.header-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.75;
    text-decoration: none;
    transition: opacity .25s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.header-contact-item:hover {
    opacity: .82
}

.header-contact-item .mi {
    font-size: 15px
}

.header-main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px
}

.brand-box {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0
}

.logo-pill {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 22px;
    padding: 8px 16px;
    border: 1px solid #9b9d4e38;
    box-shadow: 1px 3px 6px 0 #9b9d4e12;
    width: 80px;
    height: 44px
}

.logo-pill img {
    width: 48px;
    height: 36px;
    object-fit: contain;
    display: block
}

.brand-name {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 23px;
    font-weight: 700;
    line-height: 1.1;
    color: #2d2e10;
    letter-spacing: -.02em;
    text-decoration: none
}

.brand-name span {
    color: #9B9D4E
}

.primary-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center
}

.primary-nav a {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.75;
    color: #2d2e10;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 4px;
    position: relative;
    transition: color .22s cubic-bezier(0.34, 1.56, 0.64, 1), background .22s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.primary-nav a::after {
    content: '';
    display: block;
    position: absolute;
    bottom: 6px;
    left: 16px;
    right: 16px;
    height: 2px;
    background: #9B9D4E;
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .28s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.primary-nav a:hover {
    color: #9B9D4E;
    background: #9b9d4e12
}

.primary-nav a:hover::after {
    transform: scaleX(1)
}

.header-action {
    flex-shrink: 0
}

.enrol-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.75;
    color: #fff;
    background: #9B9D4E;
    text-decoration: none;
    padding: 8px 24px;
    border-radius: 4px;
    border: 2px solid #9B9D4E;
    box-shadow: 1px 3px 6px 0 #9b9d4e12;
    transition: background .2s cubic-bezier(0.34, 1.56, 0.64, 1), color .2s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow .3s cubic-bezier(0.34, 1.56, 0.64, 1);
    min-height: 44px
}

.enrol-link:hover {
    background: #fff;
    color: #9B9D4E;
    box-shadow: 1px 4px 25px 0 #9b9d4e1c
}

.enrol-link .mi {
    font-size: 15px;
    transition: transform .25s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.enrol-link:hover .mi {
    transform: translateX(4px)
}

.site-footer {
    background: #2d2e10;
    color: #F4F6EA;
    position: relative;
    overflow: hidden
}

.footer-deco-strip {
    height: 6px;
    background: linear-gradient(90deg, #9B9D4E 0%, #AEC89E 60%, #9B9D4E 100%)
}

.footer-main-layer {
    max-width: 1400px;
    margin: 0 auto;
    padding: 96px 24px 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start
}

.footer-brand-col {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.footer-script-name {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 43px;
    font-weight: 300;
    font-style: italic;
    line-height: 1.1;
    color: #AEC89E;
    letter-spacing: -.03em;
    margin: 0
}

.footer-script-name em {
    font-style: normal;
    color: #9B9D4E
}

.footer-tagline {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.75;
    color: #f4f6eab3;
    margin: 0;
    max-width: 340px
}

.footer-logo-closer {
    display: flex;
    align-items: center;
    justify-content: flex-start
}

.footer-logo-pill {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 22px;
    padding: 8px 16px;
    border: 1px solid #aec89e4d;
    box-shadow: 1px 3px 6px 0 #aec89e12;
    width: 80px;
    height: 44px
}

.footer-logo-pill img {
    width: 48px;
    height: 36px;
    object-fit: contain;
    display: block
}

.footer-contact-col {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.footer-contact-label {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.1;
    color: #9B9D4E;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin: 0
}

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

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px
}

.footer-contact-list .mi {
    font-size: 15px;
    color: #AEC89E;
    margin-top: 4px;
    flex-shrink: 0
}

.footer-contact-list a,
.footer-contact-list span {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.75;
    color: #f4f6ead9;
    text-decoration: none;
    transition: color .22s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.footer-contact-list a:hover {
    color: #AEC89E
}

.footer-divider {
    border: none;
    border-top: 1px solid #aec89e26;
    margin: 0 24px;
    max-width: 1352px;
    margin-left: auto;
    margin-right: auto
}

.footer-legal-layer {
    max-width: 1400px;
    margin: 0 auto;
    padding: 24px 24px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px
}

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

.footer-legal-nav a {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.75;
    color: #f4f6ea8c;
    text-decoration: none;
    padding: 8px;
    border-radius: 2px;
    transition: color .25s cubic-bezier(0.34, 1.56, 0.64, 1);
    min-height: 44px;
    display: inline-flex;
    align-items: center
}

.footer-legal-nav a:hover {
    color: #AEC89E
}

.footer-legal-sep {
    color: #f4f6ea33;
    font-size: 15px;
    line-height: 1.75
}

.footer-copy {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.75;
    color: #f4f6ea66;
    margin: 0
}

.cookie-popup {
    display: none;
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 300px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 1px 12px 40px 0 #9b9d4e21;
    border: 1px solid #9b9d4e2e;
    z-index: 1000;
    padding: 24px;
    transform: translateY(20px);
    opacity: 0;
    transition: transform .42s cubic-bezier(0.34, 1.56, 0.64, 1), opacity .42s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.cookie-popup.visible {
    transform: translateY(0);
    opacity: 1
}

.cookie-icon-mark {
    width: 36px;
    height: 36px;
    background: #F4F6EA;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px
}

.cookie-icon-mark .mi {
    font-size: 23px;
    color: #9B9D4E
}

.cookie-text {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.75;
    color: #2d2e10;
    margin: 0 0 16px
}

.cookie-btn-row {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.cookie-accept-btn,
.cookie-decline-btn {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.75;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    min-height: 44px;
    transition: background .22s cubic-bezier(0.34, 1.56, 0.64, 1), color .22s cubic-bezier(0.34, 1.56, 0.64, 1), border-color .22s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 2px solid #9B9D4E
}

.cookie-accept-btn {
    background: #9B9D4E;
    color: #fff
}

.cookie-accept-btn:hover,
.cookie-accept-btn:focus-visible {
    background: #7a7c3a;
    border-color: #7a7c3a
}

.cookie-decline-btn {
    background: transparent;
    color: #9B9D4E
}

.cookie-decline-btn:hover,
.cookie-decline-btn:focus-visible {
    background: #9b9d4e12
}

@media (max-width: 700px) {
    .footer-main-layer {
        grid-template-columns: 1fr;
        padding: 48px 24px 24px
    }

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

    .header-main {
        flex-wrap: wrap;
        gap: 16px
    }

    .primary-nav {
        order: 3;
        width: 100%;
        justify-content: flex-start
    }

    .header-action {
        order: 2
    }

    .footer-script-name {
        font-size: 31px
    }
}

.policy-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 96px 48px
}

.policy-wrapper h1 {
    font-size: 60px;
    line-height: 1.1;
    letter-spacing: -.02em;
    color: #2c2c2c;
    margin-bottom: 48px;
    margin-top: 0
}

.policy-wrapper h2 {
    font-size: 43px;
    line-height: 1.1;
    letter-spacing: -.015em;
    color: #2c2c2c;
    margin-top: 96px;
    margin-bottom: 24px
}

.policy-wrapper h3 {
    font-size: 31px;
    line-height: 1.1;
    letter-spacing: -.01em;
    color: #9B9D4E;
    margin-top: 48px;
    margin-bottom: 16px
}

.policy-wrapper h4 {
    font-size: 23px;
    line-height: 1.75;
    letter-spacing: -.005em;
    color: #2c2c2c;
    margin-top: 48px;
    margin-bottom: 16px
}

.policy-wrapper h5 {
    font-size: 15px;
    line-height: 1.75;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #9B9D4E;
    margin-top: 24px;
    margin-bottom: 8px
}

.policy-wrapper h6 {
    font-size: 15px;
    line-height: 1.75;
    color: #5a5c2e;
    margin-top: 24px;
    margin-bottom: 8px
}

.policy-wrapper p {
    font-size: 15px;
    line-height: 1.75;
    color: #3a3a3a;
    margin-top: 0;
    margin-bottom: 16px;
    max-width: 72ch
}

.policy-wrapper strong,
.policy-wrapper b {
    font-weight: 700;
    color: #2c2c2c
}

.policy-wrapper em,
.policy-wrapper i {
    font-style: italic;
    color: #5a5c2e
}

.policy-wrapper hr {
    border: none;
    border-top: 1px solid #AEC89E;
    margin: 48px 0;
    opacity: .5
}

.policy-wrapper div {
    font-size: 15px;
    line-height: 1.75
}

.policy-wrapper table {
    width: 100%;
    border-collapse: collapse;
    margin: 48px 0;
    font-size: 15px;
    line-height: 1.75;
    box-shadow: 1px 4px 25px 0 #9b9d4e1c;
    border-radius: 14px;
    overflow: hidden
}

.policy-wrapper thead {
    background-color: #F4F6EA
}

.policy-wrapper thead th {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: #5a5c2e;
    padding: 16px 24px;
    text-align: left;
    border-bottom: 2px solid #AEC89E
}

.policy-wrapper tbody tr {
    border-bottom: 1px solid #aec89e4d;
    transition: background-color .25s cubic-bezier(0.34, 1.56, 0.64, 1)
}

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

.policy-wrapper tbody tr:hover {
    background-color: #F4F6EA
}

.policy-wrapper td {
    padding: 16px 24px;
    color: #3a3a3a;
    vertical-align: top
}

.policy-wrapper th {
    padding: 16px 24px;
    vertical-align: top
}

@media (max-width: 900px) {
    .policy-wrapper {
        padding: 48px 24px
    }

    .policy-wrapper h1 {
        font-size: 43px
    }

    .policy-wrapper h2 {
        font-size: 31px;
        margin-top: 48px
    }

    .policy-wrapper h3 {
        font-size: 23px
    }

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

@media (max-width: 600px) {
    .policy-wrapper {
        padding: 48px 16px
    }

    .policy-wrapper h1 {
        font-size: 31px
    }

    .policy-wrapper h2 {
        font-size: 23px
    }

    .policy-wrapper h3 {
        font-size: 15px
    }
}

.edu-biz {
    background-color: #fff;
    color: #1e1e2e;
    overflow-x: hidden;
    position: relative
}

.edu-biz .page-texture {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: .032;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 256px 256px
}

.edu-biz .cross-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 8px 0;
    overflow: hidden
}

.edu-biz .cross-divider span {
    display: inline-block;
    width: 10px;
    height: 10px;
    position: relative;
    flex-shrink: 0
}

.edu-biz .cross-divider span::before,
.edu-biz .cross-divider span::after {
    content: '';
    position: absolute;
    background: #9B9D4E;
    opacity: .45
}

.edu-biz .cross-divider span::before {
    width: 1px;
    height: 10px;
    left: 50%;
    top: 0;
    transform: translateX(-50%)
}

.edu-biz .cross-divider span::after {
    width: 10px;
    height: 1px;
    top: 50%;
    left: 0;
    transform: translateY(-50%)
}

.edu-biz .slide-up {
    opacity: 0;
    transform: translateY(40px);
    animation: slideUp .28s cubic-bezier(0.34, 1.56, 0.64, 1) forwards
}

.edu-biz .slide-up.d1 {
    animation-delay: .08s
}

.edu-biz .slide-up.d2 {
    animation-delay: .16s
}

.edu-biz .slide-up.d3 {
    animation-delay: .22s
}

.edu-biz .slide-up.d4 {
    animation-delay: .28s
}

.edu-biz .slide-up.d5 {
    animation-delay: .34s
}

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

.edu-biz .title-blk {
    position: relative;
    z-index: 1;
    padding: 96px 24px 48px;
    text-align: center;
    background: linear-gradient(to left, #AEC89E22, transparent 70%), #F4F6EA;
    overflow: hidden
}

.edu-biz .title-blk::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='t'%3E%3CfeTurbulence type='turbulence' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23t)'/%3E%3C/svg%3E");
    background-size: 512px 512px;
    opacity: .04;
    pointer-events: none
}

.edu-biz .title-img-wrap {
    position: relative;
    display: inline-block;
    margin-bottom: 48px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 1px 12px 40px 0 #9b9d4e21
}

.edu-biz .title-img-wrap img {
    width: 680px;
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 14px
}

.edu-biz .title-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(0deg, transparent, transparent 3px, #9b9d4e12 3px, #9b9d4e12 4px);
    pointer-events: none;
    border-radius: 14px
}

.edu-biz .title-blk h1 {
    font-size: 60px;
    line-height: 1.1;
    letter-spacing: -.03em;
    max-width: 820px;
    margin: 0 auto 24px;
    color: #1e1e2e
}

.edu-biz .title-blk h1 em {
    font-style: italic;
    color: #9B9D4E
}

.edu-biz .title-blk .sub {
    font-size: 23px;
    line-height: 1.75;
    max-width: 560px;
    margin: 0 auto;
    color: #3a3a4a
}

.edu-biz .title-blk .tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-top: 24px
}

.edu-biz .tag-row .tag {
    font-size: 15px;
    line-height: 1.1;
    padding: 8px 16px;
    border: 1px solid #9b9d4e59;
    border-radius: 4px;
    color: #9B9D4E;
    background: #aec89e1a;
    transition: background .22s cubic-bezier(0.34, 1.56, 0.64, 1), border-color .25s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.edu-biz .tag-row .tag:hover {
    background: #aec89e38;
    border-color: #9B9D4E
}

.edu-biz .about-strip {
    position: relative;
    z-index: 1;
    padding: 48px 24px;
    background: #fff
}

.edu-biz .about-strip .inner-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start
}

.edu-biz .about-strip .diag-col {
    position: relative;
    padding: 48px;
    background: #F4F6EA;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 1px 4px 25px 0 #9b9d4e1c
}

.edu-biz .about-strip .diag-col::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 200%;
    height: 1px;
    background: linear-gradient(to right, transparent, #9B9D4E, transparent);
    transform: rotate(-22deg);
    transform-origin: center;
    opacity: .3;
    pointer-events: none
}

.edu-biz .about-strip h2 {
    font-size: 43px;
    line-height: 1.1;
    letter-spacing: -.02em;
    margin-bottom: 24px
}

.edu-biz .about-strip h2 .w1 {
    color: #9B9D4E
}

.edu-biz .about-strip h2 .w2 {
    color: #1e1e2e
}

.edu-biz .about-strip p {
    font-size: 15px;
    line-height: 1.75;
    color: #3a3a4a;
    text-indent: 1.5em;
    margin: 0
}

.edu-biz .about-strip p+p {
    margin-top: 0
}

.edu-biz .about-strip .stat-col {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.edu-biz .stat-item {
    border-bottom: 1px solid #9b9d4e33;
    border-left: 3px solid #AEC89E;
    padding: 16px 16px 16px 24px;
    transition: border-left-color .25s cubic-bezier(0.34, 1.56, 0.64, 1), background .22s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    border-radius: 2px
}

.edu-biz .stat-item:hover {
    border-left-color: #9B9D4E;
    background: #aec89e14
}

.edu-biz .stat-item .num {
    font-size: 43px;
    line-height: 1.1;
    color: #9B9D4E;
    letter-spacing: -.03em
}

.edu-biz .stat-item .label {
    font-size: 15px;
    line-height: 1.75;
    color: #3a3a4a
}

.edu-biz .paths-blk {
    position: relative;
    z-index: 1;
    padding: 96px 24px;
    background: linear-gradient(to left, #aec89e2e, transparent 60%), #F4F6EA
}

.edu-biz .paths-blk .paths-head {
    max-width: 1400px;
    margin: 0 auto 48px
}

.edu-biz .paths-blk h2 {
    font-size: 43px;
    line-height: 1.1;
    letter-spacing: -.02em;
    margin-bottom: 16px
}

.edu-biz .paths-blk h2 .w1 {
    color: #9B9D4E
}

.edu-biz .paths-blk h2 .w2 {
    color: #1e1e2e
}

.edu-biz .paths-blk .lead {
    font-size: 23px;
    line-height: 1.75;
    color: #3a3a4a;
    max-width: 560px
}

.edu-biz .paths-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px
}

.edu-biz .path-card {
    background: #fff;
    border-radius: 14px;
    padding: 48px 24px 24px;
    box-shadow: 1px 3px 6px 0 #9b9d4e12;
    position: relative;
    overflow: hidden;
    transition: box-shadow .28s cubic-bezier(0.34, 1.56, 0.64, 1), transform .25s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.edu-biz .path-card::after {
    content: '';
    position: absolute;
    top: -40px;
    left: -20px;
    width: 180%;
    height: 1px;
    background: linear-gradient(to right, transparent, #AEC89E, transparent);
    transform: rotate(18deg);
    opacity: .4;
    pointer-events: none
}

.edu-biz .path-card:hover {
    box-shadow: 1px 12px 40px 0 #9b9d4e21;
    transform: translateY(-4px)
}

.edu-biz .path-card .card-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 16px;
    color: #9B9D4E
}

.edu-biz .path-card h3 {
    font-size: 23px;
    line-height: 1.1;
    letter-spacing: -.01em;
    color: #1e1e2e;
    margin-bottom: 16px
}

.edu-biz .path-card p {
    font-size: 15px;
    line-height: 1.75;
    color: #3a3a4a;
    text-indent: 1.5em;
    margin: 0
}

.edu-biz .path-card .card-detail {
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid #9b9d4e2e;
    font-size: 15px;
    line-height: 1.75;
    color: #9B9D4E
}

.edu-biz .session-blk {
    position: relative;
    z-index: 1;
    padding: 96px 24px;
    background: #fff
}

.edu-biz .session-blk .s-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 5fr 4fr;
    gap: 48px;
    align-items: start
}

.edu-biz .session-blk .s-img-wrap {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 1px 4px 25px 0 #9b9d4e1c
}

.edu-biz .session-blk .s-img-wrap img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 22px;
    transition: transform .35s cubic-bezier(0.34, 1.56, 0.64, 1);
    will-change: transform
}

.edu-biz .session-blk .s-img-wrap:hover img {
    transform: scale(1.02)
}

.edu-biz .session-blk h2 {
    font-size: 43px;
    line-height: 1.1;
    letter-spacing: -.02em;
    margin-bottom: 24px
}

.edu-biz .session-blk h2 .w1 {
    color: #9B9D4E
}

.edu-biz .session-blk h2 .w2 {
    color: #1e1e2e
}

.edu-biz .session-blk .s-text p {
    font-size: 15px;
    line-height: 1.75;
    color: #3a3a4a;
    text-indent: 1.5em;
    margin: 0
}

.edu-biz .session-blk .s-list {
    margin-top: 24px;
    list-style: none;
    padding: 0
}

.edu-biz .session-blk .s-list li {
    font-size: 15px;
    line-height: 1.75;
    color: #3a3a4a;
    padding: 8px 0;
    border-bottom: 1px solid #9b9d4e2e;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color .22s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.edu-biz .session-blk .s-list li:hover {
    color: #1e1e2e
}

.edu-biz .session-blk .s-list li::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 2px;
    background: #AEC89E;
    flex-shrink: 0;
    transition: background .25s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.edu-biz .session-blk .s-list li:hover::before {
    background: #9B9D4E
}

.edu-biz .session-blk .s-cta {
    margin-top: 24px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    line-height: 1.1;
    color: #9B9D4E;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    padding-bottom: 4px;
    transition: border-color .22s cubic-bezier(0.34, 1.56, 0.64, 1), gap .25s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.edu-biz .session-blk .s-cta:hover {
    border-color: #9B9D4E;
    gap: 16px
}

.edu-biz .cycle-group {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.edu-biz .cycle-item {
    padding: 16px;
    border-radius: 4px;
    border: 1px solid #9b9d4e26;
    font-size: 15px;
    line-height: 1.75;
    color: #3a3a4a;
    background: #fff;
    animation: cycleHighlight 3.6s ease-in-out infinite
}

.edu-biz .cycle-item:nth-child(1) {
    animation-delay: 0s
}

.edu-biz .cycle-item:nth-child(2) {
    animation-delay: 1.2s
}

.edu-biz .cycle-item:nth-child(3) {
    animation-delay: 2.4s
}

@keyframes cycleHighlight {

    0%,
    25%,
    100% {
        background: #fff;
        border-color: #9b9d4e26;
        color: #3a3a4a
    }

    8%,
    18% {
        background: #aec89e26;
        border-color: #9B9D4E;
        color: #1e1e2e
    }
}

.edu-biz .cycle-item strong {
    color: #9B9D4E;
    font-style: italic
}

@media (max-width: 900px) {
    .edu-biz .about-strip .inner-grid {
        grid-template-columns: 1fr
    }

    .edu-biz .paths-grid {
        grid-template-columns: 1fr
    }

    .edu-biz .session-blk .s-inner {
        grid-template-columns: 1fr
    }

    .edu-biz .title-blk h1 {
        font-size: 43px
    }

    .edu-biz .about-strip h2,
    .edu-biz .paths-blk h2,
    .edu-biz .session-blk h2 {
        font-size: 31px
    }
}

@media (max-width: 600px) {
    .edu-biz .title-blk {
        padding: 48px 16px 24px
    }

    .edu-biz .title-blk h1 {
        font-size: 31px
    }

    .edu-biz .title-blk .sub {
        font-size: 15px
    }

    .edu-biz .about-strip,
    .edu-biz .paths-blk,
    .edu-biz .session-blk {
        padding: 48px 16px
    }

    .edu-biz .about-strip .diag-col {
        padding: 24px
    }
}

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

.cont-pg .pg-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 48px
}

.cont-pg .reveal-left {
    animation: slideInLeft .32s cubic-bezier(0.34, 1.56, 0.64, 1) both
}

.cont-pg .reveal-right {
    animation: slideInRight .28s cubic-bezier(0.34, 1.56, 0.64, 1) both
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-38px)
    }

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(38px)
    }

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

.cont-pg .strip-band {
    background: #F4F6EA;
    border-bottom: 1px solid #AEC89E;
    padding: 24px 0;
    position: relative
}

.cont-pg .strip-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%239B9D4E' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none
}

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

.cont-pg .strip-img-wrap {
    flex: 0 0 auto;
    width: 340px;
    height: 160px;
    overflow: hidden;
    border-radius: 4px;
    clip-path: polygon(0 0, 92% 0, 100% 50%, 92% 100%, 0 100%);
    position: relative
}

.cont-pg .strip-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: sepia(0.3) saturate(1.2) brightness(0.95)
}

.cont-pg .strip-text-area {
    flex: 1;
    position: relative;
    padding: 16px 24px
}

.cont-pg .strip-text-area::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 1.5px dashed #9B9D4E;
    border-radius: 4px;
    pointer-events: none;
    opacity: .6
}

.cont-pg .strip-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 22px;
    background: #9B9D4E;
    margin-right: 8px;
    vertical-align: middle;
    flex-shrink: 0
}

.cont-pg .strip-h1 {
    font-size: 43px;
    line-height: 1.1;
    letter-spacing: -.02em;
    color: #2a2c10;
    margin: 0 0 8px;
    display: flex;
    flex-direction: row;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap
}

.cont-pg .strip-h1 .word-acc {
    color: #9B9D4E
}

.cont-pg .strip-sub {
    font-size: 15px;
    line-height: 1.75;
    color: #4a4c2a;
    margin: 0
}

.cont-pg .mid-sec {
    padding: 96px 0 48px;
    background: #fff
}

.cont-pg .mid-cols {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 48px;
    align-items: start
}

.cont-pg .form-area {
    background: #fff;
    border-radius: 14px;
    box-shadow: 1px 4px 25px 0 #9b9d4e1c;
    padding: 48px
}

.cont-pg .form-h2 {
    font-size: 31px;
    line-height: 1.1;
    letter-spacing: -.015em;
    color: #2a2c10;
    margin: 0 0 8px
}

.cont-pg .form-h2 .fw {
    color: #9B9D4E
}

.cont-pg .form-desc {
    font-size: 15px;
    line-height: 1.75;
    color: #5a5c3a;
    margin: 0 0 24px
}

.cont-pg .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px
}

.cont-pg .form-field {
    display: flex;
    flex-direction: column;
    gap: 8px
}

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

.cont-pg .field-lbl {
    font-size: 15px;
    line-height: 1.1;
    color: #3a3c1a;
    font-weight: 600
}

.cont-pg .field-inp {
    border: 1.5px solid #d4d6a0;
    border-radius: 4px;
    padding: 16px;
    font-size: 15px;
    line-height: 1.1;
    color: #2a2c10;
    background: #F4F6EA;
    outline: none;
    transition: border-color .22s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow .25s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: inset 0 2px 4px 0 #9b9d4e12;
    width: 100%;
    box-sizing: border-box
}

.cont-pg .field-inp::placeholder {
    color: #9b9d4e73
}

.cont-pg .field-inp:focus {
    border-color: #9B9D4E;
    box-shadow: inset 0 2px 4px 0 #9b9d4e12 0 0 0 3px #9b9d4e21
}

.cont-pg .field-sel {
    border: 1.5px solid #d4d6a0;
    border-radius: 4px;
    padding: 16px;
    font-size: 15px;
    line-height: 1.1;
    color: #2a2c10;
    background: #F4F6EA;
    outline: none;
    width: 100%;
    box-sizing: border-box;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='14' height='8' viewBox='0 0 14 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%239B9D4E' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    cursor: pointer;
    transition: border-color .22s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: inset 0 2px 4px 0 #9b9d4e12
}

.cont-pg .field-sel:focus {
    border-color: #9B9D4E
}

.cont-pg .radio-grp {
    display: flex;
    flex-direction: row;
    gap: 16px;
    flex-wrap: wrap;
    padding: 8px 0
}

.cont-pg .radio-opt {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 15px;
    color: #3a3c1a
}

.cont-pg .radio-opt input[type="radio"] {
    accent-color: #9B9D4E;
    width: 18px;
    height: 18px;
    cursor: pointer
}

.cont-pg .privacy-row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 8px;
    margin-top: 16px;
    grid-column: 1 / -1
}

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

.cont-pg .privacy-txt {
    font-size: 15px;
    line-height: 1.75;
    color: #5a5c3a
}

.cont-pg .privacy-txt a {
    color: #9B9D4E;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color .22s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.cont-pg .privacy-txt a:hover {
    color: #2a2c10
}

.cont-pg .submit-row {
    grid-column: 1 / -1;
    margin-top: 8px
}

.cont-pg .btn-send {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    background: #9B9D4E;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 16px 48px;
    font-size: 15px;
    line-height: 1.1;
    cursor: pointer;
    letter-spacing: .02em;
    font-weight: 600;
    transition: background .25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow .28s cubic-bezier(0.34, 1.56, 0.64, 1), transform .22s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 1px 3px 6px 0 #9b9d4e12;
    type: submit
}

.cont-pg .btn-send:hover {
    background: #7a7c35;
    box-shadow: 1px 12px 40px 0 #9b9d4e21;
    transform: translateY(-2px)
}

.cont-pg .btn-send:active {
    transform: translateY(0)
}

.cont-pg .btn-send:focus-visible {
    outline: 2px solid #9B9D4E;
    outline-offset: 3px
}

.cont-pg .btn-arrow {
    display: inline-block;
    transition: transform .22s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.cont-pg .btn-send:hover .btn-arrow {
    transform: translateX(5px)
}

.cont-pg .side-detail {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.cont-pg .detail-card {
    border-radius: 14px;
    border: 1.5px solid #AEC89E;
    padding: 24px;
    background: #F4F6EA;
    box-shadow: 1px 3px 6px 0 #aec89e12;
    position: relative;
    overflow: hidden
}

.cont-pg .detail-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to left, #AEC89E, transparent);
    border-radius: 14px 14px 0 0
}

.cont-pg .detail-lbl {
    font-size: 15px;
    line-height: 1.1;
    color: #9B9D4E;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px
}

.cont-pg .detail-val {
    font-size: 15px;
    line-height: 1.75;
    color: #2a2c10;
    margin: 0
}

.cont-pg .detail-val a {
    color: #2a2c10;
    text-decoration: none;
    border-bottom: 1px solid #AEC89E;
    transition: color .22s cubic-bezier(0.34, 1.56, 0.64, 1), border-color .25s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.cont-pg .detail-val a:hover {
    color: #9B9D4E;
    border-color: #9B9D4E
}

.cont-pg .chart-card {
    border-radius: 14px;
    border: 1.5px solid #d4d6a0;
    padding: 24px;
    background: #fff;
    box-shadow: 1px 4px 25px 0 #9b9d4e1c;
    text-align: center
}

.cont-pg .chart-title {
    font-size: 15px;
    line-height: 1.1;
    color: #5a5c3a;
    margin-bottom: 16px;
    font-weight: 600
}

.cont-pg .donut-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px
}

.cont-pg .donut-legend {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%
}

.cont-pg .legend-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: #3a3c1a;
    line-height: 1.1
}

.cont-pg .legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 2px;
    flex-shrink: 0
}

.cont-pg .bottom-sec {
    padding: 48px 0 96px;
    background: #F4F6EA;
    position: relative
}

.cont-pg .bottom-sec::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%239B9D4E' fill-opacity='0.03'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none
}

.cont-pg .bottom-four {
    display: grid;
    grid-template-columns: 1fr 2fr 2fr 1fr;
    gap: 24px;
    align-items: start;
    position: relative
}

.cont-pg .reach-head {
    font-size: 23px;
    line-height: 1.1;
    letter-spacing: -.01em;
    color: #2a2c10;
    margin: 0 0 16px
}

.cont-pg .reach-head .fw {
    color: #9B9D4E
}

.cont-pg .reach-body {
    font-size: 15px;
    line-height: 1.75;
    color: #4a4c2a;
    margin: 0;
    text-indent: 1.2em
}

.cont-pg .reach-body+.reach-body {
    margin-top: 0
}

.cont-pg .alt-link-row {
    margin-top: 16px
}

.cont-pg .alt-link {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    color: #9B9D4E;
    font-size: 15px;
    line-height: 1.1;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1.5px solid transparent;
    transition: border-color .22s cubic-bezier(0.34, 1.56, 0.64, 1), color .25s cubic-bezier(0.34, 1.56, 0.64, 1);
    padding-bottom: 2px
}

.cont-pg .alt-link:hover {
    border-color: #9B9D4E;
    color: #7a7c35
}

.cont-pg .hover-underline-group:hover .hu-word {
    text-decoration: underline;
    text-decoration-color: #9B9D4E;
    text-underline-offset: 4px
}

.cont-pg .hu-word {
    text-decoration: none;
    transition: text-decoration-color .22s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.cont-pg .addr-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column
}

.cont-pg .addr-list li {
    font-size: 15px;
    line-height: 1.75;
    color: #3a3c1a;
    border-bottom: 1px solid #AEC89E;
    padding: 8px 0;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 8px
}

.cont-pg .addr-list li:last-child {
    border-bottom: none
}

.cont-pg .addr-list li a {
    color: #3a3c1a;
    text-decoration: none;
    transition: color .22s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.cont-pg .addr-list li a:hover {
    color: #9B9D4E
}

.cont-pg .biz-card {
    border-radius: 22px;
    background: #2a2c10;
    padding: 24px;
    color: #F4F6EA;
    box-shadow: 1px 12px 40px 0 #9b9d4e21;
    display: flex;
    flex-direction: column;
    gap: 16px
}

.cont-pg .biz-card-h {
    font-size: 23px;
    line-height: 1.1;
    color: #AEC89E;
    margin: 0;
    letter-spacing: -.01em
}

.cont-pg .biz-card-p {
    font-size: 15px;
    line-height: 1.75;
    color: #c8caa0;
    margin: 0
}

.cont-pg .biz-card-link {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    color: #F4F6EA;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1.5px solid #9B9D4E;
    padding-bottom: 2px;
    transition: color .25s cubic-bezier(0.34, 1.56, 0.64, 1), border-color .28s cubic-bezier(0.34, 1.56, 0.64, 1);
    width: fit-content
}

.cont-pg .biz-card-link:hover {
    color: #AEC89E;
    border-color: #AEC89E
}

.cont-pg .side-note {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-top: 8px
}

.cont-pg .side-note-item {
    font-size: 15px;
    line-height: 1.75;
    color: #5a5c3a;
    border-left: 3px solid #AEC89E;
    border-top: 1px solid #d4d6a0;
    padding: 8px 0 8px 16px
}

@media (max-width: 1024px) {
    .cont-pg .pg-inner {
        padding: 0 24px
    }

    .cont-pg .mid-cols {
        grid-template-columns: 1fr
    }

    .cont-pg .bottom-four {
        grid-template-columns: 1fr 1fr
    }

    .cont-pg .strip-img-wrap {
        width: 200px;
        height: 120px
    }
}

@media (max-width: 680px) {
    .cont-pg .strip-row {
        flex-direction: column;
        gap: 16px
    }

    .cont-pg .strip-img-wrap {
        width: 100%;
        clip-path: none
    }

    .cont-pg .form-grid {
        grid-template-columns: 1fr
    }

    .cont-pg .form-field.full {
        grid-column: 1
    }

    .cont-pg .privacy-row {
        grid-column: 1
    }

    .cont-pg .submit-row {
        grid-column: 1
    }

    .cont-pg .bottom-four {
        grid-template-columns: 1fr
    }

    .cont-pg .strip-h1 {
        font-size: 31px
    }
}

.abt-us {
    max-width: 100%;
    overflow-x: hidden;
    background: #fff
}

.abt-us .geo-bg {
    position: absolute;
    border-radius: 50%;
    background: transparent;
    pointer-events: none;
    z-index: 0
}

.abt-us .pg-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 48px
}

.abt-us .ttl-blk {
    position: relative;
    padding: 96px 0 48px;
    background: linear-gradient(to left, #fff, #F4F6EA);
    overflow: hidden
}

.abt-us .ttl-blk .geo-bg:nth-child(1) {
    width: 420px;
    height: 420px;
    border: 1px solid #9b9d4e14;
    top: -80px;
    right: 120px
}

.abt-us .ttl-blk .geo-bg:nth-child(2) {
    width: 240px;
    height: 240px;
    border: 1px solid #aec89e1a;
    top: 60px;
    right: 280px
}

.abt-us .ttl-blk .geo-bg:nth-child(3) {
    width: 160px;
    height: 160px;
    border: 1px solid #9b9d4e0f;
    bottom: -40px;
    left: 60px
}

.abt-us .ttl-grid {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 96px;
    position: relative;
    z-index: 1
}

.abt-us .ttl-text {
    flex: 1 1 55%
}

.abt-us .ttl-eyebrow {
    font-size: 15px;
    line-height: 1.75;
    color: #9B9D4E;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 24px
}

.abt-us .ttl-h1 {
    font-size: 72px;
    line-height: 1.1;
    letter-spacing: -.03em;
    margin-bottom: 24px;
    color: #1e1e1e
}

.abt-us .ttl-h1 .w-accent {
    color: #9B9D4E
}

.abt-us .ttl-sub {
    font-size: 23px;
    line-height: 1.75;
    color: #3a3a3a;
    max-width: 480px
}

.abt-us .ttl-img-wrap {
    flex: 0 0 380px;
    position: relative
}

.abt-us .ttl-img-frame {
    width: 380px;
    height: 460px;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 1px 12px 40px 0 #9b9d4e21;
    position: relative
}

.abt-us .ttl-img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .35s cubic-bezier(0.34, 1.56, 0.64, 1)
}

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

.abt-us .ttl-img-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, #9b9d4e2e 0%, #aec89e14 60%, transparent 100%);
    mix-blend-mode: multiply;
    pointer-events: none
}

.abt-us .ttl-img-frame::before {
    content: "";
    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.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    z-index: 2;
    pointer-events: none;
    border-radius: 22px
}

.abt-us .ttl-badge {
    position: absolute;
    bottom: -16px;
    left: -24px;
    background: #9B9D4E;
    color: #fff;
    border-radius: 14px;
    padding: 16px 24px;
    box-shadow: 1px 4px 25px 0 #9b9d4e1c;
    z-index: 3
}

.abt-us .ttl-badge .badge-num {
    font-size: 31px;
    line-height: 1.1;
    letter-spacing: -.02em;
    display: block
}

.abt-us .ttl-badge .badge-lbl {
    font-size: 15px;
    line-height: 1.75;
    opacity: .88
}

.abt-us .div-line {
    height: 2px;
    background: linear-gradient(to left, #AEC89E, #9B9D4E, transparent);
    margin: 0
}

.abt-us .story-blk {
    padding: 96px 0;
    background: #fff;
    position: relative
}

.abt-us .story-blk .geo-bg:nth-child(1) {
    width: 300px;
    height: 300px;
    border: 1px solid #aec89e17;
    top: 48px;
    right: -60px
}

.abt-us .story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 48px;
    position: relative;
    z-index: 1
}

.abt-us .story-lead {
    grid-column: 1 / 3
}

.abt-us .story-h2 {
    font-size: 43px;
    line-height: 1.1;
    letter-spacing: -.02em;
    margin-bottom: 24px;
    color: #1e1e1e
}

.abt-us .story-h2 .w-accent {
    color: #9B9D4E
}

.abt-us .story-body p {
    font-size: 15px;
    line-height: 1.75;
    color: #2e2e2e;
    text-indent: 1.5em;
    margin: 0;
    padding: 0
}

.abt-us .story-aside {
    grid-column: 3 / 4;
    display: flex;
    flex-direction: column;
    gap: 24px
}

.abt-us .story-stat {
    border-top: 2px solid #9B9D4E;
    padding-top: 16px;
    transition: border-color .25s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.abt-us .story-stat:hover {
    border-color: #AEC89E
}

.abt-us .story-stat .stat-num {
    font-size: 43px;
    line-height: 1.1;
    color: #9B9D4E;
    letter-spacing: -.03em
}

.abt-us .story-stat .stat-desc {
    font-size: 15px;
    line-height: 1.75;
    color: #3a3a3a
}

.abt-us .story-img-wrap {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: row;
    gap: 48px;
    align-items: flex-start;
    margin-top: 24px
}

.abt-us .story-img-frame {
    flex: 0 0 340px;
    height: 300px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 1px 4px 25px 0 #9b9d4e1c
}

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

.abt-us .story-img-frame:hover img {
    transform: scale(1.05)
}

.abt-us .story-quote-blk {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px
}

.abt-us .story-quote {
    font-size: 23px;
    line-height: 1.75;
    color: #2e2e2e;
    border-left: 4px solid #AEC89E;
    border-top: 1px solid #aec89e4d;
    padding: 24px;
    border-radius: 4px;
    background: #F4F6EA
}

.abt-us .story-quote em {
    font-style: italic;
    color: #9B9D4E
}

.abt-us .div-line-rev {
    height: 2px;
    background: linear-gradient(to right, #AEC89E, #9B9D4E, transparent);
    margin: 0
}

.abt-us .team-blk {
    padding: 96px 0 48px;
    background: linear-gradient(to left, #F4F6EA, #fff 70%);
    position: relative;
    overflow: hidden
}

.abt-us .team-blk .geo-bg:nth-child(1) {
    width: 500px;
    height: 500px;
    border: 1px solid #9b9d4e0f;
    bottom: -120px;
    left: -100px
}

.abt-us .team-blk .geo-bg:nth-child(2) {
    width: 200px;
    height: 200px;
    border: 1px solid #aec89e1a;
    top: 48px;
    right: 200px
}

.abt-us .team-top {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 48px;
    position: relative;
    z-index: 1
}

.abt-us .team-h2 {
    font-size: 43px;
    line-height: 1.1;
    letter-spacing: -.02em;
    color: #1e1e1e
}

.abt-us .team-h2 .w-accent {
    color: #AEC89E
}

.abt-us .team-desc {
    font-size: 15px;
    line-height: 1.75;
    color: #3a3a3a;
    max-width: 360px;
    text-align: right
}

.abt-us .team-list {
    display: flex;
    flex-direction: row;
    gap: 24px;
    position: relative;
    z-index: 1;
    flex-wrap: wrap
}

.abt-us .team-card {
    flex: 1 1 260px;
    background: #fff;
    border-radius: 14px;
    padding: 24px;
    box-shadow: 1px 3px 6px 0 #9b9d4e12;
    border-top: 3px solid transparent;
    transition: box-shadow .22s cubic-bezier(0.34, 1.56, 0.64, 1), border-color .28s cubic-bezier(0.34, 1.56, 0.64, 1), transform .25s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: shadow-build .35s cubic-bezier(0.34, 1.56, 0.64, 1) both
}

@keyframes shadow-build {
    from {
        box-shadow: 1px 0 0 0 #9b9d4e00
    }

    to {
        box-shadow: 1px 3px 6px 0 #9b9d4e12
    }
}

.abt-us .team-card:hover {
    box-shadow: 1px 12px 40px 0 #9b9d4e21;
    border-color: #9B9D4E;
    transform: translateY(-4px)
}

.abt-us .team-card .card-role {
    font-size: 15px;
    line-height: 1.75;
    color: #9B9D4E;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 8px
}

.abt-us .team-card .card-name {
    font-size: 23px;
    line-height: 1.1;
    color: #1e1e1e;
    margin-bottom: 16px;
    letter-spacing: -.01em
}

.abt-us .team-card .card-bio {
    font-size: 15px;
    line-height: 1.75;
    color: #3a3a3a
}

.abt-us .team-card .card-detail {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #9b9d4e26;
    font-size: 15px;
    line-height: 1.75;
    color: #9B9D4E
}

.abt-us .team-card.featured {
    background: #9B9D4E;
    border-top-color: #AEC89E !important
}

.abt-us .team-card.featured .card-role {
    color: #ffffffbf
}

.abt-us .team-card.featured .card-name {
    color: #fff
}

.abt-us .team-card.featured .card-bio {
    color: #ffffffe0
}

.abt-us .team-card.featured .card-detail {
    color: #F4F6EA;
    border-top-color: #fff3
}

.abt-us .team-card.featured:hover {
    border-color: #AEC89E
}

.abt-us .div-dots {
    height: 2px;
    background: linear-gradient(to left, #AEC89E, transparent);
    margin: 0
}

.abt-us .vals-blk {
    padding: 96px 0;
    background: #F4F6EA;
    position: relative
}

.abt-us .vals-blk .geo-bg:nth-child(1) {
    width: 360px;
    height: 360px;
    border: 1px solid #9b9d4e12;
    top: -80px;
    right: 80px
}

.abt-us .vals-layout {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 96px;
    align-items: start;
    position: relative;
    z-index: 1
}

.abt-us .vals-left {
    position: relative
}

.abt-us .vals-img-wrap {
    width: 380px;
    height: 440px;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 1px 12px 40px 0 #aec89e21
}

.abt-us .vals-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .32s cubic-bezier(0.68, -0.55, 0.27, 1.55)
}

.abt-us .vals-img-wrap:hover img {
    transform: scale(1.06)
}

.abt-us .vals-mini-card {
    position: absolute;
    bottom: -24px;
    right: -24px;
    background: #fff;
    border-radius: 14px;
    padding: 24px;
    box-shadow: 1px 4px 25px 0 #9b9d4e1c;
    width: 200px;
    border-left: 4px solid #AEC89E;
    border-bottom: 2px solid #aec89e4d;
    z-index: 2
}

.abt-us .vals-mini-card .mc-label {
    font-size: 15px;
    line-height: 1.75;
    color: #9B9D4E;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 8px
}

.abt-us .vals-mini-card .mc-text {
    font-size: 15px;
    line-height: 1.75;
    color: #2e2e2e
}

.abt-us .vals-right {
    padding-top: 8px
}

.abt-us .vals-h2 {
    font-size: 43px;
    line-height: 1.1;
    letter-spacing: -.02em;
    color: #1e1e1e;
    margin-bottom: 24px
}

.abt-us .vals-h2 .w-accent {
    color: #9B9D4E
}

.abt-us .vals-intro {
    font-size: 15px;
    line-height: 1.75;
    color: #2e2e2e;
    margin-bottom: 48px;
    text-indent: 1.5em
}

.abt-us .vals-items {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column
}

.abt-us .vals-items li {
    padding: 16px 0;
    border-bottom: 1px solid #9b9d4e2e;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    transition: background .22s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.abt-us .vals-items li:last-child {
    border-bottom: none
}

.abt-us .val-icon {
    flex: 0 0 32px;
    width: 32px;
    height: 32px;
    border-radius: 4px;
    background: #9b9d4e1f;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
    transition: background .25s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.abt-us .vals-items li:hover .val-icon {
    background: #9B9D4E
}

.abt-us .val-icon svg {
    width: 16px;
    height: 16px;
    stroke: #9B9D4E;
    fill: none;
    stroke-width: 2;
    transition: stroke .25s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.abt-us .vals-items li:hover .val-icon svg {
    stroke: #fff
}

.abt-us .val-txt {
    flex: 1
}

.abt-us .val-txt strong {
    display: block;
    font-size: 15px;
    line-height: 1.75;
    color: #1e1e1e
}

.abt-us .val-txt span {
    font-size: 15px;
    line-height: 1.75;
    color: #3a3a3a
}

@media (max-width: 1024px) {
    .abt-us .ttl-grid {
        flex-direction: column;
        gap: 48px
    }

    .abt-us .ttl-img-wrap {
        flex: 0 0 auto
    }

    .abt-us .ttl-img-frame {
        width: 100%;
        height: 320px
    }

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

    .abt-us .story-lead {
        grid-column: 1
    }

    .abt-us .story-aside {
        grid-column: 1;
        flex-direction: row;
        flex-wrap: wrap
    }

    .abt-us .story-img-wrap {
        flex-direction: column
    }

    .abt-us .story-img-frame {
        flex: 0 0 auto;
        width: 100%
    }

    .abt-us .vals-layout {
        grid-template-columns: 1fr;
        gap: 48px
    }

    .abt-us .vals-img-wrap {
        width: 100%;
        height: 280px
    }

    .abt-us .vals-mini-card {
        right: 16px;
        bottom: -16px
    }

    .abt-us .team-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px
    }

    .abt-us .team-desc {
        text-align: left
    }

    .abt-us .ttl-h1 {
        font-size: 43px
    }
}

@media (max-width: 640px) {
    .abt-us .pg-inner {
        padding: 0 16px
    }

    .abt-us .ttl-blk {
        padding: 48px 0
    }

    .abt-us .ttl-h1 {
        font-size: 31px
    }

    .abt-us .story-h2,
    .abt-us .team-h2,
    .abt-us .vals-h2 {
        font-size: 31px
    }

    .abt-us .story-blk,
    .abt-us .team-blk,
    .abt-us .vals-blk {
        padding: 48px 0
    }

    .abt-us .team-list {
        flex-direction: column
    }
}

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

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

.strt .ttl-blk {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    min-height: 92vh;
    background: #F4F6EA
}

.strt .ttl-txt {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 96px 48px 96px 96px;
    position: relative;
    z-index: 2
}

.strt .ttl-prefix {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px
}

.strt .ttl-prefix-shape {
    width: 32px;
    height: 3px;
    background: #9B9D4E;
    border-radius: 2px
}

.strt .ttl-prefix-label {
    font-size: 15px;
    color: #9B9D4E;
    letter-spacing: .08em;
    text-transform: uppercase
}

.strt .ttl-h1 {
    font-size: 72px;
    line-height: 1.1;
    letter-spacing: -.03em;
    color: #2a2a2a;
    margin: 0 0 48px
}

.strt .ttl-h1 .w1 {
    color: #9B9D4E
}

.strt .ttl-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: #2a2a2a;
    text-decoration: none;
    border-bottom: 1.5px solid #9B9D4E;
    padding-bottom: 4px;
    transition: color .25s cubic-bezier(0.34, 1.56, 0.64, 1), gap .28s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.strt .ttl-link:hover {
    color: #9B9D4E;
    gap: 16px
}

.strt .ttl-link svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0
}

.strt .ttl-img-zone {
    position: relative;
    overflow: hidden
}

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

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

.strt .ttl-img-grad {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 55%;
    background: linear-gradient(to top, #9b9d4e8c, transparent);
    pointer-events: none
}

.strt .ttl-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    z-index: 3;
    pointer-events: none
}

.strt .ttl-wave svg {
    display: block;
    width: 100%
}

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

.strt .field-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 48px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 48px;
    align-items: start
}

.strt .field-lead {
    grid-column: 1 / 2
}

.strt .field-lead-h2 {
    font-size: 43px;
    line-height: 1.1;
    letter-spacing: -.02em;
    color: #2a2a2a;
    margin: 0 0 24px
}

.strt .field-lead-h2 .w1 {
    color: #9B9D4E
}

.strt .field-lead p {
    font-size: 15px;
    line-height: 1.75;
    color: #3d3d3d;
    margin: 0;
    text-indent: 1.5em
}

.strt .field-cards {
    grid-column: 2 / 4;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px
}

.strt .fcard {
    border: 1.5px solid #e8ead8;
    border-left: 4px solid #9B9D4E;
    border-radius: 14px;
    padding: 24px;
    background: #F4F6EA;
    transition: box-shadow .22s cubic-bezier(0.34, 1.56, 0.64, 1), transform .25s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 1px 3px 6px 0 #9b9d4e12
}

.strt .fcard:hover {
    transform: translateY(-4px);
    box-shadow: 1px 12px 40px 0 #9b9d4e21
}

.strt .fcard-icon {
    width: 36px;
    height: 36px;
    margin-bottom: 16px;
    color: #9B9D4E
}

.strt .fcard h4 {
    font-size: 15px;
    line-height: 1.1;
    color: #2a2a2a;
    margin: 0 0 8px;
    letter-spacing: -.01em
}

.strt .fcard h4 .w1 {
    color: #9B9D4E
}

.strt .fcard p {
    font-size: 15px;
    line-height: 1.75;
    color: #555;
    margin: 0
}

.strt .field-img-row {
    max-width: 1400px;
    margin: 48px auto 0;
    padding: 0 48px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px
}

.strt .field-img-wrap {
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    box-shadow: 1px 4px 25px 0 #9b9d4e1c
}

.strt .field-img-wrap img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    transition: transform .3s cubic-bezier(0.34, 1.56, 0.64, 1), brightness .28s cubic-bezier(0.68, -0.55, 0.27, 1.55)
}

.strt .field-img-wrap:hover img {
    transform: scale(1.05);
    filter: brightness(1.06)
}

.strt .field-stat-box {
    border-radius: 14px;
    background: linear-gradient(to left, #AEC89E, transparent), #9B9D4E;
    padding: 48px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px
}

.strt .field-stat {
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-bottom: 1px solid #fff3;
    padding-bottom: 16px
}

.strt .field-stat:last-child {
    border-bottom: none;
    padding-bottom: 0
}

.strt .field-stat-num {
    font-size: 43px;
    line-height: 1.1;
    color: #fff;
    letter-spacing: -.03em
}

.strt .field-stat-lbl {
    font-size: 15px;
    color: #ffffffd1;
    line-height: 1.75
}

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

.strt .supp-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 48px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 96px;
    align-items: center
}

.strt .supp-imgs {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px
}

.strt .supp-img-main {
    grid-column: 1 / 3;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 1px 4px 25px 0 #aec89e1c
}

.strt .supp-img-main img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    transition: transform .32s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.strt .supp-img-main:hover img {
    transform: scale(1.04)
}

.strt .supp-img-sm {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 1px 3px 6px 0 #aec89e12
}

.strt .supp-img-sm img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
    transition: transform .28s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.strt .supp-img-sm:hover img {
    transform: scale(1.05)
}

.strt .supp-deco {
    position: absolute;
    top: -16px;
    right: -16px;
    width: 80px;
    height: 80px;
    border: 2px solid #AEC89E;
    border-radius: 22px;
    pointer-events: none
}

.strt .supp-txt h2 {
    font-size: 43px;
    line-height: 1.1;
    letter-spacing: -.02em;
    color: #2a2a2a;
    margin: 0 0 24px
}

.strt .supp-txt h2 .w1 {
    color: #9B9D4E
}

.strt .supp-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px
}

.strt .supp-list li {
    font-size: 15px;
    line-height: 1.75;
    color: #3d3d3d;
    padding: 16px 0;
    border-bottom: 1px solid #d4d8b8;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px
}

.strt .supp-list li:first-child {
    border-top: 1px solid #d4d8b8
}

.strt .supp-list-icon {
    width: 20px;
    height: 20px;
    color: #9B9D4E;
    flex-shrink: 0;
    margin-top: 2px
}

.strt .supp-note {
    font-size: 15px;
    line-height: 1.75;
    color: #555;
    margin: 0;
    text-indent: 1.5em
}

.strt .rep-sec {
    background: #2a2a2a;
    padding: 96px 0;
    position: relative
}

.strt .rep-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 48px
}

.strt .rep-top {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 96px;
    align-items: start;
    margin-bottom: 48px
}

.strt .rep-lbl {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px
}

.strt .rep-lbl-line {
    width: 28px;
    height: 2px;
    background: #AEC89E;
    border-radius: 2px
}

.strt .rep-lbl-text {
    font-size: 15px;
    color: #AEC89E;
    letter-spacing: .08em;
    text-transform: uppercase
}

.strt .rep-h2 {
    font-size: 43px;
    line-height: 1.1;
    letter-spacing: -.02em;
    color: #fff;
    margin: 0
}

.strt .rep-h2 .w1 {
    color: #AEC89E
}

.strt .rep-body p {
    font-size: 15px;
    line-height: 1.75;
    color: #ffffffb8;
    margin: 0;
    text-indent: 1.5em
}

.strt .rep-body p+p {
    margin-top: 0
}

.strt .rep-refs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px
}

.strt .rref {
    border: 1px solid #aec89e2e;
    border-top: 3px solid #AEC89E;
    border-radius: 14px;
    padding: 24px;
    background: #ffffff0a;
    box-shadow: 1px 3px 6px 0 #aec89e12;
    transition: box-shadow .24s cubic-bezier(0.34, 1.56, 0.64, 1), transform .26s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.strt .rref:hover {
    transform: translateY(-5px);
    box-shadow: 1px 12px 40px 0 #aec89e21
}

.strt .rref-quote {
    font-size: 23px;
    line-height: 1.1;
    color: #AEC89E;
    margin-bottom: 16px;
    display: block
}

.strt .rref p {
    font-size: 15px;
    line-height: 1.75;
    color: #ffffffb3;
    margin: 0 0 16px
}

.strt .rref-name {
    font-size: 15px;
    color: #AEC89E;
    font-style: normal
}

.strt .rref-role {
    font-size: 15px;
    color: #ffffff73;
    display: block
}

.strt .rep-img-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px
}

.strt .rep-img-wrap {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 1px 4px 25px 0 #aec89e1c
}

.strt .rep-img-wrap img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform .3s cubic-bezier(0.34, 1.56, 0.64, 1), filter .28s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    filter: brightness(0.88) saturate(0.9)
}

.strt .rep-img-wrap:hover img {
    transform: scale(1.06);
    filter: brightness(1.05) saturate(1.1)
}

.strt .rep-rating {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
    margin-top: 48px;
    padding-top: 48px;
    border-top: 1px solid #aec89e2e
}

.strt .rep-rating-num {
    font-size: 60px;
    line-height: 1.1;
    color: #AEC89E;
    letter-spacing: -.04em
}

.strt .rep-rating-detail {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.strt .rep-stars {
    display: flex;
    flex-direction: row;
    gap: 4px
}

.strt .rep-star {
    width: 18px;
    height: 18px;
    color: #AEC89E
}

.strt .rep-rating-label {
    font-size: 15px;
    color: #ffffff8c;
    line-height: 1.75
}

@keyframes strt-emerge {
    from {
        opacity: 0;
        transform: translateY(18px)
    }

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

.strt .ttl-txt {
    animation: strt-emerge .32s cubic-bezier(0.34, 1.56, 0.64, 1) both
}

.strt .fcard {
    animation: strt-emerge .28s cubic-bezier(0.34, 1.56, 0.64, 1) both
}

.strt .rref {
    animation: strt-emerge .3s cubic-bezier(0.34, 1.56, 0.64, 1) both
}

@media (max-width: 1100px) {
    .strt .ttl-blk {
        grid-template-columns: 1fr 1fr
    }

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

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

    .strt .field-lead {
        grid-column: auto
    }

    .strt .field-cards {
        grid-column: auto
    }

    .strt .rep-refs {
        grid-template-columns: 1fr 1fr
    }

    .strt .rep-img-row {
        grid-template-columns: 1fr 1fr
    }
}

@media (max-width: 800px) {
    .strt .ttl-blk {
        grid-template-columns: 1fr
    }

    .strt .ttl-img-zone {
        height: 320px
    }

    .strt .ttl-txt {
        padding: 48px 24px
    }

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

    .strt .field-inner,
    .strt .field-img-row,
    .strt .supp-inner,
    .strt .rep-top {
        padding: 0 24px;
        gap: 24px
    }

    .strt .field-cards {
        grid-template-columns: 1fr
    }

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

    .strt .rep-top {
        grid-template-columns: 1fr
    }

    .strt .rep-refs {
        grid-template-columns: 1fr
    }

    .strt .rep-img-row {
        grid-template-columns: 1fr
    }

    .strt .field-img-row {
        grid-template-columns: 1fr
    }

    .strt .rep-inner {
        padding: 0 24px
    }

    .strt .pg-wrap {
        padding: 0 24px
    }

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

    .strt .supp-sec,
    .strt .rep-sec {
        padding: 48px 0
    }
}

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

.success-pg .success-wrap {
    max-width: 1400px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px
}

.success-pg .check-mark {
    width: 72px;
    height: 72px;
    border-radius: 22px;
    background: #F4F6EA;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 1px 4px 25px 0 #9b9d4e1c;
    flex-shrink: 0
}

.success-pg .check-mark svg {
    display: block
}

.success-pg .success-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
    max-width: 560px
}

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

.success-pg .success-heading span {
    color: #9B9D4E
}

.success-pg .success-note {
    font-size: 15px;
    line-height: 1.75;
    color: #4a4a3a;
    margin: 0
}

.success-pg .success-divider {
    width: 48px;
    height: 2px;
    background: linear-gradient(to left, #AEC89E, transparent);
    border-radius: 2px
}

.success-pg .success-actions {
    display: flex;
    flex-direction: row;
    gap: 24px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center
}

.success-pg .action-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    line-height: 1.1;
    color: #fff;
    background: #9B9D4E;
    border: none;
    border-radius: 4px;
    padding: 16px 24px;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 1px 3px 6px 0 #9b9d4e12;
    transition: background .25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow .28s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.success-pg .action-primary:hover {
    background: #7e8040;
    box-shadow: 1px 4px 25px 0 #9b9d4e1c
}

.success-pg .action-primary:focus-visible {
    outline: 2px solid #9B9D4E;
    outline-offset: 3px
}

.success-pg .action-primary svg {
    transition: transform .22s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.success-pg .action-primary:hover svg {
    transform: translateX(4px)
}

.success-pg .action-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    line-height: 1.1;
    color: #9B9D4E;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    text-decoration: none;
    border-bottom: 1px solid #AEC89E;
    padding-bottom: 2px;
    transition: color .2s cubic-bezier(0.68, -0.55, 0.27, 1.55), border-color .2s cubic-bezier(0.68, -0.55, 0.27, 1.55)
}

.success-pg .action-secondary:hover {
    color: #7e8040;
    border-color: #9B9D4E
}

.success-pg .action-secondary:focus-visible {
    outline: 2px solid #9B9D4E;
    outline-offset: 3px;
    border-radius: 2px
}

.success-pg .ref-note {
    font-size: 15px;
    line-height: 1.75;
    color: #7a7a6a;
    text-align: center;
    max-width: 400px;
    margin: 0
}

.success-pg .ref-note a {
    color: #9B9D4E;
    text-decoration: none;
    border-bottom: 1px solid #AEC89E;
    transition: color .2s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.success-pg .ref-note a:hover {
    color: #7e8040
}