* {
    box-sizing: border-box
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: "DM Sans", sans-serif
}

.hd {
    background: #fff;
    border-bottom: 1px solid #6081ff26;
    box-shadow: 2px 3px 5px -2px #6081ff12;
    position: relative
}

.hd-top {
    background: linear-gradient(135deg, #272727 0%, #3a3a3a 100%);
    padding: 24px 32px
}

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

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

.logo-ring {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 0 0 2px #6081ff66 2px 6px 20px -2px #6081ff1a;
    flex-shrink: 0
}

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

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

.brand-name {
    font-family: "Work Sans", sans-serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: .02em;
    background: linear-gradient(90deg, #fff 0%, #a8b8ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.brand-tagline {
    font-size: 13px;
    font-weight: 400;
    line-height: 1.75;
    color: #fff9;
    letter-spacing: .04em;
    text-transform: uppercase
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border: 1px solid #6081ff66;
    border-radius: 28px;
    background: #6081ff14
}

.trust-badge-ico {
    width: 20px;
    height: 20px;
    flex-shrink: 0
}

.trust-badge-txt {
    font-size: 13px;
    font-weight: 500;
    line-height: 1.1;
    color: #a8b8ff;
    white-space: nowrap
}

.hd-nav-bar {
    background: #F6F6F6;
    border-top: 1px solid #6081ff1a
}

.hd-nav-inner {
    max-width: 1366px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap
}

.nav-lnk {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 24px;
    font-family: "Work Sans", sans-serif;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.1;
    color: #272727;
    text-decoration: none;
    border-radius: 0;
    border-bottom: 2px solid transparent;
    transition: color .12s ease-out, border-color .5s ease-out;
    white-space: nowrap;
    min-height: 44px;
    letter-spacing: .01em
}

.nav-lnk:hover {
    color: #6081FF;
    border-bottom-color: #6081FF
}

.nav-lnk:focus {
    background: #6081ff14;
    outline: none;
    color: #6081FF
}

.nav-lnk svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0
}

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

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

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

    .nav-lnk {
        padding: 16px
    }
}

@media (max-width: 640px) {
    .hd-top-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px
    }

    .trust-badge {
        align-self: flex-start
    }

    .hd-nav-inner {
        justify-content: flex-start;
        padding: 0 8px
    }

    .nav-lnk {
        padding: 16px 8px;
        font-size: 13px
    }
}

.ft {
    background: #272727;
    color: #fff
}

.ft-upper {
    padding: 64px 32px 32px;
    border-bottom: 1px solid #ffffff1a
}

.ft-upper-inner {
    max-width: 1366px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
    align-items: start
}

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

.ft-logo-ring {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 0 0 2px #6081ff80 2px 6px 20px -2px #6081ff1a;
    flex-shrink: 0
}

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

.ft-brand-name {
    font-family: "Work Sans", sans-serif;
    font-size: 21px;
    font-weight: 700;
    line-height: 1.1;
    color: #fff
}

.ft-brand-desc {
    font-size: 13px;
    font-weight: 400;
    line-height: 1.75;
    color: #ffffff8c
}

.ft-col-label {
    font-family: "Work Sans", sans-serif;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.1;
    color: #6081FF;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 16px
}

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

.ft-links li a {
    font-size: 13px;
    font-weight: 400;
    line-height: 1.75;
    color: #ffffffa6;
    text-decoration: none;
    transition: color .45s ease-out;
    display: inline-flex;
    align-items: center;
    gap: 8px
}

.ft-links li a:hover {
    color: #fff
}

.ft-links li a:focus {
    background: #6081ff1f;
    color: #fff;
    outline: none;
    border-radius: 6px
}

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

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

.ft-contact-list li span.lbl {
    font-size: 13px;
    font-weight: 500;
    line-height: 1.75;
    color: #ffffff73;
    flex-shrink: 0;
    min-width: 24px
}

.ft-contact-list li a,
.ft-contact-list li p {
    font-size: 13px;
    font-weight: 400;
    line-height: 1.75;
    color: #ffffffa6;
    text-decoration: none;
    margin: 0;
    transition: color .45s ease-out
}

.ft-contact-list li a:hover {
    color: #fff
}

.ft-contact-list li a:focus {
    background: #6081ff1f;
    color: #fff;
    outline: none;
    border-radius: 6px
}

.ft-lower {
    padding: 24px 32px;
    background: #1b1b1b
}

.ft-lower-inner {
    max-width: 1366px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap
}

.ft-copy {
    font-size: 13px;
    font-weight: 400;
    line-height: 1.75;
    color: #fff6
}

.ft-legal-links {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap
}

.ft-legal-links a {
    font-size: 13px;
    font-weight: 400;
    line-height: 1.75;
    color: #fff6;
    text-decoration: none;
    transition: color .45s ease-out
}

.ft-legal-links a:hover {
    color: #fffc
}

.ft-legal-links a:focus {
    background: #6081ff1f;
    color: #fff;
    outline: none;
    border-radius: 6px
}

.ft-sep {
    width: 1px;
    height: 12px;
    background: #ffffff26;
    display: inline-block
}

@media (max-width: 1024px) {
    .ft-upper-inner {
        grid-template-columns: 1fr 1fr
    }

    .ft-brand {
        grid-column: 1 / -1
    }
}

@media (max-width: 640px) {
    .ft-upper {
        padding: 32px 16px 24px
    }

    .ft-upper-inner {
        grid-template-columns: 1fr
    }

    .ft-brand {
        grid-column: auto
    }

    .ft-lower {
        padding: 16px
    }

    .ft-lower-inner {
        flex-direction: column;
        align-items: flex-start
    }
}

.legal-data-hgvl {
    max-width: 1366px;
    margin: 0 auto;
    padding: 64px 32px;
    color: #272727
}

.legal-data-hgvl p {
    font-size: 13px;
    line-height: 1.75;
    margin-bottom: 16px
}

.legal-data-hgvl strong,
.legal-data-hgvl b {
    font-weight: 700;
    color: #272727
}

.legal-data-hgvl em,
.legal-data-hgvl i {
    font-style: italic;
    color: #272727
}

.legal-data-hgvl div {
    margin-bottom: 24px
}

.legal-data-hgvl table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
    line-height: 1.75;
    margin-bottom: 32px;
    box-shadow: 2px 3px 5px -2px #6081ff12;
    border-radius: 10px;
    overflow: hidden
}

.legal-data-hgvl thead {
    background: #6081FF;
    color: #F6F6F6
}

.legal-data-hgvl thead th {
    padding: 16px;
    font-size: 13px;
    font-weight: 700;
    text-align: left;
    letter-spacing: .04em;
    text-transform: uppercase;
    border: none
}

.legal-data-hgvl tbody tr {
    border-bottom: 1px solid #F6F6F6;
    transition: background .12s ease-out
}

.legal-data-hgvl tbody tr:last-child {
    border-bottom: none
}

.legal-data-hgvl tbody tr:hover {
    background: #F6F6F6
}

.legal-data-hgvl td {
    padding: 16px;
    font-size: 13px;
    line-height: 1.75;
    color: #272727;
    vertical-align: top;
    border: none
}

@media (max-width: 640px) {
    .legal-data-hgvl {
        padding: 32px 16px
    }

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

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

.lrn-prog .pg-wrap {
    max-width: 1366px;
    margin: 0 auto;
    padding: 0 32px
}

@media (max-width: 640px) {
    .lrn-prog .pg-wrap {
        padding: 0 16px
    }
}

.lrn-prog .top-blk {
    padding: 96px 0 64px;
    position: relative;
    background: #F6F6F6;
    overflow: hidden
}

.lrn-prog .top-blk .deco-shape {
    position: absolute;
    top: 32px;
    right: 64px;
    width: 180px;
    height: 180px;
    pointer-events: none
}

.lrn-prog .top-blk .deco-strokes {
    position: absolute;
    bottom: 32px;
    left: 32px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    pointer-events: none
}

.lrn-prog .top-blk .stroke-line {
    height: 2px;
    background: #6081FF;
    opacity: .35
}

.lrn-prog .top-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: end
}

@media (max-width: 1024px) {
    .lrn-prog .top-inner {
        grid-template-columns: 1fr;
        gap: 32px
    }
}

.lrn-prog .top-text {
    padding-left: 32px
}

@media (max-width: 640px) {
    .lrn-prog .top-text {
        padding-left: 0
    }
}

.lrn-prog .top-label {
    font-size: 13px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #6081FF;
    margin-bottom: 24px;
    display: block
}

.lrn-prog .top-h1 {
    font-size: 66px;
    line-height: 1.1;
    color: #272727;
    margin-bottom: 32px
}

.lrn-prog .top-h1 .word-ul {
    display: inline-block;
    position: relative
}

.lrn-prog .top-h1 .word-ul::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 3px;
    background: linear-gradient(233deg, #272727, #6081FF);
    border-radius: 6px
}

@media (max-width: 1024px) {
    .lrn-prog .top-h1 {
        font-size: 38px
    }
}

@media (max-width: 640px) {
    .lrn-prog .top-h1 {
        font-size: 28px
    }
}

.lrn-prog .top-desc {
    font-size: 21px;
    line-height: 1.75;
    color: #272727;
    opacity: .8;
    max-width: 480px;
    margin-bottom: 32px
}

@media (max-width: 640px) {
    .lrn-prog .top-desc {
        font-size: 13px
    }
}

.lrn-prog .top-cta {
    display: inline-block;
    padding: 16px 32px;
    border: 2px solid #6081FF;
    color: #6081FF;
    font-size: 13px;
    letter-spacing: .08em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 6px;
    background: transparent;
    transition: background .45s ease-out, color .45s ease-out;
    cursor: pointer
}

.lrn-prog .top-cta:hover {
    background: #6081FF;
    color: #fff
}

.lrn-prog .top-img-wrap {
    position: relative;
    height: 520px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 2px 10px 52px -2px #6081ff1a
}

.lrn-prog .top-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center
}

.lrn-prog .top-img-wrap .img-grad {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 55%;
    background: linear-gradient(to top, #272727bf, transparent)
}

@media (max-width: 1024px) {
    .lrn-prog .top-img-wrap {
        height: 320px
    }
}

@keyframes slideLeft {
    from {
        opacity: 0;
        transform: translateX(-40px)
    }

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

@keyframes slideRight {
    from {
        opacity: 0;
        transform: translateX(40px)
    }

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

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px)
    }

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

.lrn-prog .top-text {
    animation: slideLeft .55s ease-out both
}

.lrn-prog .top-img-wrap {
    animation: slideRight .6s .12s ease-out both
}

@keyframes colorWash {
    0% {
        background-color: #F6F6F6
    }

    50% {
        background-color: #eef0ff
    }

    100% {
        background-color: #F6F6F6
    }
}

.lrn-prog .top-blk {
    animation: colorWash 8s ease-in-out infinite
}

.lrn-prog .div1 {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 32px;
    max-width: 1366px;
    margin: 0 auto
}

.lrn-prog .div1 .dl {
    height: 1px;
    background: #272727;
    opacity: .15;
    flex: 7
}

.lrn-prog .div1 .ds {
    height: 1px;
    background: #6081FF;
    opacity: .4;
    flex: 1
}

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

.lrn-prog .prog-inner {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 64px;
    align-items: start
}

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

.lrn-prog .prog-left {
    position: sticky;
    top: 32px
}

@media (max-width: 1024px) {
    .lrn-prog .prog-left {
        position: static
    }
}

.lrn-prog .prog-eyebrow {
    font-size: 13px;
    color: #6081FF;
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 16px;
    display: block
}

.lrn-prog .prog-h2 {
    font-size: 38px;
    line-height: 1.1;
    color: #272727;
    margin-bottom: 24px
}

@media (max-width: 640px) {
    .lrn-prog .prog-h2 {
        font-size: 28px
    }
}

.lrn-prog .prog-aside-wrap {
    display: flex;
    flex-direction: row;
    gap: 24px;
    margin-bottom: 32px
}

.lrn-prog .prog-main-txt {
    font-size: 13px;
    line-height: 1.75;
    color: #272727;
    flex: 3
}

.lrn-prog .prog-side-note {
    flex: 1;
    font-size: 13px;
    line-height: 1.75;
    color: #6081FF;
    border-top: 2px solid #6081FF;
    padding-top: 8px
}

.lrn-prog .stat-row {
    display: flex;
    flex-direction: row;
    gap: 24px;
    margin-top: 32px
}

.lrn-prog .stat-item {
    flex: 1;
    padding: 16px;
    border: 1px solid #6081ff33;
    border-radius: 10px;
    box-shadow: 2px 3px 5px -2px #6081ff12
}

.lrn-prog .stat-num {
    font-size: 38px;
    line-height: 1.1;
    color: #6081FF;
    display: block
}

.lrn-prog .stat-lbl {
    font-size: 13px;
    color: #272727;
    opacity: .7
}

@media (max-width: 640px) {
    .lrn-prog .stat-row {
        flex-direction: column;
        gap: 16px
    }

    .lrn-prog .prog-aside-wrap {
        flex-direction: column
    }
}

.lrn-prog .steps-list {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.lrn-prog .step-item {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 16px;
    align-items: start;
    padding: 24px;
    border-radius: 10px;
    background: #F6F6F6;
    transition: box-shadow .5s ease-out
}

.lrn-prog .step-item:hover {
    box-shadow: 2px 6px 20px -2px #6081ff1a
}

.lrn-prog .step-num {
    font-size: 38px;
    line-height: 1.1;
    color: #272727;
    opacity: .12;
    font-weight: 700;
    text-align: right;
    user-select: none
}

.lrn-prog .step-h4 {
    font-size: 21px;
    line-height: 1.1;
    color: #272727;
    margin-bottom: 8px
}

.lrn-prog .step-bracket {
    color: #6081FF;
    font-size: 13px;
    margin-bottom: 8px;
    display: block
}

.lrn-prog .step-txt {
    font-size: 13px;
    line-height: 1.75;
    color: #272727;
    opacity: .8
}

.lrn-prog .div2 {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 32px;
    max-width: 1366px;
    margin: 0 auto
}

.lrn-prog .div2 .ds2 {
    height: 1px;
    background: #6081FF;
    opacity: .4;
    flex: 1
}

.lrn-prog .div2 .dl2 {
    height: 1px;
    background: #272727;
    opacity: .12;
    flex: 8
}

.lrn-prog .team-blk {
    padding: 64px 0;
    background: #272727;
    position: relative
}

.lrn-prog .team-blk .bg-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: #272727;
    pointer-events: none
}

.lrn-prog .team-blk .bg-btm {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: #1e2440;
    pointer-events: none
}

.lrn-prog .team-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px
}

@media (max-width: 1024px) {
    .lrn-prog .team-inner {
        grid-template-columns: 1fr;
        gap: 32px
    }
}

.lrn-prog .team-label {
    font-size: 13px;
    color: #6081FF;
    text-transform: uppercase;
    letter-spacing: .1em;
    display: block;
    margin-bottom: 24px
}

.lrn-prog .team-h2 {
    font-size: 38px;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 32px
}

@media (max-width: 640px) {
    .lrn-prog .team-h2 {
        font-size: 28px
    }
}

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

@media (max-width: 640px) {
    .lrn-prog .portraits-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px
    }
}

.lrn-prog .port-card {
    position: relative
}

.lrn-prog .port-img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    object-position: top;
    display: block;
    border-radius: 0
}

.lrn-prog .port-name {
    font-size: 13px;
    color: #fff;
    margin-top: 8px;
    display: block
}

.lrn-prog .port-role {
    font-size: 13px;
    color: #6081FF;
    opacity: .85
}

.lrn-prog .port-no-img {
    aspect-ratio: 3/4;
    background: #6081ff1f;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center
}

.lrn-prog .port-no-img svg {
    opacity: .35
}

.lrn-prog .faq-col {
    position: relative
}

.lrn-prog .faq-circles {
    position: absolute;
    top: -32px;
    right: -32px;
    width: 260px;
    height: 260px;
    pointer-events: none;
    opacity: .06
}

.lrn-prog .faq-h3 {
    font-size: 28px;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 32px
}

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

.lrn-prog .faq-item {
    border-bottom: 1px solid #ffffff1a;
    padding-bottom: 16px
}

.lrn-prog .faq-q {
    font-size: 13px;
    color: #fff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    user-select: none;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    padding: 0
}

.lrn-prog .faq-q:focus {
    outline: 2px solid #6081FF;
    outline-offset: 2px;
    border-radius: 6px
}

.lrn-prog .faq-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center
}

.lrn-prog .faq-icon svg {
    transition: transform .45s ease-out
}

.lrn-prog .faq-item.open .faq-icon svg {
    transform: rotate(45deg)
}

.lrn-prog .faq-ans {
    font-size: 13px;
    line-height: 1.75;
    color: #fff;
    opacity: .7;
    max-height: 0;
    overflow: hidden;
    transition: max-height .5s ease-out, padding-top .4s ease-out;
    padding-top: 0
}

.lrn-prog .faq-item.open .faq-ans {
    max-height: 200px;
    padding-top: 8px
}

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

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

.prm .t-blk {
    position: relative;
    background: #272727;
    padding: 64px 0
}

.prm .t-blk .pg-wrap {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 64px;
    align-items: center
}

.prm .t-left {
    position: relative;
    z-index: 2
}

.prm .t-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px
}

.prm .t-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #6081FF;
    flex-shrink: 0
}

.prm .t-label {
    font-size: 13px;
    color: #6081FF;
    letter-spacing: .12em;
    text-transform: uppercase
}

.prm .t-h1 {
    font-size: 66px;
    line-height: 1.1;
    color: #F6F6F6;
    margin-bottom: 24px
}

.prm .t-h1 .acw {
    color: #6081FF
}

.prm .t-sub {
    font-size: 21px;
    line-height: 1.75;
    color: #F6F6F6;
    opacity: .72;
    max-width: 520px;
    margin-bottom: 32px
}

.prm .t-link {
    display: inline-block;
    font-size: 13px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #F6F6F6;
    border: 1px solid #6081ff80;
    padding: 16px 32px;
    border-radius: 6px;
    text-decoration: none;
    transition: border-color .45s ease-out, color .45s ease-out
}

.prm .t-link:hover {
    border-color: #6081FF;
    color: #6081FF
}

.prm .t-img-col {
    position: relative
}

.prm .t-img-wrap {
    width: 100%;
    aspect-ratio: 5/7;
    overflow: hidden;
    border-radius: 10px
}

.prm .t-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    opacity: .85;
    mask-image: linear-gradient(to top, transparent 0%, #0009 30%, #000 100%);
    -webkit-mask-image: linear-gradient(to top, transparent 0%, #0009 30%, #000 100%)
}

.prm .t-curves {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    border-radius: 10px
}

.prm .t-curves svg {
    position: absolute;
    top: -40px;
    left: -60px;
    width: 480px;
    opacity: .08
}

.prm .t-corner-tl {
    position: absolute;
    top: 16px;
    left: 16px;
    width: 32px;
    height: 32px;
    border-top: 1px solid #6081ff99;
    border-left: 1px solid #6081ff99;
    pointer-events: none
}

.prm .t-corner-br {
    position: absolute;
    bottom: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    border-bottom: 1px solid #6081ff99;
    border-right: 1px solid #6081ff99;
    pointer-events: none
}

.prm .exp-blk {
    background: #F6F6F6;
    padding: 64px 0
}

.prm .exp-blk .pg-wrap {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 64px;
    align-items: start
}

.prm .exp-aside {
    position: sticky;
    top: 32px
}

.prm .exp-label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: #6081FF;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px
}

.prm .exp-label .t-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #6081FF;
    flex-shrink: 0
}

.prm .exp-h2 {
    font-size: 38px;
    line-height: 1.1;
    color: #272727;
    margin-bottom: 24px
}

.prm .exp-note {
    font-size: 13px;
    line-height: 1.75;
    color: #272727;
    opacity: .55;
    border-top: 1px solid #27272726;
    padding-top: 16px
}

.prm .exp-stages {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.prm .exp-stage {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 16px;
    align-items: start;
    padding: 24px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 2px 3px 5px -2px #27272712;
    transition: box-shadow .5s ease-out, transform .5s ease-out;
    cursor: default
}

.prm .exp-stage:hover {
    box-shadow: 2px 6px 20px -2px #2727271a;
    transform: translateX(4px)
}

.prm .exp-num {
    font-size: 38px;
    line-height: 1.1;
    color: #6081FF;
    opacity: .22;
    font-weight: 700;
    text-align: right
}

.prm .exp-stage-h {
    font-size: 21px;
    line-height: 1.1;
    color: #272727;
    margin-bottom: 8px
}

.prm .exp-stage-p {
    font-size: 13px;
    line-height: 1.75;
    color: #272727;
    opacity: .65
}

.prm .exp-img-strip {
    margin-top: 32px;
    border-radius: 10px;
    overflow: hidden;
    height: 180px
}

.prm .exp-img-strip img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: .88;
    transition: opacity .5s ease-out
}

.prm .exp-img-strip:hover img {
    opacity: 1
}

.prm .dist-blk {
    background: #272727;
    padding: 64px 0;
    position: relative
}

.prm .dist-split {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: #1e1e2e;
    pointer-events: none
}

.prm .dist-blk .pg-wrap {
    position: relative;
    z-index: 2
}

.prm .dist-top {
    text-align: center;
    margin-bottom: 48px
}

.prm .dist-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #6081FF;
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 16px
}

.prm .dist-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #6081FF
}

.prm .dist-h2 {
    font-size: 38px;
    line-height: 1.1;
    color: #F6F6F6;
    max-width: 600px;
    margin: 0 auto 24px
}

.prm .dist-sub {
    font-size: 21px;
    line-height: 1.75;
    color: #F6F6F6;
    opacity: .6;
    max-width: 480px;
    margin: 0 auto
}

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

.prm .dist-card {
    background: #f6f6f60d;
    border: 1px solid #6081ff2e;
    border-radius: 16px;
    padding: 32px 24px;
    transition: background .55s ease-out, border-color .55s ease-out;
    position: relative;
    overflow: hidden
}

.prm .dist-card:hover {
    background: #6081ff14;
    border-color: #6081ff73
}

.prm .dist-card-num {
    font-size: 66px;
    line-height: 1.1;
    color: #6081FF;
    opacity: .12;
    position: absolute;
    top: 8px;
    right: 16px;
    font-weight: 700;
    pointer-events: none
}

.prm .dist-card-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 16px
}

.prm .dist-card-icon svg {
    width: 100%;
    height: 100%
}

.prm .dist-card-h {
    font-size: 21px;
    line-height: 1.1;
    color: #F6F6F6;
    margin-bottom: 8px
}

.prm .dist-card-p {
    font-size: 13px;
    line-height: 1.75;
    color: #F6F6F6;
    opacity: .6
}

.prm .dist-img-row {
    margin-top: 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    align-items: center
}

.prm .dist-img-frame {
    border-radius: 16px;
    overflow: hidden;
    height: 240px
}

.prm .dist-img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .75;
    transition: opacity .55s ease-out
}

.prm .dist-img-frame:hover img {
    opacity: .9
}

.prm .dist-quote {
    padding: 32px;
    border-radius: 16px;
    background: #6081ff17;
    border: 1px solid #6081ff40
}

.prm .dist-quote-text {
    font-size: 21px;
    line-height: 1.75;
    color: #F6F6F6;
    margin-bottom: 24px
}

.prm .dist-quote-who {
    display: flex;
    align-items: center;
    gap: 16px
}

.prm .dist-portrait {
    width: 56px;
    height: 80px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0
}

.prm .dist-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top
}

.prm .dist-who-name {
    font-size: 13px;
    color: #F6F6F6;
    letter-spacing: .05em;
    text-transform: uppercase
}

.prm .dist-who-role {
    font-size: 13px;
    color: #F6F6F6;
    opacity: .5;
    margin-top: 4px
}

.prm .grad-blk {
    background: #fff;
    padding: 64px 0
}

.prm .grad-blk .pg-wrap {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 64px;
    align-items: start
}

.prm .grad-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #6081FF;
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 16px
}

.prm .grad-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #6081FF
}

.prm .grad-h2 {
    font-size: 38px;
    line-height: 1.1;
    color: #272727;
    margin-bottom: 24px
}

.prm .grad-p {
    font-size: 21px;
    line-height: 1.75;
    color: #272727;
    opacity: .7;
    margin-bottom: 32px;
    max-width: 480px
}

.prm .grad-items {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.prm .grad-item {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 16px;
    align-items: start;
    padding: 24px;
    border-radius: 10px;
    border: 1px solid #2727271a;
    transition: border-color .48s ease-out
}

.prm .grad-item:hover {
    border-color: #6081ff73
}

.prm .grad-item-num {
    font-size: 28px;
    line-height: 1.1;
    color: #6081FF;
    opacity: .3;
    font-weight: 700;
    text-align: center
}

.prm .grad-item-h {
    font-size: 21px;
    line-height: 1.1;
    color: #272727;
    margin-bottom: 8px
}

.prm .grad-item-p {
    font-size: 13px;
    line-height: 1.75;
    color: #272727;
    opacity: .6
}

.prm .grad-stat-box {
    background: linear-gradient(233deg, #272727 0%, #6081FF 100%);
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 16px;
    box-shadow: 2px 10px 52px -2px #6081ff1a
}

.prm .grad-stat-num {
    font-size: 66px;
    line-height: 1.1;
    color: #F6F6F6;
    margin-bottom: 8px
}

.prm .grad-stat-label {
    font-size: 13px;
    line-height: 1.75;
    color: #F6F6F6;
    opacity: .75;
    text-transform: uppercase;
    letter-spacing: .08em
}

.prm .grad-img-box {
    border-radius: 16px;
    overflow: hidden;
    height: 220px
}

.prm .grad-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .88
}

.prm .grad-link {
    display: inline-block;
    margin-top: 32px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #272727;
    border: 1px solid #27272759;
    padding: 16px 32px;
    border-radius: 6px;
    text-decoration: none;
    transition: border-color .45s ease-out, color .48s ease-out
}

.prm .grad-link:hover {
    border-color: #6081FF;
    color: #6081FF
}

.prm .fade-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #6081ff59 50%, transparent 100%);
    margin: 0
}

@keyframes cardflip {
    0% {
        opacity: 0;
        transform: rotateY(90deg)
    }

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

.prm .exp-stage {
    animation: cardflip .55s ease-out both
}

.prm .exp-stage:nth-child(1) {
    animation-delay: .05s
}

.prm .exp-stage:nth-child(2) {
    animation-delay: .18s
}

.prm .exp-stage:nth-child(3) {
    animation-delay: .31s
}

.prm .exp-stage:nth-child(4) {
    animation-delay: .44s
}

.prm .dist-card {
    animation: cardflip .55s ease-out both
}

.prm .dist-card:nth-child(1) {
    animation-delay: .06s
}

.prm .dist-card:nth-child(2) {
    animation-delay: .2s
}

.prm .dist-card:nth-child(3) {
    animation-delay: .34s
}

@media (max-width: 1024px) {
    .prm .t-blk .pg-wrap {
        grid-template-columns: 1fr 240px;
        gap: 32px
    }

    .prm .t-h1 {
        font-size: 38px
    }

    .prm .exp-blk .pg-wrap {
        grid-template-columns: 1fr;
        gap: 32px
    }

    .prm .exp-aside {
        position: static
    }

    .prm .dist-grid {
        grid-template-columns: 1fr 1fr
    }

    .prm .dist-img-row {
        grid-template-columns: 1fr
    }

    .prm .grad-blk .pg-wrap {
        grid-template-columns: 1fr;
        gap: 32px
    }

    .prm .grad-stat-box {
        padding: 24px
    }
}

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

    .prm .t-blk .pg-wrap {
        grid-template-columns: 1fr;
        gap: 32px
    }

    .prm .t-img-col {
        display: none
    }

    .prm .t-h1 {
        font-size: 38px
    }

    .prm .t-sub {
        font-size: 21px
    }

    .prm .exp-h2 {
        font-size: 28px
    }

    .prm .dist-grid {
        grid-template-columns: 1fr
    }

    .prm .dist-h2 {
        font-size: 28px
    }

    .prm .grad-h2 {
        font-size: 28px
    }

    .prm .grad-stat-num {
        font-size: 38px
    }

    .prm .exp-blk {
        padding: 32px 0
    }

    .prm .dist-blk {
        padding: 32px 0
    }

    .prm .grad-blk {
        padding: 32px 0
    }

    .prm .t-blk {
        padding: 32px 0
    }
}

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

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

.cont-pg .split-row {
    display: flex;
    flex-direction: row;
    min-height: 600px
}

.cont-pg .split-left {
    flex: 0 0 45%;
    background: linear-gradient(233deg, #6081FF 0%, #F6F6F6 100%);
    padding: 64px 48px 64px 64px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between
}

.cont-pg .split-left::after {
    content: '';
    position: absolute;
    right: -32px;
    top: 0;
    width: 64px;
    height: 100%;
    background: linear-gradient(233deg, #6081FF 0%, #F6F6F6 100%);
    clip-path: polygon(0 0, 0% 100%, 100% 100%);
    z-index: 2
}

.cont-pg .geo-corner-tl {
    position: absolute;
    top: 24px;
    left: 24px;
    width: 40px;
    height: 40px;
    border-top: 2px solid #272727;
    border-left: 2px solid #272727;
    border-radius: 6px 0 0 0
}

.cont-pg .geo-corner-br {
    position: absolute;
    bottom: 24px;
    right: 48px;
    width: 40px;
    height: 40px;
    border-bottom: 2px solid #272727;
    border-right: 2px solid #272727;
    border-radius: 0 0 6px 0
}

.cont-pg .lft-tag {
    font-size: 13px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #272727;
    opacity: .6;
    margin-bottom: 24px
}

.cont-pg .lft-head {
    font-size: 66px;
    line-height: 1.1;
    color: #272727;
    font-weight: 800;
    margin: 0 0 32px
}

.cont-pg .lft-desc {
    font-size: 21px;
    line-height: 1.75;
    color: #272727;
    opacity: .8;
    max-width: 340px;
    margin-bottom: 32px
}

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

.cont-pg .ci-row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px
}

.cont-pg .ci-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: #272727;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.cont-pg .ci-icon svg {
    width: 18px;
    height: 18px;
    fill: #F6F6F6
}

.cont-pg .ci-txt {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.cont-pg .ci-label {
    font-size: 13px;
    color: #272727;
    opacity: .55;
    letter-spacing: .08em;
    text-transform: uppercase
}

.cont-pg .ci-val {
    font-size: 13px;
    color: #272727;
    font-weight: 600;
    line-height: 1.75;
    text-decoration: none;
    transition: color .12s ease-out
}

.cont-pg .ci-val:hover {
    color: #6081FF
}

.cont-pg .ci-sep {
    width: 100%;
    height: 1px;
    background: #272727;
    opacity: .15;
    margin: 4px 0
}

.cont-pg .split-right {
    flex: 1;
    background: #F6F6F6;
    padding: 64px 64px 64px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1
}

.cont-pg .form-tag {
    font-size: 13px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #6081FF;
    margin-bottom: 16px
}

.cont-pg .form-head {
    font-size: 38px;
    line-height: 1.1;
    color: #272727;
    font-weight: 700;
    margin: 0 0 8px
}

.cont-pg .form-sub {
    font-size: 13px;
    color: #272727;
    opacity: .6;
    line-height: 1.75;
    margin-bottom: 32px
}

.cont-pg .frm {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.cont-pg .fld-row {
    display: flex;
    flex-direction: row;
    gap: 16px
}

.cont-pg .fld-grp {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1
}

.cont-pg .fld-lbl {
    font-size: 13px;
    color: #272727;
    font-weight: 600;
    letter-spacing: .04em
}

.cont-pg .fld-inp {
    background: #fff;
    border: 2px solid transparent;
    border-radius: 10px;
    padding: 16px;
    font-size: 13px;
    color: #272727;
    outline: none;
    transition: border-color .1s ease-out, box-shadow .1s ease-out;
    box-shadow: 2px 3px 5px -2px #6081ff12;
    width: 100%
}

.cont-pg .fld-inp::placeholder {
    color: #27272766
}

.cont-pg .fld-inp:focus {
    border-color: #6081FF;
    box-shadow: 2px 6px 20px -2px #6081ff1a
}

.cont-pg .fld-sel {
    background: #fff;
    border: 2px solid transparent;
    border-radius: 10px;
    padding: 16px;
    font-size: 13px;
    color: #272727;
    outline: none;
    transition: border-color .1s ease-out;
    box-shadow: 2px 3px 5px -2px #6081ff12;
    width: 100%;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23272727' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    cursor: pointer
}

.cont-pg .fld-sel:focus {
    border-color: #6081FF
}

.cont-pg .fld-sel option {
    color: #272727;
    background: #fff
}

.cont-pg .privacy-row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: #fff;
    border-radius: 10px;
    border: 2px solid transparent;
    transition: border-color .13s ease-out
}

.cont-pg .privacy-row:focus-within {
    border-color: #6081FF
}

.cont-pg .prv-chk {
    width: 18px;
    height: 18px;
    accent-color: #6081FF;
    flex-shrink: 0;
    margin-top: 2px;
    cursor: pointer
}

.cont-pg .prv-txt {
    font-size: 13px;
    color: #272727;
    line-height: 1.75;
    opacity: .75
}

.cont-pg .prv-txt a {
    color: #6081FF;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: opacity .1s linear
}

.cont-pg .prv-txt a:hover {
    opacity: .7
}

.cont-pg .sub-btn {
    background: transparent;
    border: 2px solid #272727;
    border-radius: 28px;
    padding: 16px 32px;
    font-size: 13px;
    font-weight: 700;
    color: #272727;
    letter-spacing: .08em;
    text-transform: uppercase;
    cursor: pointer;
    align-self: flex-start;
    transition: background .5s ease-out, color .5s ease-out, border-color .5s ease-out, box-shadow .45s ease-out;
    position: relative;
    overflow: hidden
}

.cont-pg .sub-btn:hover {
    background: #272727;
    color: #F6F6F6;
    box-shadow: 2px 10px 52px -2px #2727271a
}

.cont-pg .sub-btn:focus {
    outline: 2px solid #6081FF;
    outline-offset: 3px
}

.cont-pg .sub-btn:active {
    background: #6081FF;
    border-color: #6081FF;
    color: #fff
}

.cont-pg .info-strip {
    background: #272727;
    padding: 64px 0;
    position: relative;
    overflow: hidden
}

.cont-pg .strip-geo {
    position: absolute;
    top: 0;
    right: 0;
    width: 320px;
    height: 100%;
    background: linear-gradient(233deg, #6081ff2e 0%, transparent 70%);
    pointer-events: none
}

.cont-pg .strip-motif {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 8px;
    display: flex;
    flex-direction: column;
    gap: 0;
    overflow: hidden
}

.cont-pg .motif-unit {
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    background: #6081FF;
    opacity: .35
}

.cont-pg .motif-unit.off {
    background: transparent
}

.cont-pg .strip-inner {
    max-width: 1366px;
    margin: 0 auto;
    padding: 0 64px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 64px
}

.cont-pg .strip-tagline {
    flex: 0 0 auto;
    max-width: 320px
}

.cont-pg .strip-head {
    font-size: 38px;
    line-height: 1.1;
    color: #F6F6F6;
    font-weight: 800;
    margin: 0 0 16px
}

.cont-pg .strip-desc {
    font-size: 13px;
    line-height: 1.75;
    color: #F6F6F6;
    opacity: .6
}

.cont-pg .strip-divider {
    width: 2px;
    height: 80px;
    background: #6081FF;
    flex-shrink: 0;
    border-radius: 6px
}

.cont-pg .strip-facts {
    flex: 1;
    display: flex;
    flex-direction: row;
    gap: 32px;
    flex-wrap: wrap
}

.cont-pg .fact-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
    min-width: 140px
}

.cont-pg .fact-num {
    font-size: 28px;
    line-height: 1.1;
    color: #6081FF;
    font-weight: 800
}

.cont-pg .fact-sep {
    width: 32px;
    height: 2px;
    background: #6081FF;
    border-radius: 6px;
    opacity: .5
}

.cont-pg .fact-lbl {
    font-size: 13px;
    color: #F6F6F6;
    opacity: .55;
    line-height: 1.75
}

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

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

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

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

.cont-pg .split-left {
    animation: slideInLeft .55s ease-out both
}

.cont-pg .split-right {
    animation: slideInRight .55s ease-out .12s both
}

.cont-pg .strip-tagline {
    animation: slideInLeft .5s ease-out .2s both
}

.cont-pg .strip-facts {
    animation: slideInRight .5s ease-out .32s both
}

.cont-pg .fld-grp .fld-lbl:hover~.fld-inp,
.cont-pg .form-head span {
    display: block
}

.cont-pg .ul-anim {
    display: inline-block;
    position: relative
}

.cont-pg .ul-anim::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: #6081FF;
    transition: width .45s ease-out
}

.cont-pg .split-left:hover .ul-anim::after {
    width: 100%
}

@media (max-width: 1024px) {
    .cont-pg .split-left {
        flex: 0 0 40%;
        padding: 48px 32px
    }

    .cont-pg .split-left::after {
        display: none
    }

    .cont-pg .split-right {
        padding: 48px 32px
    }

    .cont-pg .lft-head {
        font-size: 38px
    }

    .cont-pg .strip-inner {
        padding: 0 32px;
        flex-wrap: wrap;
        gap: 32px
    }

    .cont-pg .strip-divider {
        display: none
    }

    .cont-pg .fld-row {
        flex-direction: column
    }
}

@media (max-width: 640px) {
    .cont-pg .split-row {
        flex-direction: column
    }

    .cont-pg .split-left {
        flex: none;
        padding: 48px 24px
    }

    .cont-pg .split-right {
        padding: 48px 24px
    }

    .cont-pg .lft-head {
        font-size: 28px
    }

    .cont-pg .form-head {
        font-size: 28px
    }

    .cont-pg .strip-inner {
        flex-direction: column;
        padding: 0 24px;
        gap: 32px
    }

    .cont-pg .strip-facts {
        flex-direction: column;
        gap: 24px
    }

    .cont-pg .strip-head {
        font-size: 28px
    }

    .cont-pg .geo-corner-tl,
    .cont-pg .geo-corner-br {
        display: none
    }
}

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

.abt-us * {
    box-sizing: border-box;
    max-width: 100%
}

.abt-us img {
    max-width: 100%;
    object-fit: cover
}

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

@keyframes settlein {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(-16px)
    }

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

.abt-us .drop-in {
    animation: settlein .55s ease-out both
}

.abt-us .drop-in.d1 {
    animation-delay: .08s
}

.abt-us .drop-in.d2 {
    animation-delay: .18s
}

.abt-us .drop-in.d3 {
    animation-delay: .28s
}

.abt-us .drop-in.d4 {
    animation-delay: .38s
}

.abt-us .top-blk {
    background: #272727;
    position: relative;
    padding: 64px 0 0
}

.abt-us .top-blk::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url(./graphic_files/WORK-2024-010.jpg) center/cover no-repeat;
    opacity: .09;
    pointer-events: none
}

.abt-us .blob-a {
    position: absolute;
    width: 340px;
    height: 340px;
    background: #6081FF;
    border-radius: 44px;
    filter: blur(90px);
    opacity: .18;
    top: -60px;
    right: 80px;
    pointer-events: none;
    z-index: 0
}

.abt-us .blob-b {
    position: absolute;
    width: 200px;
    height: 200px;
    background: #6081FF;
    border-radius: 44px;
    filter: blur(60px);
    opacity: .12;
    bottom: 40px;
    left: 40px;
    pointer-events: none;
    z-index: 0
}

.abt-us .top-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: end
}

.abt-us .top-text {
    padding: 32px 0 0
}

.abt-us .top-eyebrow {
    display: inline-block;
    font-size: 13px;
    line-height: 1.75;
    color: #6081FF;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 16px;
    border: 1px solid #6081ff59;
    border-radius: 6px;
    padding: 4px 16px
}

.abt-us .top-h1 {
    font-size: 66px;
    line-height: 1.1;
    color: #F6F6F6;
    margin: 0 0 24px
}

.abt-us .top-h1 span {
    display: block
}

.abt-us .top-h1 .acc {
    background: linear-gradient(233deg, #F6F6F6 0%, #6081FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.abt-us .top-desc {
    font-size: 21px;
    line-height: 1.75;
    color: #f6f6f6b8;
    margin: 0 0 32px;
    max-width: 480px
}

.abt-us .top-stats {
    display: flex;
    flex-direction: row;
    gap: 32px;
    padding: 24px 0;
    border-top: 1px solid #f6f6f61f
}

.abt-us .stat-num {
    font-size: 38px;
    line-height: 1.1;
    color: #6081FF;
    display: block
}

.abt-us .stat-lbl {
    font-size: 13px;
    line-height: 1.75;
    color: #f6f6f680;
    text-transform: uppercase;
    letter-spacing: .08em
}

.abt-us .top-img-col {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end
}

.abt-us .top-img-wrap {
    position: relative;
    border-radius: 16px 16px 0 0;
    overflow: hidden;
    height: 420px
}

.abt-us .top-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block
}

.abt-us .top-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #272727 0%, transparent 55%);
    pointer-events: none
}

.abt-us .step-divider-1 {
    width: 100%;
    height: 32px;
    background: #272727;
    position: relative
}

.abt-us .step-divider-1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 32px;
    background: #F6F6F6;
    clip-path: polygon(0 32px, 60% 0, 100% 32px)
}

.abt-us .story-blk {
    background: #F6F6F6;
    padding: 64px 0
}

.abt-us .story-inner {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 64px;
    align-items: start
}

.abt-us .story-tag {
    font-size: 13px;
    line-height: 1.75;
    color: #272727;
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 16px;
    display: block
}

.abt-us .story-h2 {
    font-size: 38px;
    line-height: 1.1;
    color: #272727;
    margin: 0 0 32px
}

.abt-us .story-h2 span {
    display: block
}

.abt-us .story-paras {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.abt-us .story-p {
    font-size: 21px;
    line-height: 1.75;
    color: #272727;
    margin: 0
}

.abt-us .story-note {
    margin-top: 32px;
    padding: 24px;
    background: #272727;
    border-radius: 10px;
    box-shadow: 2px 6px 20px -2px #2727271a
}

.abt-us .story-note-txt {
    font-size: 13px;
    line-height: 1.75;
    color: #f6f6f6cc;
    margin: 0
}

.abt-us .story-note-txt .acc {
    color: #6081FF
}

.abt-us .story-aside {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-top: 8px
}

.abt-us .aside-img {
    width: 100%;
    height: 260px;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid #272727;
    box-shadow: 6px 8px 0 #6081FF
}

.abt-us .aside-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block
}

.abt-us .aside-vals {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.abt-us .val-row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px
}

.abt-us .val-num {
    font-size: 38px;
    line-height: 1.1;
    color: #6081ff2e;
    min-width: 44px;
    font-weight: 700;
    flex-shrink: 0
}

.abt-us .val-name {
    font-size: 13px;
    line-height: 1.75;
    color: #272727;
    text-transform: uppercase;
    letter-spacing: .08em;
    display: block
}

.abt-us .val-desc {
    font-size: 13px;
    line-height: 1.75;
    color: #272727a6;
    margin: 0
}

.abt-us .step-divider-2 {
    width: 100%;
    height: 32px;
    background: #F6F6F6;
    position: relative
}

.abt-us .step-divider-2::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40%;
    height: 32px;
    background: #272727;
    clip-path: polygon(100% 0, 0 32px, 100% 32px)
}

.abt-us .team-blk {
    background: #272727;
    padding: 64px 0;
    position: relative
}

.abt-us .team-blk::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url(./graphic_files/asset-2023-011.jpg) center/cover no-repeat;
    opacity: .05;
    pointer-events: none
}

.abt-us .team-inner {
    position: relative;
    z-index: 1
}

.abt-us .team-head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    margin-bottom: 48px;
    align-items: end
}

.abt-us .team-h2 {
    font-size: 38px;
    line-height: 1.1;
    color: #F6F6F6;
    margin: 0
}

.abt-us .team-h2 span {
    display: block
}

.abt-us .team-intro {
    font-size: 21px;
    line-height: 1.75;
    color: #f6f6f6a6;
    margin: 0
}

.abt-us .team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px
}

.abt-us .team-card {
    background: #f6f6f60d;
    border: 1px solid #f6f6f61a;
    border-radius: 16px;
    overflow: hidden;
    transition: border-color .45s ease-out, box-shadow .5s ease-out
}

.abt-us .team-card:hover {
    border-color: #6081ff80;
    box-shadow: 2px 10px 52px -2px #6081ff1a
}

.abt-us .card-portrait {
    width: 100%;
    aspect-ratio: 4/5;
    overflow: hidden
}

.abt-us .card-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block
}

.abt-us .card-no-img {
    width: 100%;
    aspect-ratio: 4/5;
    background: #6081ff14;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center
}

.abt-us .card-ini {
    font-size: 38px;
    line-height: 1.1;
    color: #6081ff66
}

.abt-us .card-info {
    padding: 16px
}

.abt-us .card-name {
    font-size: 21px;
    line-height: 1.1;
    color: #F6F6F6;
    margin: 0 0 8px
}

.abt-us .card-role {
    font-size: 13px;
    line-height: 1.75;
    color: #6081FF;
    text-transform: uppercase;
    letter-spacing: .08em;
    display: block;
    margin-bottom: 8px
}

.abt-us .card-bio {
    font-size: 13px;
    line-height: 1.75;
    color: #f6f6f68c;
    margin: 0
}

.abt-us .step-divider-3 {
    width: 100%;
    height: 32px;
    background: #272727;
    position: relative
}

.abt-us .step-divider-3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20%;
    right: 0;
    height: 32px;
    background: #F6F6F6;
    clip-path: polygon(0 32px, 30% 0, 100% 0, 100% 32px)
}

.abt-us .why-blk {
    background: #F6F6F6;
    padding: 64px 0
}

.abt-us .why-inner {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 64px;
    align-items: start
}

.abt-us .why-h2 {
    font-size: 38px;
    line-height: 1.1;
    color: #272727;
    margin: 0 0 24px
}

.abt-us .why-h2 span {
    display: block
}

.abt-us .why-sub {
    font-size: 21px;
    line-height: 1.75;
    color: #272727b8;
    margin: 0 0 32px
}

.abt-us .why-img {
    width: 100%;
    height: 280px;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid #6081FF;
    box-shadow: 8px 10px 0 #6081ff38 2px 6px 20px -2px #6081ff1a
}

.abt-us .why-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block
}

.abt-us .why-right {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.abt-us .why-item {
    border: 1px solid #2727271f;
    border-radius: 10px;
    padding: 24px;
    background: #fff;
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 16px;
    align-items: start;
    box-shadow: 2px 3px 5px -2px #27272712;
    transition: box-shadow .48s ease-out, border-color .42s ease-out
}

.abt-us .why-item:hover {
    box-shadow: 2px 6px 20px -2px #6081ff1a;
    border-color: #6081FF
}

.abt-us .why-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: linear-gradient(233deg, #272727 0%, #6081FF 100%);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.abt-us .why-icon svg {
    width: 22px;
    height: 22px;
    stroke: #F6F6F6;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round
}

.abt-us .why-ttl {
    font-size: 21px;
    line-height: 1.1;
    color: #272727;
    margin: 0 0 8px
}

.abt-us .why-txt {
    font-size: 13px;
    line-height: 1.75;
    color: #272727a6;
    margin: 0
}

@media (max-width: 1024px) {
    .abt-us .top-inner {
        grid-template-columns: 1fr;
        gap: 32px
    }

    .abt-us .top-img-wrap {
        height: 300px;
        border-radius: 16px
    }

    .abt-us .top-img-wrap::after {
        display: none
    }

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

    .abt-us .team-head {
        grid-template-columns: 1fr;
        gap: 16px
    }

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

    .abt-us .why-inner {
        grid-template-columns: 1fr;
        gap: 32px
    }
}

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

    .abt-us .top-h1 {
        font-size: 38px
    }

    .abt-us .top-stats {
        flex-direction: column;
        gap: 16px
    }

    .abt-us .team-grid {
        grid-template-columns: 1fr;
        gap: 16px
    }

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

    .abt-us .story-h2,
    .abt-us .team-h2,
    .abt-us .why-h2 {
        font-size: 28px
    }
}

.succ-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    padding: 64px 24px;
    background: #F6F6F6
}

.succ-page .succ-wrap {
    max-width: 520px;
    width: 100%;
    background: #fff;
    border-radius: 16px;
    padding: 64px 32px;
    box-shadow: 2px 6px 20px -2px #6081ff1a;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px
}

.succ-page .succ-icon {
    width: 64px;
    height: 64px;
    border-radius: 44px;
    background: #272727;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

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

.succ-page .succ-title {
    font-size: 38px;
    line-height: 1.1;
    color: #272727;
    text-align: center;
    margin: 0;
    letter-spacing: -.5px
}

.succ-page .succ-text {
    font-size: 21px;
    line-height: 1.75;
    color: #272727;
    text-align: center;
    margin: 0;
    opacity: .75
}

.succ-page .succ-divider {
    width: 48px;
    height: 2px;
    background: #6081FF;
    border-radius: 6px;
    flex-shrink: 0
}

.succ-page .succ-link {
    display: inline-block;
    font-size: 13px;
    color: #272727;
    border: 1.5px solid #272727;
    border-radius: 10px;
    padding: 16px 32px;
    text-decoration: none;
    letter-spacing: .04em;
    text-transform: uppercase;
    transition: background .5s ease-out, color .45s ease-out, border-color .5s ease-out
}

.succ-page .succ-link:hover {
    background: #272727;
    color: #F6F6F6;
    border-color: #272727
}

.succ-page .succ-note {
    font-size: 13px;
    line-height: 1.75;
    color: #272727;
    opacity: .5;
    text-align: center;
    margin: 0
}