@import "https://cdn.jsdelivr.net/npm/@fontsource/nunito@latest/400.css";
@import "https://cdn.jsdelivr.net/npm/@fontsource/nunito@latest/700.css";

html {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

body {
    margin: 0;
    font-family: 'Nunito', sans-serif;
    font-size: 15px;
    line-height: 1.5;
    background-color: #fff;
    color: #1b2a3b
}

.site-header {
    background: linear-gradient(160deg, #013C72 0%, #01529a 100%);
    border-bottom: 3px solid #3FE9D3
}

.brand-row {
    max-width: 1140px;
    margin: 0 auto;
    padding: 32px 32px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px
}

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

.logo-shell {
    width: 90px;
    height: 90px;
    background-color: #fff;
    border-radius: 2px;
    box-shadow: inset 0 1px 5px -1px #013c721f 0 6px 25px -1px #013c722e;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 8px
}

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

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

.brand-name {
    font-size: 27px;
    font-weight: 700;
    line-height: 1.1;
    color: #fff;
    letter-spacing: 0
}

.brand-tagline {
    font-size: 15px;
    line-height: 1.3;
    color: #3FE9D3;
    font-weight: 400
}

.header-address {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px
}

.addr-label {
    font-size: 15px;
    color: #f6f8f899;
    font-weight: 400;
    line-height: 1.3
}

.addr-text {
    font-size: 15px;
    color: #F6F8F8;
    font-weight: 700;
    line-height: 1.3;
    text-align: right
}

.nav-row {
    background-color: #013c7273;
    border-top: 1px solid #3fe9d333
}

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

.nav-link {
    display: inline-flex;
    align-items: center;
    padding: 16px 32px;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
    color: #F6F8F8;
    text-decoration: none;
    position: relative;
    transition: color .1s ease-out;
    white-space: nowrap
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 32px;
    right: 32px;
    height: 2px;
    background-color: #3FE9D3;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform .12s ease-out
}

.nav-link:hover {
    color: #3FE9D3
}

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

.nav-link:focus {
    outline: none;
    color: #3FE9D3
}

.nav-link:focus::before {
    content: 'focus';
    position: absolute;
    top: 4px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 15px;
    background-color: #3FE9D3;
    color: #013C72;
    padding: 0 8px;
    border-radius: 2px;
    font-weight: 700;
    line-height: 1.5;
    pointer-events: none;
    white-space: nowrap
}

.nav-link[aria-current="page"] {
    color: #3FE9D3
}

.nav-link[aria-current="page"]::after {
    transform: scaleX(1)
}

.site-footer {
    background-color: #013C72;
    color: #F6F8F8
}

.footer-upper {
    max-width: 1140px;
    margin: 0 auto;
    padding: 64px 32px 32px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 64px
}

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

.footer-logo-shell {
    width: 80px;
    height: 80px;
    background-color: #fff;
    border-radius: 2px;
    box-shadow: 0 1px 5px -1px #3fe9d31a 0 6px 25px -1px #3fe9d31f;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    flex-shrink: 0
}

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

.footer-brand-desc {
    font-size: 15px;
    line-height: 1.7;
    color: #f6f8f8bf;
    max-width: 260px
}

.footer-links-col {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.footer-col-heading {
    font-size: 17px;
    font-weight: 700;
    line-height: 1.3;
    color: #3FE9D3
}

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

.footer-link-list a {
    font-size: 15px;
    line-height: 1.5;
    color: #f6f8f8cc;
    text-decoration: none;
    transition: color .1s ease-out
}

.footer-link-list a:hover {
    color: #3FE9D3
}

.footer-link-list a:focus {
    outline: none;
    color: #3FE9D3;
    position: relative
}

.footer-link-list a:focus::before {
    content: 'focus';
    position: absolute;
    top: -18px;
    left: 0;
    font-size: 15px;
    background-color: #3FE9D3;
    color: #013C72;
    padding: 0 8px;
    border-radius: 2px;
    font-weight: 700;
    line-height: 1.5;
    pointer-events: none;
    white-space: nowrap
}

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

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 16px
}

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

.contact-item-label {
    font-size: 15px;
    color: #f6f8f880;
    font-weight: 400;
    line-height: 1.3
}

.contact-item-val {
    font-size: 15px;
    line-height: 1.5;
    color: #F6F8F8;
    font-weight: 700
}

.contact-item-val a {
    color: #F6F8F8;
    text-decoration: none;
    transition: color .1s ease-out
}

.contact-item-val a:hover {
    color: #3FE9D3
}

.contact-item-val a:focus {
    outline: none;
    color: #3FE9D3;
    position: relative
}

.contact-item-val a:focus::before {
    content: 'focus';
    position: absolute;
    top: -18px;
    left: 0;
    font-size: 15px;
    background-color: #3FE9D3;
    color: #013C72;
    padding: 0 8px;
    border-radius: 2px;
    font-weight: 700;
    line-height: 1.5;
    pointer-events: none;
    white-space: nowrap
}

.footer-divider {
    max-width: 1140px;
    margin: 0 auto;
    border: none;
    border-top: 1px solid #3fe9d326
}

.footer-lower {
    max-width: 1140px;
    margin: 0 auto;
    padding: 32px 32px 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap
}

.footer-copy {
    font-size: 15px;
    line-height: 1.5;
    color: #f6f8f880
}

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

.footer-legal-links a {
    font-size: 15px;
    line-height: 1.5;
    color: #f6f8f880;
    text-decoration: none;
    transition: color .1s ease-out
}

.footer-legal-links a:hover {
    color: #3FE9D3
}

.footer-legal-links a:focus {
    outline: none;
    color: #3FE9D3;
    position: relative
}

.footer-legal-links a:focus::before {
    content: 'focus';
    position: absolute;
    top: -18px;
    left: 0;
    font-size: 15px;
    background-color: #3FE9D3;
    color: #013C72;
    padding: 0 8px;
    border-radius: 2px;
    font-weight: 700;
    line-height: 1.5;
    pointer-events: none;
    white-space: nowrap
}

.consent-popup {
    position: fixed;
    bottom: 32px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 420px;
    max-width: calc(100vw - 64px);
    background-color: #F6F8F8;
    border: 1px solid #013c721f;
    border-radius: 2px;
    box-shadow: 0 12px 60px -1px #013c721f;
    padding: 32px;
    z-index: 1500;
    display: none
}

.consent-popup-text {
    font-size: 15px;
    line-height: 1.7;
    color: #1b2a3b;
    margin: 0 0 16px
}

.consent-popup-actions {
    display: flex;
    align-items: center;
    gap: 32px
}

.consent-btn {
    background: none;
    border: none;
    padding: 0;
    font-family: 'Nunito', sans-serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.5;
    cursor: pointer;
    text-decoration: underline;
    transition: color .08s linear
}

.consent-btn-accept {
    color: #013C72
}

.consent-btn-accept:hover,
.consent-btn-accept:focus {
    color: #3FE9D3;
    outline: none
}

.consent-btn-decline {
    color: #013c7280
}

.consent-btn-decline:hover,
.consent-btn-decline:focus {
    color: #013C72;
    outline: none
}

@media (max-width: 900px) {
    .footer-upper {
        grid-template-columns: 1fr 1fr;
        gap: 32px
    }

    .footer-brand-col {
        grid-column: 1 / -1
    }
}

@media (max-width: 640px) {
    .brand-row {
        flex-direction: column;
        align-items: flex-start;
        padding: 32px 16px 16px;
        gap: 16px
    }

    .header-address {
        align-items: flex-start
    }

    .addr-text {
        text-align: left
    }

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

    .nav-link {
        padding: 16px
    }

    .nav-link::after {
        left: 16px;
        right: 16px
    }

    .footer-upper {
        grid-template-columns: 1fr;
        padding: 32px 16px 16px;
        gap: 32px
    }

    .footer-lower {
        padding: 32px 16px;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px
    }

    .footer-legal-links {
        gap: 16px
    }
}

.doc-section {
    max-width: 1140px;
    margin: 0 auto;
    padding: 64px 32px;
    color: #2a2d35
}

.doc-section h1 {
    font-size: 68px;
    line-height: 1.1;
    color: #013C72;
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 2px solid #3FE9D3
}

.doc-section h2 {
    font-size: 37px;
    line-height: 1.3;
    color: #013C72;
    margin-top: 64px;
    margin-bottom: 16px
}

.doc-section h3 {
    font-size: 27px;
    line-height: 1.3;
    color: #013C72;
    margin-top: 32px;
    margin-bottom: 16px
}

.doc-section h4 {
    font-size: 21px;
    line-height: 1.5;
    color: #013C72;
    margin-top: 32px;
    margin-bottom: 8px
}

.doc-section h5 {
    font-size: 17px;
    line-height: 1.5;
    color: #013C72;
    margin-top: 16px;
    margin-bottom: 8px
}

.doc-section h6 {
    font-size: 15px;
    line-height: 1.5;
    color: #013C72;
    margin-top: 16px;
    margin-bottom: 8px;
    text-transform: uppercase
}

.doc-section p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: #2a2d35;
    max-width: 72ch
}

.doc-section a {
    color: #013C72;
    text-decoration: underline;
    text-decoration-color: #3FE9D3;
    text-underline-offset: 3px;
    transition: color .1s ease-out, text-decoration-color .08s linear
}

.doc-section a:hover {
    color: #3FE9D3;
    text-decoration-color: #013C72
}

.doc-section a:visited {
    color: #013C72;
    opacity: .75
}

.doc-section hr {
    border: none;
    border-top: 1px solid #d4dde8;
    margin: 64px 0
}

.doc-section div {
    font-size: 17px;
    line-height: 1.7
}

.doc-section div+div {
    margin-top: 16px
}

@media (max-width: 768px) {
    .doc-section {
        padding: 32px 16px
    }

    .doc-section h1 {
        font-size: 37px
    }

    .doc-section h2 {
        font-size: 27px;
        margin-top: 32px
    }

    .doc-section h3 {
        font-size: 21px
    }

    .doc-section h4 {
        font-size: 17px
    }

    .doc-section h5,
    .doc-section h6 {
        font-size: 15px
    }

    .doc-section p {
        max-width: 100%
    }

    .doc-section hr {
        margin: 32px 0
    }
}

.arc-det {
    background: #fff;
    overflow-x: clip;
    position: relative
}

.arc-det .bg-circles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 0
}

.arc-det .bg-circles span {
    position: absolute;
    border-radius: 30px;
    border: 1px solid #013c720d;
    background: transparent
}

.arc-det .bg-circles span:nth-child(1) {
    width: 320px;
    height: 320px;
    top: 8%;
    left: -80px;
    border-radius: 46px
}

.arc-det .bg-circles span:nth-child(2) {
    width: 180px;
    height: 180px;
    top: 40%;
    right: -40px;
    border-radius: 30px
}

.arc-det .bg-circles span:nth-child(3) {
    width: 240px;
    height: 240px;
    bottom: 10%;
    left: 30%;
    border-radius: 46px;
    border-color: #3fe9d30f
}

.arc-det .pg-wrap {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 1
}

.arc-det .aurora-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden
}

.arc-det .aurora-bg::before,
.arc-det .aurora-bg::after {
    content: '';
    position: absolute;
    border-radius: 46px;
    opacity: .04;
    animation: aurora-shift 12s ease-in-out infinite alternate
}

.arc-det .aurora-bg::before {
    width: 60%;
    height: 60%;
    background: linear-gradient(180deg, #3FE9D3, #fff);
    top: -10%;
    right: -10%;
    animation-delay: 0s
}

.arc-det .aurora-bg::after {
    width: 50%;
    height: 50%;
    background: linear-gradient(180deg, #013C72, #fff);
    bottom: -10%;
    left: -5%;
    animation-delay: 6s
}

@keyframes aurora-shift {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: .04
    }

    100% {
        transform: translate(3%, 2%) scale(1.05);
        opacity: .07
    }
}

.arc-det .title-blk {
    padding: 64px 0 32px;
    position: relative;
    border-bottom: 2px solid #F6F8F8
}

.arc-det .title-blk::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #3FE9D3, #013C72);
    border-radius: 2px
}

.arc-det .title-inner {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 64px
}

.arc-det .title-text {
    flex: 1 1 0;
    min-width: 0
}

.arc-det .tag-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px
}

.arc-det .tag-pill {
    font-size: 15px;
    line-height: 1.3;
    color: #013C72;
    background: #F6F8F8;
    border: 1px solid #013c721f;
    border-radius: 30px;
    padding: 8px 16px;
    font-weight: 600;
    text-decoration: none !important
}

.arc-det .tag-pill.cat {
    background: #3fe9d31f;
    color: #013C72;
    border-color: #3fe9d34d
}

.arc-det .art-h1 {
    font-size: 37px;
    line-height: 1.1;
    color: #013C72;
    font-weight: 800;
    margin: 0 0 16px;
    background: linear-gradient(180deg, #3FE9D3 0%, #013C72 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.arc-det .art-sub {
    font-size: 21px;
    line-height: 1.5;
    color: #3a4a5c;
    margin: 0 0 16px;
    font-weight: 400
}

.arc-det .meta-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px
}

.arc-det .like-badge {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    line-height: 1.3;
    color: #013C72;
    font-weight: 600
}

.arc-det .like-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0
}

.arc-det .title-img-col {
    flex: 0 0 420px;
    max-width: 420px;
    position: relative
}

.arc-det .img-wrap {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 12px 60px -1px #013c721f;
    position: relative
}

.arc-det .img-wrap img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    object-position: center;
    display: block
}

.arc-det .img-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, #013c7259 0%, transparent 100%);
    pointer-events: none
}

.arc-det .brushstroke-div {
    width: 100%;
    overflow: hidden;
    line-height: 0;
    margin: 0
}

.arc-det .brushstroke-div svg {
    display: block;
    width: 100%
}

.arc-det .art-body {
    padding: 64px 0;
    background: #fff;
    position: relative
}

.arc-det .art-body-inner {
    display: flex;
    flex-direction: row;
    gap: 64px;
    align-items: flex-start
}

.arc-det .art-text {
    flex: 1 1 0;
    min-width: 0
}

.arc-det .art-text .art-p {
    font-size: 17px;
    line-height: 1.7;
    color: #2a3545;
    margin: 0 0 16px
}

.arc-det .art-text h2 {
    font-size: 27px;
    line-height: 1.3;
    color: #013C72;
    font-weight: 700;
    margin: 32px 0 16px;
    background: linear-gradient(180deg, #3FE9D3 0%, #013C72 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.arc-det .art-text h3 {
    font-size: 21px;
    line-height: 1.3;
    color: #013C72;
    font-weight: 700;
    margin: 32px 0 8px
}

.arc-det .art-text h4 {
    font-size: 17px;
    line-height: 1.5;
    color: #013C72;
    font-weight: 700;
    margin: 16px 0 8px
}

.arc-det .art-text ul {
    margin: 0 0 16px;
    padding: 0;
    list-style: none;
    counter-reset: step-count
}

.arc-det .art-text ul li {
    font-size: 17px;
    line-height: 1.7;
    color: #2a3545;
    padding: 8px 0 8px 32px;
    position: relative;
    counter-increment: step-count;
    border-bottom: 1px solid #F6F8F8
}

.arc-det .art-text ul li::before {
    content: counter(step-count, decimal-leading-zero);
    position: absolute;
    left: 0;
    top: 8px;
    font-size: 15px;
    font-weight: 700;
    color: #3FE9D3;
    line-height: 1.7
}

.arc-det .art-text ul li:last-child {
    border-bottom: none
}

.arc-det .art-text figure {
    margin: 32px 0;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 6px 25px -1px #013c721a
}

.arc-det .art-text figure img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover
}

.arc-det .art-text figcaption {
    font-size: 15px;
    line-height: 1.5;
    color: #6a7a8a;
    padding: 8px 16px;
    background: #F6F8F8;
    font-style: italic
}

.arc-det .art-text code {
    font-size: 15px;
    background: #F6F8F8;
    border: 1px solid #013c721a;
    border-radius: 2px;
    padding: 2px 8px;
    color: #013C72
}

.arc-det .art-aside {
    flex: 0 0 280px;
    max-width: 280px;
    position: sticky;
    top: 32px
}

.arc-det .checklist-card {
    background: #F6F8F8;
    border-radius: 30px;
    padding: 32px;
    box-shadow: 0 6px 25px -1px #013c721a
}

.arc-det .checklist-card .ck-head {
    font-size: 17px;
    line-height: 1.3;
    font-weight: 700;
    color: #013C72;
    margin: 0 0 8px
}

.arc-det .ck-progress-bar {
    background: #013c721a;
    border-radius: 2px;
    height: 6px;
    margin-bottom: 16px;
    overflow: hidden
}

.arc-det .ck-progress-fill {
    height: 100%;
    border-radius: 2px;
    background: linear-gradient(180deg, #3FE9D3, #013C72);
    transition: width .12s ease-out
}

.arc-det .ck-count {
    font-size: 15px;
    line-height: 1.3;
    color: #6a7a8a;
    margin-bottom: 16px
}

.arc-det .ck-count strong {
    color: #013C72
}

.arc-det .ck-list {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: none
}

.arc-det .ck-list li {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 8px;
    padding: 8px 0;
    border-bottom: 1px solid #013c7214;
    cursor: pointer
}

.arc-det .ck-list li:last-child {
    border-bottom: none
}

.arc-det .ck-list li label {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 8px;
    cursor: pointer;
    font-size: 15px;
    line-height: 1.5;
    color: #2a3545;
    width: 100%
}

.arc-det .ck-list li input[type="checkbox"] {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: #013C72;
    cursor: pointer;
    box-shadow: inset 0 1px 5px -1px #013c720d
}

.arc-det .ck-list li input[type="checkbox"]:checked+span {
    color: #013C72;
    font-weight: 600;
    text-decoration: line-through;
    text-decoration-color: #3fe9d3b3
}

.arc-det .back-link {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    line-height: 1.3;
    color: #013C72;
    text-decoration: none !important;
    font-weight: 600;
    padding: 8px 16px;
    border: 1px solid #013c7233;
    border-radius: 2px;
    margin-top: 16px;
    transition: background .1s ease-out, color .1s ease-out
}

.arc-det .back-link:hover {
    background: #013C72;
    color: #fff
}

.arc-det .cta-strip {
    background: #F6F8F8;
    padding: 64px 0;
    position: relative
}

.arc-det .cta-strip .aurora-bg::before {
    opacity: .06
}

.arc-det .cta-strip .aurora-bg::after {
    opacity: .04
}

.arc-det .cta-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 64px
}

.arc-det .cta-text {
    flex: 1 1 0;
    min-width: 0
}

.arc-det .cta-h2 {
    font-size: 37px;
    line-height: 1.1;
    font-weight: 800;
    color: #013C72;
    margin: 0 0 16px;
    background: linear-gradient(180deg, #3FE9D3 0%, #013C72 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.arc-det .cta-h2 .outlined {
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 2px #013C72;
    background: none
}

.arc-det .cta-p {
    font-size: 17px;
    line-height: 1.7;
    color: #2a3545;
    margin: 0
}

.arc-det .cta-actions {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start
}

.arc-det .btn-primary {
    display: inline-block;
    font-size: 17px;
    line-height: 1.3;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(180deg, #3FE9D3, #013C72);
    border: none;
    border-radius: 2px;
    padding: 16px 32px;
    cursor: pointer;
    text-decoration: none !important;
    transition: background .12s ease-out, box-shadow .12s ease-out;
    box-shadow: 0 6px 25px -1px #013c721a
}

.arc-det .btn-primary:hover {
    background: linear-gradient(0deg, #3FE9D3, #013C72);
    box-shadow: 0 12px 60px -1px #013c721f
}

.arc-det .btn-primary:active {
    box-shadow: inset 0 1px 5px -1px #013c720d
}

.arc-det .btn-secondary {
    display: inline-block;
    font-size: 15px;
    line-height: 1.3;
    font-weight: 600;
    color: #013C72;
    background: #fff;
    border: 1px solid #013c7233;
    border-radius: 2px;
    padding: 8px 16px;
    cursor: pointer;
    text-decoration: none !important;
    transition: border-color .1s linear, background .1s linear
}

.arc-det .btn-secondary:hover {
    border-color: #013C72;
    background: #013c720a
}

.arc-det .btn-secondary:active {
    box-shadow: inset 0 1px 5px -1px #013c720d
}

@media (max-width: 900px) {
    .arc-det .title-inner {
        flex-direction: column-reverse;
        gap: 32px
    }

    .arc-det .title-img-col {
        flex: none;
        max-width: 100%;
        width: 100%
    }

    .arc-det .art-body-inner {
        flex-direction: column;
        gap: 32px
    }

    .arc-det .art-aside {
        flex: none;
        max-width: 100%;
        width: 100%;
        position: static
    }

    .arc-det .cta-inner {
        flex-direction: column;
        gap: 32px
    }

    .arc-det .cta-actions {
        width: 100%
    }
}

@media (max-width: 600px) {
    .arc-det .art-h1 {
        font-size: 27px
    }

    .arc-det .cta-h2 {
        font-size: 27px
    }

    .arc-det .pg-wrap {
        padding: 0 16px
    }

    .arc-det .title-blk {
        padding: 32px 0
    }
}

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

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

.srvs-pg img {
    display: block;
    max-width: 100%
}

@keyframes blurIn {
    from {
        filter: blur(8px);
        opacity: 0
    }

    to {
        filter: blur(0);
        opacity: 1
    }
}

.srvs-pg .fade-in {
    animation: blurIn .5s ease-out both
}

.srvs-pg .fade-in-d1 {
    animation-delay: .08s
}

.srvs-pg .fade-in-d2 {
    animation-delay: .18s
}

.srvs-pg .fade-in-d3 {
    animation-delay: .28s
}

.srvs-pg .t-block {
    position: relative;
    max-width: 1140px;
    margin: 0 auto;
    padding: 64px 32px 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 32px;
    align-items: end
}

.srvs-pg .t-bg-num {
    position: absolute;
    top: 0;
    right: 32px;
    font-size: 220px;
    font-weight: 900;
    line-height: 1.1;
    color: #013C72;
    opacity: .04;
    pointer-events: none;
    user-select: none;
    z-index: 0;
    letter-spacing: -8px
}

.srvs-pg .t-text {
    grid-column: 1;
    grid-row: 1;
    position: relative;
    z-index: 1
}

.srvs-pg .t-label {
    display: inline-block;
    font-size: 15px;
    line-height: 1.3;
    color: #3FE9D3;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px
}

.srvs-pg .t-h1 {
    font-size: 68px;
    line-height: 1.1;
    font-weight: 900;
    color: #013C72;
    margin: 0 0 16px
}

.srvs-pg .t-h1 .acc {
    background: linear-gradient(to top, #013C72, #3FE9D3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.srvs-pg .t-sub {
    font-size: 17px;
    line-height: 1.7;
    color: #3a4a5c;
    max-width: 480px;
    margin: 0
}

.srvs-pg .t-img-col {
    grid-column: 2;
    grid-row: 1 / 3;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end
}

.srvs-pg .t-img-wrap {
    width: 100%;
    max-width: 480px;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 2px;
    box-shadow: 0 12px 60px -1px #013c721f
}

.srvs-pg .t-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center
}

.srvs-pg .t-stats {
    grid-column: 1;
    grid-row: 2;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: row;
    gap: 32px;
    align-items: flex-start
}

.srvs-pg .t-stat {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.srvs-pg .t-stat-num {
    font-size: 37px;
    line-height: 1.1;
    font-weight: 900;
    color: #013C72
}

.srvs-pg .t-stat-lbl {
    font-size: 15px;
    line-height: 1.3;
    color: #6a7a8c
}

.srvs-pg .t-divider {
    border: none;
    margin: 0 auto;
    max-width: 1140px;
    padding: 0 32px;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.srvs-pg .t-divider-line {
    height: 1px;
    background: #013C72;
    opacity: .15
}

.srvs-pg .t-divider-gap {
    height: 6px;
    background: linear-gradient(to right, #3FE9D3, transparent);
    opacity: .4;
    border-radius: 2px
}

.srvs-pg .srv-grid-outer {
    background: #F6F8F8;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    padding: 64px 32px
}

.srvs-pg .srv-grid-inner {
    max-width: 1140px;
    margin: 0 auto
}

.srvs-pg .srv-grid-head {
    text-align: center;
    margin-bottom: 32px
}

.srvs-pg .srv-grid-h2 {
    font-size: 37px;
    line-height: 1.3;
    font-weight: 800;
    background: linear-gradient(to top, #013C72, #3FE9D3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 16px
}

.srvs-pg .srv-grid-desc {
    font-size: 17px;
    line-height: 1.7;
    color: #3a4a5c;
    max-width: 560px;
    margin: 0 auto
}

.srvs-pg .srv-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px
}

.srvs-pg .srv-card {
    background: #fff;
    border-radius: 46px 2px 46px 2px;
    padding: 32px;
    box-shadow: 0 6px 25px -1px #013c721a;
    position: relative;
    overflow: hidden;
    transition: box-shadow .12s ease-out, transform .1s ease-out
}

.srvs-pg .srv-card:hover {
    box-shadow: 0 12px 60px -1px #013c721f;
    transform: translateY(-2px)
}

.srvs-pg .srv-card-num {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 15px;
    font-weight: 900;
    color: #013C72;
    opacity: .12;
    line-height: 1.1
}

.srvs-pg .srv-card-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(to top, #013C72, #3FE9D3);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    flex-shrink: 0
}

.srvs-pg .srv-card-icon svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: #fff;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round
}

.srvs-pg .srv-card-h3 {
    font-size: 21px;
    line-height: 1.3;
    font-weight: 800;
    color: #013C72;
    margin: 0 0 8px
}

.srvs-pg .srv-card-p {
    font-size: 15px;
    line-height: 1.7;
    color: #4a5a6c;
    margin: 0 0 16px
}

.srvs-pg .srv-card-detail {
    font-size: 15px;
    line-height: 1.5;
    color: #013C72;
    font-weight: 600;
    border-top: 1px solid #013c721a;
    padding-top: 16px;
    margin: 0
}

.srvs-pg .srv-card-detail span {
    color: #3FE9D3
}

.srvs-pg .inst-band {
    padding: 64px 32px;
    background: #fff
}

.srvs-pg .inst-inner {
    max-width: 1140px;
    margin: 0 auto
}

.srvs-pg .inst-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
    margin-bottom: 32px
}

.srvs-pg .inst-head-col {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.srvs-pg .inst-h2 {
    font-size: 37px;
    line-height: 1.3;
    font-weight: 800;
    background: linear-gradient(to top, #013C72, #3FE9D3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    text-align: center
}

.srvs-pg .inst-body {
    font-size: 17px;
    line-height: 1.7;
    color: #3a4a5c;
    margin: 0
}

.srvs-pg .inst-cta {
    display: inline-block;
    background: linear-gradient(to top, #013C72, #1a5fa0);
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    padding: 16px 32px;
    border-radius: 2px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background .12s ease-out, box-shadow .1s ease-out;
    box-shadow: 0 6px 25px -1px #013c721a;
    align-self: flex-start
}

.srvs-pg .inst-cta:hover {
    background: linear-gradient(to bottom, #013C72, #1a5fa0);
    box-shadow: 0 12px 60px -1px #013c721f
}

.srvs-pg .inst-cta:active {
    box-shadow: inset 0 2px 8px #013c722e
}

.srvs-pg .inst-features {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.srvs-pg .inst-feat {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: flex-start
}

.srvs-pg .inst-feat-step {
    width: 32px;
    height: 32px;
    border-radius: 30px;
    background: linear-gradient(to top, #013C72, #3FE9D3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 900;
    color: #fff;
    flex-shrink: 0;
    position: relative
}

.srvs-pg .inst-feat-step::after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 16px;
    background: #013c7226
}

.srvs-pg .inst-feat:last-child .inst-feat-step::after {
    display: none
}

.srvs-pg .inst-feat-text {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.srvs-pg .inst-feat-h {
    font-size: 17px;
    font-weight: 700;
    color: #013C72;
    line-height: 1.3;
    margin: 0
}

.srvs-pg .inst-feat-p {
    font-size: 15px;
    line-height: 1.5;
    color: #4a5a6c;
    margin: 0
}

.srvs-pg .inst-portraits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    border-top: 2px solid #013c7214;
    padding-top: 32px
}

.srvs-pg .inst-card {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.srvs-pg .inst-photo {
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
    flex-shrink: 0
}

.srvs-pg .inst-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top
}

.srvs-pg .inst-name {
    font-size: 17px;
    font-weight: 800;
    color: #013C72;
    line-height: 1.3;
    margin: 0
}

.srvs-pg .inst-role {
    font-size: 15px;
    color: #3FE9D3;
    font-weight: 700;
    margin: 0;
    line-height: 1.3
}

.srvs-pg .inst-quote {
    font-size: 15px;
    line-height: 1.7;
    color: #4a5a6c;
    margin: 0;
    font-style: italic
}

@media (max-width: 900px) {
    .srvs-pg .t-block {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        padding: 32px 16px;
        gap: 16px
    }

    .srvs-pg .t-img-col {
        grid-column: 1;
        grid-row: 2;
        justify-content: flex-start
    }

    .srvs-pg .t-stats {
        grid-row: 3
    }

    .srvs-pg .t-h1 {
        font-size: 37px
    }

    .srvs-pg .t-bg-num {
        font-size: 120px;
        right: 16px
    }

    .srvs-pg .srv-cards {
        grid-template-columns: 1fr;
        gap: 16px
    }

    .srvs-pg .inst-top {
        grid-template-columns: 1fr;
        gap: 32px
    }

    .srvs-pg .inst-portraits {
        grid-template-columns: 1fr
    }

    .srvs-pg .srv-grid-outer {
        padding: 32px 16px
    }

    .srvs-pg .inst-band {
        padding: 32px 16px
    }
}

@media (max-width: 600px) {
    .srvs-pg .t-stats {
        flex-direction: column;
        gap: 16px
    }

    .srvs-pg .inst-portraits {
        grid-template-columns: 1fr
    }
}

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

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

.cont-us .editorial-block {
    padding: 96px 0 64px;
    background: #F6F8F8;
    position: relative
}

.cont-us .editorial-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, #013C72 0%, #fff 100%);
    opacity: .04;
    pointer-events: none
}

.cont-us .ed-inner {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 64px;
    align-items: start
}

.cont-us .ed-left {
    display: flex;
    flex-direction: column;
    gap: 32px
}

.cont-us .ed-label {
    display: inline-block;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .18em;
    color: #3FE9D3;
    text-transform: uppercase;
    padding-bottom: 8px;
    border-bottom: 2px solid #3FE9D3;
    width: fit-content
}

.cont-us .ed-heading {
    font-size: 68px;
    line-height: 1.1;
    font-weight: 800;
    background: linear-gradient(0deg, #013C72 0%, #fff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0
}

.cont-us .ed-heading span {
    -webkit-text-fill-color: #3FE9D3;
    background: none;
    background-clip: unset
}

.cont-us .ed-desc {
    font-size: 17px;
    line-height: 1.7;
    color: #2a3a4a;
    margin: 0;
    max-width: 480px
}

.cont-us .ed-contacts {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 32px;
    background: #013C72;
    border-radius: 2px;
    box-shadow: 0 12px 60px -1px #013c721f
}

.cont-us .ed-contacts .ct-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px
}

.cont-us .ed-contacts .ct-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #3fe9d326;
    border-radius: 2px
}

.cont-us .ed-contacts .ct-icon svg {
    width: 18px;
    height: 18px
}

.cont-us .ed-contacts .ct-label {
    font-size: 15px;
    font-weight: 700;
    color: #3FE9D3;
    display: block;
    margin-bottom: 4px;
    letter-spacing: .06em;
    text-transform: uppercase
}

.cont-us .ed-contacts .ct-val {
    font-size: 15px;
    line-height: 1.5;
    color: #d8eaf8;
    text-decoration: none;
    display: block;
    transition: color .1s ease-out
}

.cont-us .ed-contacts .ct-val:hover {
    color: #3FE9D3
}

.cont-us .ed-contacts .ct-divider {
    height: 1px;
    background: #3fe9d32e;
    margin: 8px 0
}

.cont-us .ed-right {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.cont-us .ed-right .form-tag {
    font-size: 15px;
    font-weight: 700;
    color: #013C72;
    letter-spacing: .1em;
    text-transform: uppercase
}

.cont-us .wave-divider {
    height: 8px;
    background: linear-gradient(90deg, #3FE9D3 0%, #013C72 60%, #F6F8F8 100%);
    opacity: .18;
    border-radius: 46px;
    margin-bottom: 8px;
    width: 80px
}

.cont-us .form-block {
    background: #fff;
    border-radius: 2px;
    padding: 32px;
    box-shadow: 0 6px 25px -1px #013c721a;
    display: flex;
    flex-direction: column;
    gap: 16px
}

.cont-us .form-row {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.cont-us .form-row label {
    font-size: 15px;
    font-weight: 600;
    color: #013C72;
    line-height: 1.3
}

.cont-us .form-row input[type="text"],
.cont-us .form-row input[type="email"],
.cont-us .form-row input[type="tel"] {
    width: 100%;
    padding: 12px 16px;
    font-size: 15px;
    line-height: 1.5;
    color: #1b2e40;
    background: #F6F8F8;
    border: 1.5px solid #cdd8e3;
    border-radius: 2px;
    outline: none;
    box-sizing: border-box;
    transition: border-color .1s ease-out, box-shadow .12s ease-out
}

.cont-us .form-row input[type="text"]:focus,
.cont-us .form-row input[type="email"]:focus,
.cont-us .form-row input[type="tel"]:focus {
    border-color: #013C72;
    box-shadow: 0 1px 5px -1px #013c720d;
    background: #fff
}

.cont-us .form-row input::placeholder {
    color: #1b2e4061
}

.cont-us .budget-group {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.cont-us .budget-group .bg-label {
    font-size: 15px;
    font-weight: 600;
    color: #013C72;
    line-height: 1.3
}

.cont-us .budget-opts {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.cont-us .budget-opt {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    padding: 10px 16px;
    border-radius: 2px;
    border: 1.5px solid #cdd8e3;
    background: #F6F8F8;
    transition: border-color .1s ease-out, background .1s ease-out
}

.cont-us .budget-opt:hover {
    border-color: #3FE9D3;
    background: #f0fdfb
}

.cont-us .budget-opt input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid #cdd8e3;
    border-radius: 30px;
    flex-shrink: 0;
    position: relative;
    cursor: pointer;
    transition: border-color .1s ease-out;
    box-shadow: none
}

.cont-us .budget-opt input[type="radio"]:checked {
    border-color: #013C72;
    box-shadow: inset 0 0 0 4px #013C72
}

.cont-us .budget-opt input[type="radio"]:focus-visible {
    outline: 2px solid #3FE9D3;
    outline-offset: 2px
}

.cont-us .budget-opt .opt-text {
    font-size: 15px;
    color: #2a3a4a;
    line-height: 1.5
}

.cont-us .privacy-row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: #F6F8F8;
    border-radius: 2px
}

.cont-us .privacy-row input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid #cdd8e3;
    border-radius: 2px;
    flex-shrink: 0;
    margin-top: 2px;
    cursor: pointer;
    position: relative;
    transition: border-color .1s ease-out, background .1s ease-out
}

.cont-us .privacy-row input[type="checkbox"]:checked {
    border-color: #013C72;
    background: #013C72;
    box-shadow: inset 0 0 0 3px #013C72
}

.cont-us .privacy-row input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    left: 3px;
    top: 1px;
    width: 8px;
    height: 5px;
    border-left: 2px solid #3FE9D3;
    border-bottom: 2px solid #3FE9D3;
    transform: rotate(-45deg)
}

.cont-us .privacy-row input[type="checkbox"]:focus-visible {
    outline: 2px solid #3FE9D3;
    outline-offset: 2px
}

.cont-us .privacy-row .prv-text {
    font-size: 15px;
    line-height: 1.7;
    color: #4a5e72
}

.cont-us .privacy-row .prv-text a {
    color: #013C72;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color .08s ease-out
}

.cont-us .privacy-row .prv-text a:hover {
    color: #3FE9D3
}

.cont-us .submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(180deg, #013C72 0%, #01284d 100%);
    border: none;
    border-radius: 2px;
    cursor: pointer;
    width: 100%;
    letter-spacing: .04em;
    box-shadow: 0 6px 25px -1px #013c721a;
    transition: background .12s ease-out, box-shadow .12s ease-out
}

.cont-us .submit-btn:hover {
    background: linear-gradient(0deg, #013C72 0%, #01284d 100%);
    box-shadow: 0 12px 60px -1px #013c721f
}

.cont-us .submit-btn:active {
    box-shadow: inset 0 2px 8px #013c722e
}

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

.cont-us .info-strip {
    padding: 64px 0;
    background: #013C72;
    position: relative;
    overflow: hidden
}

.cont-us .info-strip::after {
    content: '';
    position: absolute;
    top: 0;
    left: -20%;
    width: 140%;
    height: 100%;
    background: linear-gradient(180deg, #3fe9d312 0%, transparent 60%);
    pointer-events: none;
    animation: wave-bg 6s ease-in-out infinite alternate
}

@keyframes wave-bg {
    0% {
        transform: translateX(-4%) scaleY(1);
        opacity: .7
    }

    100% {
        transform: translateX(4%) scaleY(1.08);
        opacity: 1
    }
}

.cont-us .strip-inner {
    display: grid;
    grid-template-columns: 1fr 2px 1fr 2px 1fr;
    gap: 32px;
    align-items: center;
    position: relative;
    z-index: 1
}

.cont-us .strip-sep {
    width: 2px;
    height: 64px;
    background: #3fe9d340;
    border-radius: 46px;
    justify-self: center
}

.cont-us .strip-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 16px
}

.cont-us .strip-item .si-label {
    font-size: 15px;
    font-weight: 600;
    color: #3FE9D3;
    letter-spacing: .1em;
    text-transform: uppercase
}

.cont-us .strip-item .si-val {
    font-size: 17px;
    line-height: 1.5;
    color: #d8eaf8;
    text-decoration: none;
    transition: color .1s ease-out
}

.cont-us .strip-item .si-val:hover {
    color: #3FE9D3
}

.cont-us .strip-item .si-note {
    font-size: 15px;
    line-height: 1.5;
    color: #d8eaf899
}

.cont-us .strip-item .si-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #3fe9d31f;
    border-radius: 2px;
    margin-bottom: 8px
}

.cont-us .strip-item .si-icon svg {
    width: 18px;
    height: 18px
}

.cont-us .partial-divider {
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, #3FE9D3, transparent);
    border-radius: 46px;
    margin: 0 auto 32px
}

@media (max-width: 900px) {
    .cont-us .ed-inner {
        grid-template-columns: 1fr;
        gap: 32px
    }

    .cont-us .ed-heading {
        font-size: 37px
    }

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

    .cont-us .strip-sep {
        display: none
    }

    .cont-us .strip-item {
        padding: 16px;
        border-bottom: 1px solid #3fe9d31f
    }
}

@media (max-width: 600px) {
    .cont-us .editorial-block {
        padding: 64px 0 32px
    }

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

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

    .cont-us .ed-contacts {
        padding: 16px
    }

    .cont-us .info-strip {
        padding: 32px 0
    }
}

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

.abt-us .db-line {
    display: flex;
    flex-direction: column;
    gap: 3px;
    margin: 32px 0
}

.abt-us .db-line span {
    display: block;
    height: 1px;
    background: #013C72;
    opacity: .18;
    width: 100%
}

.abt-us .grad-text {
    background: linear-gradient(0deg, #3FE9D3, #013C72);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.abt-us .top-panel {
    background: linear-gradient(160deg, #013C72 0%, #025494 40%, #0a6b9e 70%, #1a8fa8 100%);
    position: relative;
    padding: 96px 0 64px;
    overflow: hidden
}

.abt-us .top-panel .bg-circles {
    position: absolute;
    inset: 0;
    pointer-events: none
}

.abt-us .top-panel .bg-circles span {
    position: absolute;
    border-radius: 50%;
    border: 1px solid #3fe9d31f
}

.abt-us .top-panel .bg-circles span:nth-child(1) {
    width: 420px;
    height: 420px;
    top: -120px;
    right: -80px
}

.abt-us .top-panel .bg-circles span:nth-child(2) {
    width: 260px;
    height: 260px;
    bottom: -60px;
    left: 8%;
    border-color: #3fe9d314
}

.abt-us .top-panel .bg-circles span:nth-child(3) {
    width: 160px;
    height: 160px;
    top: 40px;
    left: 30%;
    border-color: #ffffff0f
}

.abt-us .top-panel .panel-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center
}

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

.abt-us .top-panel .eyebrow {
    font-size: 15px;
    line-height: 1.3;
    color: #3FE9D3;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 16px
}

.abt-us .top-panel .main-h {
    font-size: 68px;
    line-height: 1.1;
    color: #fff;
    font-weight: 800;
    margin-bottom: 32px
}

.abt-us .top-panel .main-h em {
    font-style: normal;
    color: #3FE9D3
}

.abt-us .top-panel .lead-p {
    font-size: 17px;
    line-height: 1.7;
    color: #ffffffd1;
    margin-bottom: 32px;
    max-width: 480px
}

.abt-us .top-panel .stat-row {
    display: flex;
    flex-direction: row;
    gap: 32px;
    margin-top: 32px
}

.abt-us .top-panel .stat-item {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.abt-us .top-panel .stat-num {
    font-size: 37px;
    line-height: 1.1;
    color: #3FE9D3;
    font-weight: 800
}

.abt-us .top-panel .stat-label {
    font-size: 15px;
    line-height: 1.3;
    color: #ffffffa6
}

.abt-us .top-panel .img-zone {
    position: relative;
    padding: 32px 0 32px 32px
}

.abt-us .top-panel .img-mask {
    width: 100%;
    aspect-ratio: 4/5;
    overflow: hidden;
    border-radius: 46px 2px 46px 2px;
    box-shadow: 0 12px 60px -1px #013c721f;
    position: relative
}

.abt-us .top-panel .img-mask::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, #3fe9d32e 0%, transparent 60%);
    pointer-events: none
}

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

.abt-us .top-panel .quote-float {
    position: absolute;
    bottom: 64px;
    left: -8px;
    background: #fff;
    border-radius: 2px 30px 2px 30px;
    padding: 16px;
    box-shadow: 0 6px 25px -1px #013c721a;
    max-width: 200px
}

.abt-us .top-panel .quote-float p {
    font-size: 15px;
    line-height: 1.5;
    color: #013C72;
    font-weight: 600;
    margin: 0
}

.abt-us .top-panel .big-quote {
    position: absolute;
    top: 0;
    right: -16px;
    font-size: 220px;
    line-height: 1;
    color: #3fe9d314;
    font-weight: 900;
    pointer-events: none;
    user-select: none;
    font-style: normal
}

.abt-us .team-panel {
    background: #F6F8F8;
    padding: 96px 0
}

.abt-us .team-panel .tp-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 32px
}

.abt-us .team-panel .tp-head {
    text-align: center;
    margin-bottom: 64px
}

.abt-us .team-panel .tp-head h2 {
    font-size: 37px;
    line-height: 1.3;
    font-weight: 800;
    margin-bottom: 16px
}

.abt-us .team-panel .tp-head p {
    font-size: 17px;
    line-height: 1.7;
    color: #3a5068;
    max-width: 560px;
    margin: 0 auto
}

.abt-us .team-panel .tp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start
}

.abt-us .team-panel .members-col {
    display: flex;
    flex-direction: column;
    gap: 32px
}

.abt-us .team-panel .member-card {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 16px;
    align-items: start;
    background: #fff;
    border-radius: 2px 30px 2px 30px;
    padding: 16px;
    box-shadow: 0 1px 5px -1px #013c720d;
    transition: box-shadow .12s ease-out
}

.abt-us .team-panel .member-card:hover {
    box-shadow: 0 6px 25px -1px #013c721a
}

.abt-us .team-panel .member-img-wrap {
    width: 100px;
    aspect-ratio: 4/5;
    border-radius: 2px 30px 2px 2px;
    overflow: hidden
}

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

.abt-us .team-panel .member-info {
    padding: 8px 0
}

.abt-us .team-panel .member-info h4 {
    font-size: 17px;
    line-height: 1.3;
    font-weight: 700;
    color: #013C72;
    margin-bottom: 8px
}

.abt-us .team-panel .member-info .role-tag {
    font-size: 15px;
    color: #3FE9D3;
    font-weight: 600;
    margin-bottom: 8px;
    display: block
}

.abt-us .team-panel .member-info p {
    font-size: 15px;
    line-height: 1.5;
    color: #3a5068;
    margin: 0
}

.abt-us .team-panel .chart-col {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center
}

.abt-us .team-panel .chart-col h3 {
    font-size: 21px;
    line-height: 1.3;
    font-weight: 700;
    color: #013C72;
    text-align: center
}

.abt-us .spider-chart {
    width: 320px;
    height: 320px
}

.abt-us .spider-chart .web-line {
    stroke: #013c721f;
    fill: none
}

.abt-us .spider-chart .data-area {
    fill: #3fe9d338;
    stroke: #3FE9D3;
    stroke-width: 2
}

.abt-us .spider-chart .axis-line {
    stroke: #013c722e;
    stroke-width: 1
}

.abt-us .spider-chart .axis-label {
    font-size: 13px;
    fill: #013C72;
    font-weight: 600
}

.abt-us .chart-legend {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%
}

.abt-us .chart-legend .leg-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    line-height: 1.3;
    color: #3a5068
}

.abt-us .chart-legend .leg-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #3FE9D3;
    flex-shrink: 0
}

.abt-us .approach-panel {
    background: #013C72;
    padding: 96px 0 64px;
    position: relative;
    overflow: hidden
}

.abt-us .approach-panel .ap-deco {
    position: absolute;
    top: -80px;
    right: -60px;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    border: 40px solid #3fe9d30f;
    pointer-events: none
}

.abt-us .approach-panel .ap-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 32px
}

.abt-us .approach-panel .ap-head {
    margin-bottom: 64px
}

.abt-us .approach-panel .ap-head h2 {
    font-size: 37px;
    line-height: 1.3;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px
}

.abt-us .approach-panel .ap-head p {
    font-size: 17px;
    line-height: 1.7;
    color: #ffffffb8;
    max-width: 520px
}

.abt-us .approach-panel .ap-layout {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 64px;
    align-items: start
}

.abt-us .approach-panel .steps-col {
    display: flex;
    flex-direction: column;
    gap: 0
}

.abt-us .approach-panel .step-item {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 16px;
    position: relative;
    padding-bottom: 32px
}

.abt-us .approach-panel .step-item:last-child {
    padding-bottom: 0
}

.abt-us .approach-panel .step-num-col {
    display: flex;
    flex-direction: column;
    align-items: center
}

.abt-us .approach-panel .step-num {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #3fe9d326;
    border: 2px solid #3FE9D3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    font-weight: 800;
    color: #3FE9D3;
    flex-shrink: 0
}

.abt-us .approach-panel .step-connector {
    flex: 1;
    width: 2px;
    background: linear-gradient(180deg, #3FE9D3 0%, #3fe9d333 100%);
    margin-top: 8px
}

.abt-us .approach-panel .step-item:last-child .step-connector {
    display: none
}

.abt-us .approach-panel .step-body {
    padding-top: 8px
}

.abt-us .approach-panel .step-body h5 {
    font-size: 17px;
    line-height: 1.3;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px
}

.abt-us .approach-panel .step-body p {
    font-size: 15px;
    line-height: 1.7;
    color: #ffffffa6;
    margin: 0
}

.abt-us .approach-panel .img-col {
    display: flex;
    flex-direction: column;
    gap: 32px
}

.abt-us .approach-panel .ap-img-stack {
    position: relative
}

.abt-us .approach-panel .ap-img-main {
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: 30px 2px 30px 2px;
    overflow: hidden;
    box-shadow: 0 12px 60px -1px #013c721f
}

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

.abt-us .approach-panel .ap-img-offset {
    position: absolute;
    bottom: -32px;
    right: -32px;
    width: 55%;
    aspect-ratio: 4/3;
    border-radius: 2px 30px 2px 2px;
    overflow: hidden;
    border: 4px solid #013C72;
    box-shadow: 0 6px 25px -1px #013c721a
}

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

.abt-us .approach-panel .ap-cta-row {
    margin-top: 96px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap
}

.abt-us .approach-panel .btn-primary {
    display: inline-block;
    padding: 16px 32px;
    background: linear-gradient(160deg, #3FE9D3, #2bcfba);
    color: #013C72;
    font-size: 17px;
    font-weight: 800;
    border-radius: 2px 30px 2px 30px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: 0 6px 25px -1px #3fe9d31a;
    transition: background .1s ease-out, box-shadow .1s ease-out
}

.abt-us .approach-panel .btn-primary:hover {
    background: linear-gradient(340deg, #3FE9D3, #2bcfba);
    box-shadow: 0 12px 60px -1px #3fe9d31f
}

.abt-us .approach-panel .btn-primary:active {
    box-shadow: inset 0 2px 8px #013c722e
}

.abt-us .approach-panel .contact-nudge {
    font-size: 15px;
    line-height: 1.5;
    color: #fff9
}

.abt-us .approach-panel .contact-nudge a {
    color: #3FE9D3;
    text-decoration: none;
    font-weight: 600;
    transition: opacity .08s linear
}

.abt-us .approach-panel .contact-nudge a:hover {
    opacity: .8
}

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

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

.abt-us .flip-reveal {
    animation: flipIn .5s ease-out both
}

.abt-us .flip-reveal.d1 {
    animation-delay: .05s
}

.abt-us .flip-reveal.d2 {
    animation-delay: .12s
}

.abt-us .flip-reveal.d3 {
    animation-delay: .2s
}

.abt-us .flip-reveal.d4 {
    animation-delay: .28s
}

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

    .abt-us .top-panel .img-zone {
        padding: 0
    }

    .abt-us .top-panel .big-quote {
        display: none
    }

    .abt-us .top-panel .quote-float {
        position: static;
        margin-top: 16px
    }

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

    .abt-us .approach-panel .ap-layout {
        grid-template-columns: 1fr;
        gap: 32px
    }

    .abt-us .approach-panel .ap-img-offset {
        display: none
    }

    .abt-us .top-panel .main-h {
        font-size: 37px
    }
}

@media (max-width: 600px) {
    .abt-us .top-panel {
        padding: 64px 0 32px
    }

    .abt-us .top-panel .panel-inner {
        padding: 0 16px
    }

    .abt-us .top-panel .stat-row {
        gap: 16px;
        flex-wrap: wrap
    }

    .abt-us .team-panel .tp-inner,
    .abt-us .approach-panel .ap-inner {
        padding: 0 16px
    }

    .abt-us .team-panel {
        padding: 64px 0
    }

    .abt-us .approach-panel {
        padding: 64px 0 32px
    }

    .abt-us .spider-chart {
        width: 260px;
        height: 260px
    }

    .abt-us .approach-panel .ap-cta-row {
        margin-top: 64px
    }
}

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

.lnch img {
    display: block;
    max-width: 100%
}

.lnch a {
    color: inherit;
    text-decoration: none
}

.lnch .top-strip {
    display: grid;
    grid-template-columns: 280px 1fr;
    min-height: 92vh;
    position: relative;
    overflow: hidden;
    background: #F6F8F8
}

.lnch .top-strip .atm-spot {
    position: absolute;
    border-radius: 46px;
    filter: blur(60px);
    opacity: .18;
    pointer-events: none;
    z-index: 0
}

.lnch .top-strip .atm-a {
    width: 340px;
    height: 340px;
    background: #3FE9D3;
    top: -80px;
    right: 120px
}

.lnch .top-strip .atm-b {
    width: 260px;
    height: 260px;
    background: #013C72;
    bottom: 40px;
    right: 60px
}

.lnch .top-img-col {
    position: relative;
    z-index: 1;
    overflow: hidden
}

.lnch .top-img-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    filter: saturate(0.7) brightness(0.92) hue-rotate(0deg)
}

.lnch .top-text-col {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 96px 64px
}

.lnch .top-h1 {
    font-size: 68px;
    line-height: 1.1;
    font-weight: 800;
    color: #013C72;
    margin: 0;
    clip-path: inset(0 100% 0 0);
    animation: wipe-in .14s ease-out .05s forwards
}

.lnch .top-h1 .acc-word {
    color: #3FE9D3
}

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

.lnch .grad-text {
    background: linear-gradient(to top, #013C72, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.lnch .svg-divider {
    display: block;
    width: 100%;
    overflow: hidden;
    line-height: 0
}

.lnch .outcomes-sec {
    background: #fff;
    padding: 96px 0 64px
}

.lnch .outcomes-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 32px
}

.lnch .outcomes-head {
    text-align: center;
    margin-bottom: 64px
}

.lnch .outcomes-head h2 {
    font-size: 37px;
    line-height: 1.3;
    font-weight: 700;
    margin: 0 0 16px
}

.lnch .outcomes-head p {
    font-size: 17px;
    line-height: 1.7;
    color: #3a4a5a;
    max-width: 560px;
    margin: 0 auto
}

.lnch .outcomes-mosaic {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 32px
}

.lnch .out-img-block {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    position: relative;
    border-radius: 2px;
    overflow: hidden
}

.lnch .out-img-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center
}

.lnch .out-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: #013C72;
    color: #fff;
    font-size: 15px;
    line-height: 1.3;
    padding: 8px 16px;
    border-radius: 2px
}

.lnch .out-card {
    background: #F6F8F8;
    border-radius: 2px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative
}

.lnch .out-card .curve-dec {
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    pointer-events: none;
    overflow: hidden;
    border-radius: 0 2px 0 0
}

.lnch .out-card h4 {
    font-size: 21px;
    line-height: 1.3;
    font-weight: 700;
    color: #013C72;
    margin: 0
}

.lnch .out-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #3a4a5a;
    margin: 0
}

.lnch .out-card.wide {
    grid-column: 2 / 4
}

.lnch .out-card.tall {
    grid-column: 2 / 3
}

.lnch .out-card.end {
    grid-column: 3 / 4
}

.lnch .hesitation-sec {
    background: #013C72;
    padding: 96px 0;
    position: relative;
    overflow: hidden
}

.lnch .hesitation-sec .diag-split {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #013C72 60%, #022e56 100%);
    pointer-events: none
}

.lnch .hesitation-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 1
}

.lnch .hesitation-inner h2 {
    font-size: 37px;
    line-height: 1.3;
    font-weight: 700;
    color: #3FE9D3;
    margin: 0 0 16px
}

.lnch .hesitation-inner p {
    font-size: 17px;
    line-height: 1.7;
    color: #f6f8f8e0;
    margin: 0 0 16px
}

.lnch .hesitation-img {
    position: relative;
    border-radius: 2px;
    overflow: hidden
}

.lnch .hesitation-img img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    object-position: center
}

.lnch .icon-trail {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0;
    margin-top: 32px
}

.lnch .icon-trail .trail-icon {
    width: 48px;
    height: 48px;
    border-radius: 46px;
    background: #3fe9d326;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.lnch .icon-trail .trail-icon svg {
    width: 22px;
    height: 22px
}

.lnch .icon-trail .trail-dash {
    flex: 1;
    height: 1px;
    border-top: 2px dashed #3fe9d366;
    min-width: 24px
}

.lnch .experience-sec {
    background: #F6F8F8;
    padding: 96px 0;
    position: relative
}

.lnch .exp-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 64px;
    align-items: start
}

.lnch .exp-portrait {
    position: relative
}

.lnch .exp-portrait img {
    width: 100%;
    aspect-ratio: 5/7;
    object-fit: cover;
    object-position: top;
    display: block
}

.lnch .exp-quote-block {
    position: absolute;
    bottom: -32px;
    right: -32px;
    background: #3FE9D3;
    padding: 16px 32px;
    border-radius: 2px;
    max-width: 260px;
    box-shadow: 0 6px 25px -1px #013c721a
}

.lnch .exp-quote-block p {
    font-size: 15px;
    line-height: 1.5;
    color: #013C72;
    margin: 0;
    font-weight: 600
}

.lnch .exp-text {
    padding-top: 32px
}

.lnch .exp-text h2 {
    font-size: 37px;
    line-height: 1.3;
    font-weight: 700;
    color: #013C72;
    margin: 0 0 16px
}

.lnch .exp-text p {
    font-size: 17px;
    line-height: 1.7;
    color: #3a4a5a;
    margin: 0 0 16px
}

.lnch .exp-name {
    font-size: 15px;
    line-height: 1.5;
    color: #013C72;
    font-weight: 700;
    margin: 0
}

.lnch .exp-role {
    font-size: 15px;
    line-height: 1.5;
    color: #6a7a8a;
    margin: 0
}

.lnch .invest-sec {
    background: #fff;
    padding: 64px 0
}

.lnch .invest-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 32px
}

.lnch .invest-inner h2 {
    font-size: 37px;
    line-height: 1.3;
    font-weight: 700;
    color: #013C72;
    text-align: center;
    margin: 0 0 8px
}

.lnch .invest-sub {
    text-align: center;
    font-size: 17px;
    line-height: 1.7;
    color: #3a4a5a;
    margin: 0 0 64px
}

.lnch .invest-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start
}

.lnch .invest-img {
    border-radius: 2px;
    overflow: hidden;
    position: relative
}

.lnch .invest-img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center
}

.lnch .invest-details {
    display: flex;
    flex-direction: column;
    gap: 32px
}

.lnch .invest-item {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: flex-start
}

.lnch .invest-num {
    font-size: 37px;
    line-height: 1.1;
    font-weight: 800;
    color: #3FE9D3;
    flex-shrink: 0;
    width: 48px
}

.lnch .invest-item-text h5 {
    font-size: 17px;
    line-height: 1.3;
    font-weight: 700;
    color: #013C72;
    margin: 0 0 8px
}

.lnch .invest-item-text p {
    font-size: 15px;
    line-height: 1.7;
    color: #3a4a5a;
    margin: 0
}

.lnch .reputation-sec {
    padding: 96px 0;
    position: relative;
    overflow: hidden
}

.lnch .rep-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: repeating-linear-gradient(45deg, transparent, transparent 18px, #013c720a 18px, #013c720a 20px), repeating-linear-gradient(-45deg, transparent, transparent 18px, #013c720a 18px, #013c720a 20px);
    pointer-events: none;
    z-index: 0
}

.lnch .rep-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 1
}

.lnch .rep-inner h2 {
    font-size: 37px;
    line-height: 1.3;
    font-weight: 700;
    color: #013C72;
    text-align: center;
    margin: 0 0 8px
}

.lnch .rep-sub {
    text-align: center;
    font-size: 17px;
    line-height: 1.7;
    color: #3a4a5a;
    margin: 0 0 64px
}

.lnch .rep-spider-wrap {
    display: flex;
    flex-direction: row;
    gap: 64px;
    align-items: center;
    justify-content: center
}

.lnch .spider-chart {
    flex-shrink: 0
}

.lnch .rep-labels {
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-width: 200px
}

.lnch .rep-label-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px
}

.lnch .rep-label-dot {
    width: 10px;
    height: 10px;
    border-radius: 30px;
    flex-shrink: 0
}

.lnch .rep-label-text {
    font-size: 15px;
    line-height: 1.5;
    color: #3a4a5a
}

.lnch .rep-label-val {
    font-size: 15px;
    font-weight: 700;
    color: #013C72;
    margin-left: auto;
    padding-left: 16px
}

.lnch .fit-sec {
    background: #013C72;
    padding: 96px 0;
    position: relative;
    overflow: hidden
}

.lnch .fit-sec .diag-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(160deg, #013C72 55%, #3FE9D3 200%);
    pointer-events: none
}

.lnch .fit-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 1
}

.lnch .fit-inner h2 {
    font-size: 37px;
    line-height: 1.3;
    font-weight: 700;
    color: #F6F8F8;
    text-align: center;
    margin: 0 0 8px
}

.lnch .fit-sub {
    text-align: center;
    font-size: 17px;
    line-height: 1.7;
    color: #f6f8f8bf;
    margin: 0 0 64px
}

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

.lnch .fit-col h4 {
    font-size: 21px;
    line-height: 1.3;
    font-weight: 700;
    margin: 0 0 16px
}

.lnch .fit-col.yes h4 {
    color: #3FE9D3
}

.lnch .fit-col.no h4 {
    color: #f6f8f880
}

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

.lnch .fit-list li {
    counter-increment: fit-counter;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    font-size: 15px;
    line-height: 1.7;
    color: #f6f8f8d9;
    position: relative;
    padding-bottom: 16px
}

.lnch .fit-list li:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 32px;
    right: 0;
    height: 1px;
    background: #f6f8f81a
}

.lnch .fit-list li::before {
    content: counter(fit-counter, decimal-leading-zero);
    font-size: 15px;
    font-weight: 700;
    color: #3FE9D3;
    flex-shrink: 0;
    width: 32px
}

.lnch .fit-col.no .fit-list li::before {
    color: #f6f8f84d
}

@media (max-width: 900px) {
    .lnch .top-strip {
        grid-template-columns: 1fr;
        grid-template-rows: 320px auto
    }

    .lnch .top-text-col {
        padding: 64px 32px
    }

    .lnch .top-h1 {
        font-size: 37px
    }

    .lnch .outcomes-mosaic {
        grid-template-columns: 1fr 1fr
    }

    .lnch .out-img-block {
        grid-column: 1 / 3;
        grid-row: 1;
        height: 260px
    }

    .lnch .out-card.wide {
        grid-column: 1 / 3
    }

    .lnch .out-card.tall {
        grid-column: 1 / 2
    }

    .lnch .out-card.end {
        grid-column: 2 / 3
    }

    .lnch .hesitation-inner {
        grid-template-columns: 1fr;
        gap: 32px
    }

    .lnch .exp-inner {
        grid-template-columns: 1fr;
        gap: 96px
    }

    .lnch .exp-quote-block {
        right: 0
    }

    .lnch .invest-cols {
        grid-template-columns: 1fr
    }

    .lnch .rep-spider-wrap {
        flex-direction: column;
        gap: 32px
    }

    .lnch .fit-cols {
        grid-template-columns: 1fr;
        gap: 32px
    }
}

@media (max-width: 600px) {
    .lnch .outcomes-mosaic {
        grid-template-columns: 1fr
    }

    .lnch .out-img-block {
        grid-column: 1
    }

    .lnch .out-card.wide {
        grid-column: 1
    }

    .lnch .out-card.tall {
        grid-column: 1
    }

    .lnch .out-card.end {
        grid-column: 1
    }

    .lnch .top-h1 {
        font-size: 27px
    }

    .lnch .spider-chart {
        width: 100%
    }
}

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

.arc-pg .bound {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 32px
}

.arc-pg .top-band {
    background: #013C72;
    padding: 64px 32px;
    position: relative;
    overflow: hidden
}

.arc-pg .top-band::before {
    content: '';
    position: absolute;
    top: -40px;
    right: 80px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 1px solid #3fe9d326
}

.arc-pg .top-band::after {
    content: '';
    position: absolute;
    top: 20px;
    right: 140px;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 1px solid #3fe9d31a
}

.arc-pg .top-circ {
    position: absolute;
    bottom: -60px;
    right: 40px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    border: 1px solid #3fe9d314;
    pointer-events: none
}

.arc-pg .top-inner {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 64px
}

.arc-pg .top-text {
    flex: 1
}

.arc-pg .top-label {
    display: inline-block;
    font-size: 15px;
    color: #3FE9D3;
    background: #3fe9d31a;
    border-radius: 2px;
    padding: 8px 16px;
    margin-bottom: 16px;
    line-height: 1.3
}

.arc-pg .top-h1 {
    font-size: 68px;
    line-height: 1.1;
    font-weight: 800;
    background: linear-gradient(to top, #013C72, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px
}

.arc-pg .top-sub {
    font-size: 17px;
    line-height: 1.5;
    color: #ffffffb8;
    max-width: 480px
}

.arc-pg .top-img-col {
    flex: 0 0 340px;
    position: relative
}

.arc-pg .top-img-wrap {
    width: 340px;
    height: 280px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 12px 60px -1px #013c721f
}

.arc-pg .top-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    filter: contrast(1.05) saturate(1.08)
}

.arc-pg .top-lines {
    position: absolute;
    bottom: -16px;
    right: -16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    pointer-events: none
}

.arc-pg .top-lines span {
    display: block;
    height: 2px;
    background: #3fe9d359;
    border-radius: 2px
}

.arc-pg .divider-concave {
    height: 48px;
    background: #013C72;
    clip-path: ellipse(55% 100% at 50% 0%)
}

.arc-pg .divider-concave-light {
    height: 48px;
    background: #F6F8F8;
    clip-path: ellipse(55% 100% at 50% 0%)
}

.arc-pg .divider-concave-white {
    height: 48px;
    background: #fff;
    clip-path: ellipse(55% 100% at 50% 0%)
}

.arc-pg .posts-area {
    background: #F6F8F8;
    padding: 64px 32px
}

.arc-pg .posts-head {
    max-width: 1140px;
    margin: 0 auto 32px;
    text-align: center
}

.arc-pg .posts-head h2 {
    font-size: 37px;
    line-height: 1.3;
    font-weight: 700;
    background: linear-gradient(to top, #013C72, #3FE9D3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.arc-pg .posts-grid {
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px
}

.arc-pg .post-card {
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 6px 25px -1px #013c721a;
    display: flex;
    flex-direction: column;
    transition: box-shadow .12s ease-out
}

.arc-pg .post-card:hover {
    box-shadow: 0 12px 60px -1px #013c721f
}

.arc-pg .post-card-img {
    width: 100%;
    height: 180px;
    overflow: hidden;
    flex-shrink: 0
}

.arc-pg .post-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center
}

.arc-pg .post-card-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1
}

.arc-pg .post-tags {
    display: flex;
    flex-direction: row;
    gap: 8px;
    flex-wrap: wrap
}

.arc-pg .post-tag {
    font-size: 15px;
    line-height: 1.3;
    color: #013C72;
    background: #013c7212;
    border-radius: 2px;
    padding: 4px 8px
}

.arc-pg .post-cat {
    font-size: 15px;
    line-height: 1.3;
    color: #3FE9D3;
    background: #3fe9d31f;
    border-radius: 2px;
    padding: 4px 8px
}

.arc-pg .post-card-title {
    font-size: 17px;
    line-height: 1.5;
    font-weight: 700;
    color: #013C72
}

.arc-pg .post-card-sub {
    font-size: 15px;
    line-height: 1.5;
    color: #2a4a6b;
    font-weight: 600
}

.arc-pg .post-card-desc {
    font-size: 15px;
    line-height: 1.7;
    color: #3a5068;
    flex: 1
}

.arc-pg .post-card-foot {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-top: 8px
}

.arc-pg .post-likes {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: #013C72
}

.arc-pg .like-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0
}

.arc-pg .post-link {
    display: inline-block;
    font-size: 15px;
    line-height: 1.3;
    color: #fff;
    background: #013C72;
    border-radius: 46px;
    padding: 8px 16px;
    text-decoration: none;
    font-weight: 600;
    transition: background .1s ease-out
}

.arc-pg .post-link:hover {
    background: linear-gradient(to top, #3FE9D3, #013C72)
}

.arc-pg .featured-strip {
    background: #fff;
    padding: 64px 32px 96px
}

.arc-pg .featured-inner {
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1.6fr;
    gap: 32px;
    align-items: stretch
}

.arc-pg .feat-col {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.arc-pg .feat-col-head {
    font-size: 15px;
    line-height: 1.3;
    color: #3FE9D3;
    font-weight: 700;
    text-transform: uppercase
}

.arc-pg .feat-col h3 {
    font-size: 21px;
    line-height: 1.3;
    font-weight: 700;
    background: linear-gradient(to top, #013C72, #3FE9D3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.arc-pg .feat-col p {
    font-size: 15px;
    line-height: 1.7;
    color: #3a5068
}

.arc-pg .feat-col-accent {
    background: #013C72;
    border-radius: 30px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    overflow: hidden
}

.arc-pg .feat-col-accent::before {
    content: '';
    position: absolute;
    top: -32px;
    right: -32px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: #3fe9d314;
    pointer-events: none
}

.arc-pg .feat-accent-num {
    font-size: 68px;
    line-height: 1.1;
    font-weight: 800;
    color: #3FE9D3
}

.arc-pg .feat-accent-label {
    font-size: 17px;
    line-height: 1.5;
    color: #ffffffd9
}

.arc-pg .feat-accent-note {
    font-size: 15px;
    line-height: 1.7;
    color: #fff9
}

.arc-pg .icon-path-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    margin-top: 8px
}

.arc-pg .icon-node {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #3fe9d326;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.arc-pg .icon-node svg {
    width: 18px;
    height: 18px
}

.arc-pg .icon-dash {
    flex: 1;
    border-top: 2px dashed #3fe9d366
}

.arc-pg .steps-area {
    background: #013C72;
    padding: 64px 32px;
    animation: bgpulse 6s ease-out infinite
}

@keyframes bgpulse {

    0%,
    100% {
        filter: brightness(1)
    }

    50% {
        filter: brightness(1.04)
    }
}

.arc-pg .steps-inner {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    gap: 64px;
    align-items: flex-start
}

.arc-pg .steps-left {
    flex: 0 0 320px
}

.arc-pg .steps-left h2 {
    font-size: 37px;
    line-height: 1.3;
    font-weight: 700;
    background: linear-gradient(to top, #013C72, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px
}

.arc-pg .steps-left p {
    font-size: 17px;
    line-height: 1.7;
    color: #ffffffb3
}

.arc-pg .steps-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0
}

.arc-pg .step-item {
    display: flex;
    flex-direction: row;
    gap: 16px;
    padding: 16px 0;
    position: relative
}

.arc-pg .step-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 15px;
    top: 52px;
    width: 2px;
    height: calc(100% - 20px);
    background: #3fe9d340
}

.arc-pg .step-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #3FE9D3;
    color: #013C72;
    font-size: 15px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 4px
}

.arc-pg .step-body h4 {
    font-size: 17px;
    line-height: 1.5;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px
}

.arc-pg .step-body p {
    font-size: 15px;
    line-height: 1.7;
    color: #ffffffa6
}

.arc-pg .enroll-strip {
    background: #F6F8F8;
    padding: 96px 32px 64px;
    position: relative
}

.arc-pg .enroll-lines {
    position: absolute;
    top: 32px;
    left: 32px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    pointer-events: none
}

.arc-pg .enroll-lines span {
    display: block;
    height: 2px;
    background: #013c721a;
    border-radius: 2px
}

.arc-pg .enroll-inner {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    gap: 64px;
    align-items: flex-start
}

.arc-pg .enroll-text {
    flex: 1
}

.arc-pg .enroll-text h2 {
    font-size: 37px;
    line-height: 1.3;
    font-weight: 700;
    background: linear-gradient(to top, #013C72, #3FE9D3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px
}

.arc-pg .enroll-text p {
    font-size: 17px;
    line-height: 1.7;
    color: #2a4a6b;
    margin-bottom: 16px
}

.arc-pg .enroll-form {
    flex: 0 0 400px;
    background: #fff;
    border-radius: 30px;
    padding: 32px;
    box-shadow: 0 6px 25px -1px #013c721a;
    display: flex;
    flex-direction: column;
    gap: 16px
}

.arc-pg .enroll-form h3 {
    font-size: 21px;
    line-height: 1.3;
    font-weight: 700;
    color: #013C72;
    text-align: center
}

.arc-pg .field-grp {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.arc-pg .field-grp label {
    font-size: 15px;
    line-height: 1.3;
    color: #013C72;
    font-weight: 600
}

.arc-pg .field-grp input,
.arc-pg .field-grp select,
.arc-pg .field-grp textarea {
    width: 100%;
    padding: 8px 16px;
    border-radius: 2px;
    border: 1px solid #013c7233 !important;
    background: #F6F8F8;
    font-size: 15px;
    line-height: 1.5;
    color: #013C72;
    outline: none;
    transition: border-color .1s ease-out;
    box-sizing: border-box
}

.arc-pg .field-grp input::placeholder,
.arc-pg .field-grp textarea::placeholder {
    color: #013c7259
}

.arc-pg .field-grp input:focus,
.arc-pg .field-grp select:focus,
.arc-pg .field-grp textarea:focus {
    border-color: #3fe9d3cc !important
}

.arc-pg .field-grp textarea {
    resize: vertical;
    min-height: 96px
}

.arc-pg .form-btn {
    width: 100%;
    padding: 16px 32px;
    border-radius: 46px;
    border: none;
    background: #013C72;
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: background .1s ease-out
}

.arc-pg .form-btn:hover {
    background: linear-gradient(to top, #3FE9D3, #013C72)
}

.arc-pg .form-btn:active {
    box-shadow: inset 0 2px 8px #013c7233
}

.arc-pg .about-strip {
    background: #fff;
    padding: 64px 32px
}

.arc-pg .about-inner {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    gap: 64px;
    align-items: center
}

.arc-pg .about-text {
    flex: 1
}

.arc-pg .about-text h2 {
    font-size: 37px;
    line-height: 1.3;
    font-weight: 700;
    background: linear-gradient(to top, #013C72, #3FE9D3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    text-align: center
}

.arc-pg .about-text p {
    font-size: 17px;
    line-height: 1.7;
    color: #2a4a6b;
    margin-bottom: 16px
}

.arc-pg .about-text strong {
    color: #3FE9D3;
    font-weight: 700
}

.arc-pg .about-stats {
    flex: 0 0 320px;
    display: flex;
    flex-direction: column;
    gap: 16px
}

.arc-pg .stat-row {
    background: #F6F8F8;
    border-radius: 30px;
    padding: 16px 32px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px
}

.arc-pg .stat-num {
    font-size: 37px;
    line-height: 1.1;
    font-weight: 800;
    color: #013C72;
    flex-shrink: 0
}

.arc-pg .stat-label {
    font-size: 15px;
    line-height: 1.5;
    color: #3a5068
}

.arc-pg .icon-rot {
    display: inline-flex;
    cursor: pointer;
    transition: transform .12s ease-out
}

.arc-pg .icon-rot:active {
    transform: rotate(180deg);
    transition: transform .08s linear
}

@media (max-width: 900px) {
    .arc-pg .top-inner {
        flex-direction: column;
        gap: 32px
    }

    .arc-pg .top-img-col {
        flex: none;
        width: 100%
    }

    .arc-pg .top-img-wrap {
        width: 100%;
        height: 220px
    }

    .arc-pg .top-h1 {
        font-size: 37px
    }

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

    .arc-pg .featured-inner {
        grid-template-columns: 1fr 1fr
    }

    .arc-pg .steps-inner {
        flex-direction: column;
        gap: 32px
    }

    .arc-pg .steps-left {
        flex: none
    }

    .arc-pg .enroll-inner {
        flex-direction: column;
        gap: 32px
    }

    .arc-pg .enroll-form {
        flex: none;
        width: 100%
    }

    .arc-pg .about-inner {
        flex-direction: column;
        gap: 32px
    }

    .arc-pg .about-stats {
        flex: none;
        width: 100%
    }
}

@media (max-width: 600px) {
    .arc-pg .posts-grid {
        grid-template-columns: 1fr
    }

    .arc-pg .featured-inner {
        grid-template-columns: 1fr
    }

    .arc-pg .top-band,
    .arc-pg .posts-area,
    .arc-pg .featured-strip,
    .arc-pg .steps-area,
    .arc-pg .enroll-strip,
    .arc-pg .about-strip {
        padding-left: 16px;
        padding-right: 16px
    }
}

.successpage {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 96px 32px;
    background: #F6F8F8
}

.successpage .card {
    background: #fff;
    border-radius: 46px;
    box-shadow: 0 6px 25px -1px #013c721a;
    padding: 64px;
    max-width: 560px;
    width: 100%;
    text-align: center
}

.successpage .card .icon-wrap {
    width: 72px;
    height: 72px;
    border-radius: 30px;
    background: linear-gradient(to top, #3FE9D3, #fff);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px
}

.successpage .card .icon-wrap svg {
    display: block
}

.successpage .card .heading {
    font-size: 37px;
    line-height: 1.1;
    font-weight: 700;
    background: linear-gradient(to top, #013C72, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 16px
}

.successpage .card .subtext {
    font-size: 17px;
    line-height: 1.5;
    color: #2a4a6b;
    margin: 0 0 32px
}

.successpage .card .subtext strong {
    color: #013C72;
    font-weight: 600
}

.successpage .card .back-btn {
    display: inline-block;
    background: #013C72;
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.3;
    padding: 16px 32px;
    border-radius: 30px;
    text-decoration: none;
    transition: background .12s ease-out, box-shadow .1s ease-out;
    box-shadow: 0 1px 5px -1px #013c720d
}

.successpage .card .back-btn:hover {
    background: linear-gradient(to top, #013C72, #025aaa);
    box-shadow: 0 6px 25px -1px #013c721a
}

.successpage .card .back-btn:focus {
    outline: 2px solid #3FE9D3;
    outline-offset: 3px
}

.successpage .card .back-btn:active {
    box-shadow: inset 0 2px 6px #013c722e
}

.successpage .card .divider {
    width: 48px;
    height: 2px;
    background: #3FE9D3;
    border-radius: 2px;
    margin: 32px auto
}

.successpage .card .note {
    font-size: 15px;
    line-height: 1.5;
    color: #4a6680;
    margin: 0
}

@media (max-width: 600px) {
    .successpage {
        padding: 64px 16px
    }

    .successpage .card {
        padding: 32px 16px;
        border-radius: 30px
    }

    .successpage .card .heading {
        font-size: 27px
    }
}