@import "https://cdn.jsdelivr.net/npm/@fontsource/inter@latest/400.css";
@import "https://cdn.jsdelivr.net/npm/@fontsource/inter@latest/400-italic.css";
@import "https://cdn.jsdelivr.net/npm/@fontsource/inter@latest/500.css";
@import "https://cdn.jsdelivr.net/npm/@fontsource/inter@latest/500-italic.css";
@import "https://cdn.jsdelivr.net/npm/@fontsource/inter@latest/700.css";
@import "https://cdn.jsdelivr.net/npm/@fontsource/inter@latest/700-italic.css";
@import "https://cdn.jsdelivr.net/npm/@fontsource/red-hat-display@latest/400.css";
@import "https://cdn.jsdelivr.net/npm/@fontsource/red-hat-display@latest/400-italic.css";
@import "https://cdn.jsdelivr.net/npm/@fontsource/red-hat-display@latest/500.css";
@import "https://cdn.jsdelivr.net/npm/@fontsource/red-hat-display@latest/500-italic.css";
@import "https://cdn.jsdelivr.net/npm/@fontsource/red-hat-display@latest/700.css";
@import "https://cdn.jsdelivr.net/npm/@fontsource/red-hat-display@latest/700-italic.css";

html {
    box-sizing: border-box;
    font-size: 100%;
    scroll-behavior: smooth
}

*,
::before,
::after {
    box-sizing: inherit
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif
}

html,
body {
    overflow-x: clip
}

.pg-hd {
    position: relative;
    background: #FFFFFE;
    border-bottom: 2px solid #0544A6;
    box-shadow: 0 4px 28px 0 #0544a61c
}

.hd-top {
    background: linear-gradient(135deg, #0544A6 0%, #1a3a8a 60%, #FA48F3 100%);
    padding: 32px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px
}

.hd-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px
}

.logo-ring {
    width: 80px;
    height: 80px;
    border-radius: 44px;
    background: #FFFFFE;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 3px #FA48F3, 0 0 0 6px #FFFFFE, 0 3px 6px 0 #fa48f314 0 4px 28px 0 #fa48f31c;
    flex-shrink: 0
}

.logo-ring img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    display: block;
    opacity: 0;
    transition: opacity 700ms cubic-bezier(0.34, 1.56, 0.64, 1)
}

.logo-ring img.loaded {
    opacity: 1
}

.brand-id {
    text-align: center
}

.brand-nm {
    font-family: 'Red Hat Display', sans-serif;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: .02em;
    color: #FFFFFE;
    margin: 0;
    display: block
}

.brand-tag {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: .01em;
    color: #fffffed1;
    display: block;
    margin-top: 4px
}

.hd-region {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fffffe1f;
    border: 1px solid #fffffe47;
    border-radius: 6px;
    padding: 8px 16px
}

.hd-region i {
    color: #FA48F3;
    font-size: 15px
}

.hd-region-txt {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: .01em;
    color: #FFFFFE
}

.hd-nav-bar {
    background: #FFFFFE;
    border-top: 3px solid #FA48F3;
    padding: 0 16px;
    display: flex;
    justify-content: center
}

.hd-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 0;
    max-width: 1024px;
    width: 100%;
    list-style: none;
    margin: 0;
    padding: 0
}

.hd-nav li {
    display: flex
}

.hd-nav li a {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: .01em;
    color: #0544A6;
    text-decoration: none;
    padding: 16px;
    display: flex;
    align-items: center;
    position: relative;
    transition: color 600ms cubic-bezier(0.34, 1.56, 0.64, 1);
    white-space: nowrap
}

.hd-nav li a::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 16px;
    width: 0;
    height: 2px;
    background: #FA48F3;
    transition: width 700ms cubic-bezier(0.34, 1.56, 0.64, 1)
}

.hd-nav li a:hover {
    color: #FA48F3
}

.hd-nav li a:hover::after {
    width: calc(100% - 32px)
}

.hd-nav li a:focus {
    background: #fa48f314;
    outline: 2px solid #FA48F3;
    outline-offset: -2px;
    border-radius: 6px
}

.hd-nav li a.active {
    color: #FA48F3;
    font-weight: 700
}

.hd-nav li a.active::after {
    width: calc(100% - 32px)
}

@media (max-width: 640px) {
    .hd-top {
        padding: 32px 16px;
        gap: 16px
    }

    .hd-nav li a {
        padding: 12px;
        font-size: 15px
    }

    .hd-nav li a::after {
        left: 12px
    }

    .hd-nav li a:hover::after,
    .hd-nav li a.active::after {
        width: calc(100% - 24px)
    }

    .brand-nm {
        font-size: 30px
    }
}

@media (min-width: 1024px) {
    .hd-top {
        flex-direction: row;
        justify-content: center;
        gap: 32px;
        padding: 32px 64px
    }

    .hd-brand {
        flex-direction: row;
        gap: 16px
    }

    .brand-id {
        text-align: left
    }
}

.pg-ft {
    background: linear-gradient(180deg, #0544A6 0%, #032d7a 100%);
    padding: 64px 16px 32px
}

.ft-body {
    max-width: 1024px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px
}

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

.ft-logo-ring {
    width: 80px;
    height: 80px;
    border-radius: 44px;
    background: #FFFFFE;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 3px #fa48f399 0 0 0 6px #fffffe26 0 10px 48px 0 #fa48f31a;
    flex-shrink: 0
}

.ft-logo-ring img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    display: block;
    opacity: 0;
    transition: opacity 700ms cubic-bezier(0.34, 1.56, 0.64, 1)
}

.ft-logo-ring img.loaded {
    opacity: 1
}

.ft-nm {
    font-family: 'Red Hat Display', sans-serif;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: .02em;
    color: #FFFFFE;
    text-align: center
}

.ft-spec {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: .01em;
    color: #fffffeb8;
    text-align: center;
    max-width: 480px
}

.ft-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px
}

.ft-contact-item {
    display: flex;
    align-items: center;
    gap: 8px
}

.ft-contact-item i {
    color: #FA48F3;
    font-size: 15px;
    width: 16px;
    text-align: center
}

.ft-contact-item a,
.ft-contact-item span {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: .01em;
    color: #fffffed9;
    text-decoration: none;
    transition: color 600ms cubic-bezier(0.34, 1.56, 0.64, 1)
}

.ft-contact-item a:hover {
    color: #FA48F3
}

.ft-contact-item a:focus {
    background: #fa48f326;
    outline: 2px solid #FA48F3;
    outline-offset: 2px;
    border-radius: 6px
}

.ft-divider {
    width: 100%;
    height: 1px;
    background: #fffffe26;
    border: none;
    margin: 0
}

.ft-nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 32px;
    list-style: none;
    margin: 0;
    padding: 0
}

.ft-nav-links li a {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: .01em;
    color: #fffffeb8;
    text-decoration: none;
    position: relative;
    transition: color 600ms cubic-bezier(0.34, 1.56, 0.64, 1)
}

.ft-nav-links li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #FA48F3;
    transition: width 700ms cubic-bezier(0.34, 1.56, 0.64, 1)
}

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

.ft-nav-links li a:hover::after {
    width: 100%
}

.ft-nav-links li a:focus {
    background: #fa48f326;
    outline: 2px solid #FA48F3;
    outline-offset: 2px;
    border-radius: 6px
}

.ft-copy {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: .01em;
    color: #fffffe73;
    text-align: center
}

@media (min-width: 640px) {
    .ft-contact {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px
    }
}

.text-doc {
    max-width: 1024px;
    margin: 0 auto;
    padding: 64px 32px
}

.text-doc h1 {
    font-size: 58px;
    line-height: 1.1;
    letter-spacing: .01em;
    color: #0544A6;
    margin-bottom: 32px;
    margin-top: 0
}

.text-doc h2 {
    font-size: 42px;
    line-height: 1.3;
    letter-spacing: .01em;
    color: #0544A6;
    margin-top: 64px;
    margin-bottom: 16px
}

.text-doc h3 {
    font-size: 30px;
    line-height: 1.3;
    letter-spacing: .015em;
    color: #0544A6;
    margin-top: 32px;
    margin-bottom: 16px
}

.text-doc h4 {
    font-size: 15px;
    line-height: 1.5;
    letter-spacing: .02em;
    color: #0544A6;
    text-transform: uppercase;
    margin-top: 32px;
    margin-bottom: 8px
}

.text-doc h5 {
    font-size: 15px;
    line-height: 1.5;
    letter-spacing: .02em;
    color: #0544A6;
    margin-top: 16px;
    margin-bottom: 8px
}

.text-doc h6 {
    font-size: 15px;
    line-height: 1.7;
    letter-spacing: .02em;
    color: #0544A6;
    margin-top: 16px;
    margin-bottom: 8px
}

.text-doc p {
    font-size: 15px;
    line-height: 1.7;
    letter-spacing: .01em;
    color: #111827;
    margin-top: 0;
    margin-bottom: 16px
}

.text-doc ul,
.text-doc ol {
    margin-top: 0;
    margin-bottom: 16px;
    padding-left: 32px
}

.text-doc ul {
    list-style: none;
    padding-left: 0
}

.text-doc ul li {
    padding-left: 16px;
    position: relative
}

.text-doc ul li::before {
    content: "";
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #FA48F3;
    position: absolute;
    left: 0;
    top: 9px
}

.text-doc ol {
    list-style: decimal
}

.text-doc li {
    font-size: 15px;
    line-height: 1.7;
    letter-spacing: .01em;
    color: #111827;
    margin-bottom: 8px
}

.text-doc ul ul,
.text-doc ol ol,
.text-doc ul ol,
.text-doc ol ul {
    margin-top: 8px;
    margin-bottom: 4px
}

.text-doc em,
.text-doc i {
    font-style: italic;
    color: #0544A6
}

.text-doc hr {
    border: none;
    border-top: 2px solid #FA48F3;
    opacity: .18;
    margin-top: 64px;
    margin-bottom: 64px;
    border-radius: 6px
}

@media (max-width: 1024px) {
    .text-doc {
        padding: 64px 32px
    }

    .text-doc h1 {
        font-size: 42px
    }

    .text-doc h2 {
        font-size: 30px
    }

    .text-doc h3 {
        font-size: 30px
    }
}

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

    .text-doc h1 {
        font-size: 30px;
        line-height: 1.3
    }

    .text-doc h2 {
        font-size: 30px;
        margin-top: 32px
    }

    .text-doc h3 {
        font-size: 15px
    }

    .text-doc hr {
        margin-top: 32px;
        margin-bottom: 32px
    }
}

.cons {
    background: #FFFFFE;
    overflow-x: clip
}

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

.cons .t-blk {
    padding: 96px 0 64px;
    position: relative
}

.cons .t-blk .bg-grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0
}

.cons .t-blk .bg-grid svg {
    width: 100%;
    height: 100%;
    opacity: .045
}

.cons .t-blk .pg-wrap {
    position: relative;
    z-index: 1
}

.cons .t-mosaic {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start
}

.cons .t-txt {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.cons .t-label {
    display: inline-block;
    border: 2px solid #0544A6;
    color: #0544A6;
    font-size: 15px;
    line-height: 1.3;
    letter-spacing: .02em;
    padding: 4px 16px;
    border-radius: 6px;
    width: fit-content
}

.cons .t-h1 {
    font-size: 58px;
    line-height: 1.1;
    letter-spacing: .01em;
    color: #0d1a2e;
    margin: 0
}

.cons .t-h1 .cnt-num {
    display: inline-block;
    color: #FA48F3;
    font-size: 58px;
    line-height: 1.1;
    letter-spacing: .01em;
    border-bottom: 3px solid #FA48F3;
    padding-bottom: 2px
}

.cons .t-sub {
    font-size: 15px;
    line-height: 1.7;
    color: #2a3a52;
    letter-spacing: .01em;
    max-width: 420px
}

.cons .t-imgs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 8px
}

.cons .t-imgs .img-a {
    grid-column: 1 / 3;
    grid-row: 1;
    border-radius: 10px;
    overflow: hidden;
    height: 200px
}

.cons .t-imgs .img-b {
    grid-column: 1 / 2;
    grid-row: 2;
    border-radius: 10px;
    overflow: hidden;
    height: 140px
}

.cons .t-imgs .img-stat {
    grid-column: 2 / 3;
    grid-row: 2;
    border-radius: 10px;
    background: #0544A6;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 140px;
    gap: 4px;
    box-shadow: 0 4px 28px 0 #0544a61c
}

.cons .t-imgs .img-stat .stat-num {
    font-size: 42px;
    line-height: 1.1;
    color: #FFFFFE;
    letter-spacing: .01em
}

.cons .t-imgs .img-stat .stat-lbl {
    font-size: 15px;
    line-height: 1.3;
    color: #fffffecc;
    letter-spacing: .02em;
    text-align: center;
    padding: 0 8px
}

.cons .t-imgs img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(100%);
    opacity: 0;
    transition: opacity 700ms cubic-bezier(0.34, 1.56, 0.64, 1)
}

.cons .t-imgs img.loaded {
    opacity: 1
}

.cons .dec-geo {
    position: absolute;
    top: 32px;
    right: -32px;
    width: 180px;
    height: 180px;
    pointer-events: none;
    overflow: hidden;
    z-index: 0
}

.cons .dec-geo svg {
    animation: rot-slow 18s linear infinite;
    transform-origin: center
}

@keyframes rot-slow {
    from {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(360deg)
    }
}

.cons .svc-blk {
    padding: 64px 0;
    background: #f4f6fb;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 40px), 0 100%);
    padding-bottom: 104px
}

.cons .svc-blk .svc-grid {
    display: grid;
    grid-template-columns: 5fr 3fr;
    gap: 64px;
    align-items: start
}

.cons .svc-head {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px
}

.cons .svc-h2 {
    font-size: 42px;
    line-height: 1.1;
    letter-spacing: .01em;
    color: #0d1a2e;
    margin: 0;
    position: relative;
    display: inline-block
}

.cons .svc-h2::after {
    content: '';
    display: block;
    height: 3px;
    width: 0;
    background: linear-gradient(90deg, #FA48F3 50%, #0544A6 50%);
    border-radius: 6px;
    margin-top: 8px;
    transition: width 800ms cubic-bezier(0.34, 1.56, 0.64, 1)
}

.cons .svc-h2.in-view::after {
    width: 100%
}

.cons .svc-lead {
    font-size: 15px;
    line-height: 1.7;
    color: #2a3a52;
    letter-spacing: .01em
}

.cons .svc-items {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.cons .svc-item {
    background: #FFFFFE;
    border-radius: 10px;
    padding: 16px;
    border: 1.5px solid #0544a61f;
    border-left: 4px solid #0544A6;
    box-shadow: 0 3px 6px 0 #0544a614;
    transition: box-shadow 700ms cubic-bezier(0.34, 1.56, 0.64, 1), border-color 700ms cubic-bezier(0.34, 1.56, 0.64, 1)
}

.cons .svc-item:hover {
    box-shadow: 0 4px 28px 0 #0544a61c;
    border-color: #FA48F3;
    border-left-color: #FA48F3
}

.cons .svc-item-h {
    font-size: 15px;
    line-height: 1.3;
    color: #0d1a2e;
    letter-spacing: .01em;
    font-weight: 700;
    margin: 0 0 4px
}

.cons .svc-item-p {
    font-size: 15px;
    line-height: 1.5;
    color: #3a4d68;
    letter-spacing: .01em;
    margin: 0
}

.cons .svc-aside {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.cons .aside-card {
    background: #0544A6;
    border-radius: 16px;
    padding: 32px;
    color: #FFFFFE;
    box-shadow: 0 10px 48px 0 #0544a61a;
    display: flex;
    flex-direction: column;
    gap: 16px
}

.cons .aside-card .ac-h {
    font-size: 30px;
    line-height: 1.3;
    letter-spacing: .01em;
    margin: 0
}

.cons .aside-card .ac-p {
    font-size: 15px;
    line-height: 1.7;
    letter-spacing: .01em;
    margin: 0;
    opacity: .88
}

.cons .aside-card .ac-link {
    display: inline-block;
    color: #FA48F3;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .02em;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: border-color 600ms cubic-bezier(0.34, 1.56, 0.64, 1);
    width: fit-content
}

.cons .aside-card .ac-link:hover,
.cons .aside-card .ac-link:focus {
    border-color: #FA48F3;
    outline: none
}

.cons .aside-tag {
    background: #FFFFFE;
    border-radius: 10px;
    padding: 16px;
    border: 1.5px solid #0544a626;
    box-shadow: 0 3px 6px 0 #0544a614;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.cons .aside-tag .at-lbl {
    font-size: 15px;
    line-height: 1.3;
    color: #0544A6;
    font-weight: 700;
    letter-spacing: .02em
}

.cons .aside-tag .at-val {
    font-size: 30px;
    line-height: 1.1;
    color: #0d1a2e;
    letter-spacing: .01em
}

.cons .faq-blk {
    padding: 96px 0 64px;
    background: #FFFFFE
}

.cons .faq-layout {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 64px;
    align-items: start
}

.cons .faq-lft {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: sticky;
    top: 32px
}

.cons .faq-h2 {
    font-size: 42px;
    line-height: 1.1;
    letter-spacing: .01em;
    color: #0d1a2e;
    margin: 0
}

.cons .faq-lft-p {
    font-size: 15px;
    line-height: 1.7;
    color: #2a3a52;
    letter-spacing: .01em;
    margin: 0
}

.cons .faq-contact {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.cons .faq-contact a {
    color: #0544A6;
    font-size: 15px;
    line-height: 1.5;
    letter-spacing: .01em;
    text-decoration: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid transparent;
    transition: border-color 650ms cubic-bezier(0.34, 1.56, 0.64, 1);
    width: fit-content
}

.cons .faq-contact a:hover,
.cons .faq-contact a:focus {
    border-color: #0544A6;
    outline: none
}

.cons .faq-list {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.cons .faq-item {
    border-radius: 10px;
    border: 1.5px solid #0544a621;
    overflow: hidden;
    transition: box-shadow 700ms cubic-bezier(0.34, 1.56, 0.64, 1)
}

.cons .faq-item:hover {
    box-shadow: 0 4px 28px 0 #0544a61c
}

.cons .faq-item details {
    background: #FFFFFE
}

.cons .faq-item summary {
    font-size: 15px;
    line-height: 1.5;
    color: #0d1a2e;
    font-weight: 700;
    letter-spacing: .01em;
    padding: 16px;
    cursor: pointer;
    list-style: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    user-select: none
}

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

.cons .faq-item summary .faq-ico {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border: 2px solid #0544A6;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 600ms cubic-bezier(0.34, 1.56, 0.64, 1), transform 600ms cubic-bezier(0.34, 1.56, 0.64, 1)
}

.cons .faq-item details[open] summary .faq-ico {
    background: #0544A6;
    transform: rotate(45deg)
}

.cons .faq-item summary .faq-ico svg {
    width: 10px;
    height: 10px
}

.cons .faq-item details[open] summary .faq-ico svg path {
    stroke: #FFFFFE
}

.cons .faq-ans {
    font-size: 15px;
    line-height: 1.7;
    color: #3a4d68;
    letter-spacing: .01em;
    padding: 0 16px 16px;
    margin: 0
}

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

    .cons .svc-blk .svc-grid {
        grid-template-columns: 1fr;
        gap: 32px
    }

    .cons .faq-layout {
        grid-template-columns: 1fr;
        gap: 32px
    }

    .cons .faq-lft {
        position: static
    }
}

@media (max-width: 640px) {
    .cons .t-h1 {
        font-size: 42px
    }

    .cons .t-h1 .cnt-num {
        font-size: 42px
    }

    .cons .svc-h2 {
        font-size: 30px
    }

    .cons .faq-h2 {
        font-size: 30px
    }

    .cons .t-imgs .img-a {
        height: 160px
    }

    .cons .t-imgs .img-b,
    .cons .t-imgs .img-stat {
        height: 110px
    }

    .cons .aside-card {
        padding: 16px
    }

    .cons .aside-card .ac-h {
        font-size: 15px
    }
}

.ct-us {
    background: #FFFFFE;
    padding: 0;
    overflow-x: clip
}

.ct-us .fade-in {
    opacity: 0;
    animation: fadeUp .8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards
}

.ct-us .fade-in:nth-child(1) {
    animation-delay: .1s
}

.ct-us .fade-in:nth-child(2) {
    animation-delay: .25s
}

.ct-us .fade-in:nth-child(3) {
    animation-delay: .4s
}

.ct-us .fade-in:nth-child(4) {
    animation-delay: .55s
}

.ct-us .fade-in:nth-child(5) {
    animation-delay: .7s
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(18px)
    }

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

.ct-us .pg-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 540px;
    max-width: 1024px;
    margin: 0 auto;
    padding: 96px 32px 64px;
    gap: 64px;
    align-items: start
}

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

.ct-us .pg-bracket {
    position: absolute;
    top: -8px;
    left: -16px;
    width: 28px;
    height: 28px;
    border-top: 2px solid #FA48F3;
    border-left: 2px solid #FA48F3;
    border-radius: 6px 0 0 0;
    pointer-events: none
}

.ct-us .pg-bracket-br {
    position: absolute;
    bottom: -8px;
    right: -8px;
    width: 28px;
    height: 28px;
    border-bottom: 2px solid #0544A6;
    border-right: 2px solid #0544A6;
    border-radius: 0 0 6px 0;
    pointer-events: none
}

.ct-us .pg-eyebrow {
    font-size: 15px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #0544A6;
    line-height: 1.3;
    margin-bottom: 16px;
    border: 1.5px solid #0544A6;
    display: inline-block;
    padding: 4px 16px;
    border-radius: 6px
}

.ct-us .pg-h1 {
    font-size: 42px;
    line-height: 1.1;
    letter-spacing: .01em;
    color: #111318;
    margin-bottom: 32px
}

.ct-us .pg-h1 .grad-word {
    background: linear-gradient(97deg, #FA48F3 50%, #0544A6 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.ct-us .pg-desc-lg {
    font-size: 15px;
    line-height: 1.7;
    color: #222533;
    margin-bottom: 16px;
    letter-spacing: .01em
}

.ct-us .pg-desc {
    font-size: 15px;
    line-height: 1.5;
    color: #3a3d4a;
    margin-bottom: 32px;
    letter-spacing: .01em
}

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

.ct-us .contact-list li {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    font-size: 15px;
    line-height: 1.5;
    color: #222533;
    letter-spacing: .01em
}

.ct-us .c-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    min-width: 36px;
    background: #FFFFFE;
    border: 1.5px solid #FA48F3;
    border-radius: 10px;
    color: #FA48F3;
    font-size: 15px;
    box-shadow: 0 3px 6px 0 #fa48f314
}

.ct-us .c-link {
    color: #0544A6;
    text-decoration: none;
    border-bottom: 1.5px solid transparent;
    transition: border-color .7s cubic-bezier(0.34, 1.56, 0.64, 1), color .7s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.ct-us .c-link:hover {
    border-bottom-color: #FA48F3;
    color: #FA48F3
}

.ct-us .pg-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #FA48F3 40%, #0544A6 60%, transparent 100%);
    margin: 0;
    border: none
}

.ct-us .form-zone {
    background: #FFFFFE;
    border: 1.5px solid #e8e4f0;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 28px 0 #0544a61c;
    position: relative
}

.ct-us .form-zone .pg-bracket {
    top: -10px;
    left: -10px
}

.ct-us .form-zone .pg-bracket-br {
    bottom: -10px;
    right: -10px
}

.ct-us .form-ttl {
    font-size: 30px;
    line-height: 1.1;
    letter-spacing: .01em;
    color: #111318;
    margin-bottom: 8px
}

.ct-us .form-sub {
    font-size: 15px;
    line-height: 1.5;
    color: #3a3d4a;
    margin-bottom: 32px;
    letter-spacing: .01em
}

.ct-us .f-row {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 16px
}

.ct-us .f-label {
    font-size: 15px;
    color: #222533;
    letter-spacing: .01em;
    line-height: 1.3
}

.ct-us .f-input {
    width: 100%;
    padding: 8px 16px;
    font-size: 15px;
    line-height: 1.5;
    color: #111318;
    background: #FFFFFE;
    border: 2px solid #ccc8d8;
    border-radius: 10px;
    outline: none;
    box-sizing: border-box;
    transition: border-color .65s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow .65s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: inset 0 2px 4px 0 #0544a60d
}

.ct-us .f-input::placeholder {
    color: #9095a8;
    font-style: italic
}

.ct-us .f-input:focus {
    border-color: #FA48F3;
    box-shadow: inset 0 2px 6px 0 #fa48f314 0 3px 6px 0 #fa48f314
}

.ct-us .checks-grp {
    margin-bottom: 16px
}

.ct-us .checks-lbl {
    font-size: 15px;
    color: #222533;
    letter-spacing: .01em;
    margin-bottom: 8px;
    display: block
}

.ct-us .checks-list {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.ct-us .chk-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    cursor: pointer
}

.ct-us .chk-row input[type="checkbox"] {
    width: 18px;
    height: 18px;
    min-width: 18px;
    accent-color: #FA48F3;
    cursor: pointer;
    border-radius: 6px
}

.ct-us .chk-txt {
    font-size: 15px;
    color: #3a3d4a;
    line-height: 1.3;
    letter-spacing: .01em
}

.ct-us .priv-row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 16px;
    padding: 16px;
    background: #f5f3fa;
    border-radius: 10px;
    border: 1.5px solid #e0d9f0
}

.ct-us .priv-row input[type="checkbox"] {
    width: 18px;
    height: 18px;
    min-width: 18px;
    accent-color: #0544A6;
    cursor: pointer;
    margin-top: 2px
}

.ct-us .priv-txt {
    font-size: 15px;
    color: #3a3d4a;
    line-height: 1.5;
    letter-spacing: .01em
}

.ct-us .priv-txt a {
    color: #0544A6;
    text-decoration: none;
    border-bottom: 1.5px solid #0544A6;
    transition: color .7s cubic-bezier(0.34, 1.56, 0.64, 1), border-color .7s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.ct-us .priv-txt a:hover {
    color: #FA48F3;
    border-bottom-color: #FA48F3
}

.ct-us .btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    font-size: 15px;
    letter-spacing: .02em;
    color: #0544A6;
    background: #FFFFFE;
    border: 2.5px solid #0544A6;
    border-radius: 44px;
    cursor: pointer;
    width: 100%;
    transition: background .75s cubic-bezier(0.68, -0.55, 0.27, 1.55), color .75s cubic-bezier(0.68, -0.55, 0.27, 1.55), border-color .75s cubic-bezier(0.68, -0.55, 0.27, 1.55), box-shadow .75s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    box-shadow: 0 3px 6px 0 #0544a614
}

.ct-us .btn-submit:hover {
    background: #0544A6;
    color: #FFFFFE;
    border-color: #0544A6;
    box-shadow: 0 10px 48px 0 #0544a61a
}

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

.ct-us .btn-submit:active {
    background: #FA48F3;
    border-color: #FA48F3;
    color: #FFFFFE
}

.ct-us .diag-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    border-radius: 16px
}

.ct-us .diag-line svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.ct-us .info-strip {
    background: linear-gradient(113deg, #0544A6 50%, #FA48F3 50%);
    padding: 64px 32px
}

.ct-us .info-strip-inner {
    max-width: 1024px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
    align-items: start
}

.ct-us .stat-card {
    padding: 32px;
    background: #fffffe14;
    border-radius: 16px;
    border: 1.5px solid #fffffe2e;
    box-shadow: 0 4px 28px 0 #fa48f31c;
    position: relative
}

.ct-us .stat-num {
    font-size: 58px;
    line-height: 1.1;
    letter-spacing: .01em;
    color: #FFFFFE;
    font-weight: 700;
    display: block;
    margin-bottom: 8px
}

.ct-us .stat-desc {
    font-size: 15px;
    line-height: 1.5;
    color: #fffffed9;
    letter-spacing: .01em
}

.ct-us .prog-seg {
    display: flex;
    flex-direction: row;
    gap: 4px;
    margin-top: 16px
}

.ct-us .seg {
    height: 6px;
    border-radius: 6px;
    flex: 1;
    background: #fffffe33;
    transition: background .85s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.ct-us .seg.active {
    background: #FA48F3
}

.ct-us .seg.done {
    background: #fffffeb3
}

.ct-us .right-align {
    text-align: right
}

@media (max-width: 1024px) {
    .ct-us .pg-split {
        grid-template-columns: 1fr;
        padding: 64px 32px 32px;
        gap: 32px
    }

    .ct-us .info-strip-inner {
        grid-template-columns: 1fr 1fr
    }
}

@media (max-width: 640px) {
    .ct-us .pg-split {
        padding: 32px 16px;
        gap: 32px
    }

    .ct-us .pg-h1 {
        font-size: 30px
    }

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

    .ct-us .info-strip {
        padding: 32px 16px
    }

    .ct-us .form-zone {
        padding: 16px
    }

    .ct-us .stat-num {
        font-size: 42px
    }
}

.cs-pg {
    background: #FFFFFE;
    overflow-x: clip
}

.cs-pg .pg-cap {
    text-align: center;
    padding: 96px 32px 64px;
    position: relative
}

.cs-pg .pg-cap .img-wrap {
    display: inline-block;
    position: relative;
    margin-bottom: 32px
}

.cs-pg .pg-cap .img-wrap img {
    width: 720px;
    max-width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
    opacity: 0;
    transition: opacity 700ms cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 4px 28px 0 #0544a61c;
    filter: blur(0px);
    display: block
}

.cs-pg .pg-cap .img-wrap img.loaded {
    opacity: 1
}

.cs-pg .pg-cap .img-wrap .img-blur {
    position: absolute;
    inset: 0;
    border-radius: 16px;
    background: linear-gradient(180deg, transparent 40%, #0544a62e 100%);
    pointer-events: none
}

.cs-pg .pg-cap .img-wrap .dec-shape {
    position: absolute;
    top: -24px;
    left: -24px;
    width: 120px;
    height: 120px;
    background: #FA48F3;
    clip-path: polygon(20% 0%, 80% 0%, 100% 20%, 100% 80%, 80% 100%, 20% 100%, 0% 80%, 0% 20%);
    opacity: .13;
    pointer-events: none;
    z-index: 0
}

.cs-pg .pg-cap .img-wrap {
    z-index: 1
}

.cs-pg .pg-cap .cap-txt {
    max-width: 640px;
    margin: 0 auto
}

.cs-pg .pg-cap .cap-lbl {
    display: inline-block;
    border: 1.5px solid #0544A6;
    border-radius: 6px;
    padding: 4px 16px;
    font-size: 15px;
    line-height: 1.5;
    color: #0544A6;
    letter-spacing: .02em;
    margin-bottom: 16px
}

.cs-pg .pg-cap h1 {
    font-size: 58px;
    line-height: 1.1;
    letter-spacing: .01em;
    color: #111318;
    margin: 0 0 16px;
    position: relative;
    display: inline-block
}

.cs-pg .pg-cap h1::after {
    content: '';
    display: block;
    height: 3px;
    background: linear-gradient(90deg, #FA48F3 50%, #0544A6 50%);
    width: 0;
    margin-top: 8px;
    transition: width 800ms cubic-bezier(0.34, 1.56, 0.64, 1)
}

.cs-pg .pg-cap h1.anim::after {
    width: 100%
}

.cs-pg .pg-cap .cap-desc {
    font-size: 15px;
    line-height: 1.7;
    color: #222533;
    letter-spacing: .01em;
    margin: 0
}

.cs-pg .studies-grid {
    max-width: 1024px;
    margin: 0 auto;
    padding: 64px 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px
}

.cs-pg .study-card {
    background: #FFFFFE;
    border-radius: 16px;
    border: 1.5px solid #e8eaf2;
    box-shadow: 0 3px 6px 0 #0544a614;
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: box-shadow 700ms cubic-bezier(0.34, 1.56, 0.64, 1), transform 700ms cubic-bezier(0.34, 1.56, 0.64, 1);
    opacity: 0;
    transform: translateX(-48px)
}

.cs-pg .study-card.from-right {
    transform: translateX(48px)
}

.cs-pg .study-card.visible {
    opacity: 1;
    transform: translateX(0)
}

.cs-pg .study-card:hover {
    box-shadow: 0 10px 48px 0 #0544a61a;
    transform: translateY(-4px)
}

.cs-pg .study-card .card-tag {
    font-size: 15px;
    line-height: 1.3;
    color: #FA48F3;
    letter-spacing: .02em;
    font-weight: 600;
    margin-bottom: 8px;
    display: block
}

.cs-pg .study-card h2 {
    font-size: 30px;
    line-height: 1.3;
    color: #111318;
    letter-spacing: .01em;
    margin: 0 0 16px;
    position: relative;
    padding-left: 16px;
    border-left: 3px solid #FA48F3;
    border-bottom: 1.5px solid transparent
}

.cs-pg .study-card .card-body {
    font-size: 15px;
    line-height: 1.7;
    color: #333647;
    letter-spacing: .01em;
    margin: 0 0 16px
}

.cs-pg .study-card .card-body.lead {
    font-size: 15px;
    line-height: 1.5;
    color: #111318;
    font-weight: 600;
    margin-bottom: 8px
}

.cs-pg .study-card .metrics {
    display: flex;
    flex-direction: row;
    gap: 16px;
    margin-top: 16px;
    flex-wrap: wrap
}

.cs-pg .study-card .met-item {
    border: 1.5px solid #0544A6;
    border-radius: 10px;
    padding: 8px 16px;
    display: flex;
    flex-direction: column;
    gap: 4px
}

.cs-pg .study-card .met-val {
    font-size: 30px;
    line-height: 1.1;
    color: #0544A6;
    letter-spacing: .01em;
    font-weight: 700
}

.cs-pg .study-card .met-lbl {
    font-size: 15px;
    line-height: 1.3;
    color: #555a72;
    letter-spacing: .01em
}

.cs-pg .study-card .card-noise {
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    pointer-events: none;
    opacity: .06;
    background: radial-gradient(circle at 80% 20%, #FA48F3 0%, #FA48F3 40%, transparent 40%);
    border-radius: 0 16px 0 0
}

.cs-pg .detail-strip {
    background: #0544A6;
    padding: 64px 32px;
    position: relative;
    overflow: hidden
}

.cs-pg .detail-strip::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.18'/%3E%3C/svg%3E");
    pointer-events: none;
    opacity: .22
}

.cs-pg .detail-strip .strip-inner {
    max-width: 1024px;
    margin: 0 auto;
    position: relative;
    z-index: 1
}

.cs-pg .detail-strip h3 {
    font-size: 42px;
    line-height: 1.1;
    color: #FFFFFE;
    letter-spacing: .01em;
    margin: 0 0 32px;
    text-align: center
}

.cs-pg .detail-strip .strip-cols {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px
}

.cs-pg .detail-strip .strip-col {
    background: #fa48f31a;
    border: 1.5px solid #fa48f347;
    border-radius: 16px;
    padding: 32px;
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 750ms cubic-bezier(0.34, 1.56, 0.64, 1), transform 750ms cubic-bezier(0.34, 1.56, 0.64, 1)
}

.cs-pg .detail-strip .strip-col.visible {
    opacity: 1;
    transform: translateY(0)
}

.cs-pg .detail-strip .strip-col h4 {
    font-size: 15px;
    line-height: 1.3;
    color: #FA48F3;
    letter-spacing: .02em;
    font-weight: 700;
    margin: 0 0 8px;
    text-transform: uppercase
}

.cs-pg .detail-strip .strip-col p {
    font-size: 15px;
    line-height: 1.7;
    color: #fffffee0;
    letter-spacing: .01em;
    margin: 0
}

.cs-pg .detail-strip .strip-col .col-num {
    font-size: 42px;
    line-height: 1.1;
    color: #FFFFFE;
    font-weight: 700;
    margin-bottom: 8px;
    display: block
}

.cs-pg .findings {
    max-width: 1024px;
    margin: 0 auto;
    padding: 96px 32px 64px
}

.cs-pg .findings .find-head {
    text-align: right;
    margin-bottom: 64px
}

.cs-pg .findings .find-head h2 {
    font-size: 42px;
    line-height: 1.1;
    color: #111318;
    letter-spacing: .01em;
    margin: 0 0 16px;
    display: inline-block;
    position: relative
}

.cs-pg .findings .find-head h2::before {
    content: '';
    position: absolute;
    left: -16px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #FA48F3 50%, #0544A6 50%);
    border-radius: 6px
}

.cs-pg .findings .find-head p {
    font-size: 15px;
    line-height: 1.5;
    color: #444860;
    margin: 0;
    letter-spacing: .01em
}

.cs-pg .findings .find-list {
    display: flex;
    flex-direction: column;
    gap: 32px
}

.cs-pg .findings .find-row {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 32px;
    align-items: start;
    opacity: 0;
    transform: translateX(48px);
    transition: opacity 800ms cubic-bezier(0.34, 1.56, 0.64, 1), transform 800ms cubic-bezier(0.34, 1.56, 0.64, 1)
}

.cs-pg .findings .find-row.from-left {
    transform: translateX(-48px)
}

.cs-pg .findings .find-row.visible {
    opacity: 1;
    transform: translateX(0)
}

.cs-pg .findings .find-num {
    font-size: 42px;
    line-height: 1.1;
    color: #FA48F3;
    font-weight: 700;
    letter-spacing: .01em;
    text-align: right
}

.cs-pg .findings .find-txt h5 {
    font-size: 15px;
    line-height: 1.3;
    color: #111318;
    font-weight: 700;
    margin: 0 0 8px;
    letter-spacing: .01em
}

.cs-pg .findings .find-txt p {
    font-size: 15px;
    line-height: 1.7;
    color: #333647;
    margin: 0;
    letter-spacing: .01em
}

.cs-pg .findings .find-divider {
    height: 1px;
    background: linear-gradient(90deg, #FA48F3 50%, transparent 50%);
    margin: 0;
    opacity: .22
}

@media (max-width: 1024px) {
    .cs-pg .studies-grid {
        grid-template-columns: 1fr;
        padding: 32px 16px
    }

    .cs-pg .detail-strip .strip-cols {
        grid-template-columns: 1fr;
        gap: 16px
    }

    .cs-pg .findings {
        padding: 64px 16px 32px
    }
}

@media (max-width: 640px) {
    .cs-pg .pg-cap {
        padding: 64px 16px 32px
    }

    .cs-pg .pg-cap h1 {
        font-size: 42px
    }

    .cs-pg .detail-strip h3 {
        font-size: 30px
    }

    .cs-pg .detail-strip {
        padding: 32px 16px
    }

    .cs-pg .findings .find-head h2 {
        font-size: 30px
    }

    .cs-pg .findings .find-row {
        grid-template-columns: 48px 1fr;
        gap: 16px
    }

    .cs-pg .findings .find-num {
        font-size: 30px
    }

    .cs-pg .study-card {
        padding: 16px
    }

    .cs-pg .study-card h2 {
        font-size: 15px
    }

    .cs-pg .study-card .met-val {
        font-size: 15px
    }
}

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

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

.prm .divider-dbl {
    border: none;
    border-top: 1px solid #0544A6;
    margin-bottom: 3px;
    box-shadow: 0 3px 0 0 #0544a62e
}

.prm .dot-border {
    position: relative
}

.prm .dot-border::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle, #FA48F3 1.5px, transparent 1.5px), radial-gradient(circle, #0544A6 1px, transparent 1px), radial-gradient(circle, #FA48F3 2.5px, transparent 2.5px), radial-gradient(circle, #0544A6 1.5px, transparent 1.5px);
    background-size: 28px 28px, 14px 14px, 42px 42px, 20px 20px;
    background-position: 0 0, 7px 7px, 3px 3px, 12px 12px;
    opacity: .07;
    pointer-events: none;
    border-radius: 16px
}

.prm .t-blk {
    padding: 96px 0 64px;
    background: linear-gradient(112deg, #FA48F3 0%, #FA48F3 50%, #FFFFFE 50%);
    position: relative
}

.prm .t-blk .pg-wrap {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 64px
}

.prm .t-img-col {
    flex: 0 0 420px;
    position: relative
}

.prm .t-img-geo {
    width: 420px;
    height: 480px;
    overflow: hidden;
    border-radius: 10px 44px 10px 44px;
    box-shadow: 0 4px 28px 0 #fa48f31c;
    position: relative
}

.prm .t-img-geo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0;
    transition: opacity 700ms cubic-bezier(0.34, 1.56, 0.64, 1)
}

.prm .t-img-geo img.loaded {
    opacity: 1
}

.prm .light-leak {
    position: absolute;
    top: 0;
    left: 0;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #fa48f38c 0%, #fa48f300 60%);
    border-radius: 10px 0 0 0;
    pointer-events: none
}

.prm .bg-num {
    position: absolute;
    bottom: -32px;
    right: -16px;
    font-size: 160px;
    line-height: 1.1;
    font-weight: 900;
    color: #0544A6;
    opacity: .06;
    pointer-events: none;
    user-select: none;
    letter-spacing: -.02em
}

.prm .t-txt-col {
    flex: 1 1 0
}

.prm .t-eyebrow {
    display: inline-block;
    border: 2px solid #0544A6;
    color: #0544A6;
    font-size: 15px;
    line-height: 1.5;
    letter-spacing: .02em;
    padding: 4px 16px;
    border-radius: 6px;
    margin-bottom: 16px
}

.prm .t-h1 {
    font-size: 58px;
    line-height: 1.1;
    letter-spacing: .01em;
    color: #0d0d2b;
    margin: 0 0 16px
}

.prm .t-counter-row {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 32px
}

.prm .t-count-num {
    font-size: 42px;
    line-height: 1.1;
    font-weight: 700;
    color: #FA48F3;
    letter-spacing: .01em
}

.prm .t-count-label {
    font-size: 15px;
    line-height: 1.5;
    color: #0544A6;
    letter-spacing: .02em
}

.prm .t-desc {
    font-size: 15px;
    line-height: 1.7;
    color: #1a2040;
    margin: 0 0 32px;
    max-width: 440px
}

.prm .t-cta {
    display: inline-block;
    border: 3px solid #0544A6;
    color: #0544A6;
    background: transparent;
    font-size: 15px;
    line-height: 1.5;
    letter-spacing: .02em;
    padding: 16px 32px;
    border-radius: 6px;
    text-decoration: none;
    cursor: pointer;
    transition: background 700ms cubic-bezier(0.34, 1.56, 0.64, 1), color 700ms cubic-bezier(0.34, 1.56, 0.64, 1)
}

.prm .t-cta:hover {
    background: #0544A6;
    color: #FFFFFE
}

.prm .sec-ready {
    padding: 64px 0;
    background: #FFFFFE
}

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

.prm .ready-img {
    width: 100%;
    height: 360px;
    border-radius: 16px 6px 16px 6px;
    overflow: hidden;
    box-shadow: 0 3px 6px 0 #0544a614
}

.prm .ready-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0;
    transition: opacity 800ms cubic-bezier(0.34, 1.56, 0.64, 1)
}

.prm .ready-img img.loaded {
    opacity: 1
}

.prm .sec-lbl {
    font-size: 15px;
    line-height: 1.5;
    letter-spacing: .02em;
    color: #FA48F3;
    margin-bottom: 8px;
    display: block
}

.prm .sec-h2 {
    font-size: 42px;
    line-height: 1.3;
    letter-spacing: .01em;
    color: #0d0d2b;
    margin: 0 0 16px;
    position: relative;
    display: inline-block
}

.prm .sec-h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: #FA48F3;
    transition: width 900ms cubic-bezier(0.34, 1.56, 0.64, 1)
}

.prm .sec-h2:hover::after,
.prm .sec-ready:hover .sec-h2::after {
    width: 100%
}

.prm .ready-intro {
    font-size: 15px;
    line-height: 1.7;
    color: #1a2040;
    margin: 16px 0 8px
}

.prm .ready-body {
    font-size: 15px;
    line-height: 1.7;
    color: #2a2a4a;
    margin: 0 0 16px
}

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

.prm .req-list li {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 8px;
    font-size: 15px;
    line-height: 1.5;
    color: #1a2040
}

.prm .req-dot {
    width: 8px;
    height: 8px;
    border-radius: 44px;
    background: #FA48F3;
    flex-shrink: 0;
    margin-top: 6px
}

.prm .sec-nofit {
    padding: 64px 0;
    background: linear-gradient(97deg, #0544A6 0%, #0544A6 50%, #FFFFFE 50%)
}

.prm .sec-nofit .pg-wrap {
    display: flex;
    flex-direction: row;
    gap: 64px;
    align-items: stretch
}

.prm .nofit-left {
    flex: 0 0 380px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 32px 0
}

.prm .nofit-h2 {
    font-size: 42px;
    line-height: 1.3;
    letter-spacing: .01em;
    color: #FFFFFE;
    margin: 0 0 16px;
    position: relative;
    display: inline-block
}

.prm .nofit-h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: #FA48F3;
    transition: width 800ms cubic-bezier(0.68, -0.55, 0.27, 1.55)
}

.prm .sec-nofit:hover .nofit-h2::after {
    width: 100%
}

.prm .nofit-sub {
    font-size: 15px;
    line-height: 1.7;
    color: #fffffed9;
    margin: 0
}

.prm .nofit-right {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 32px 0
}

.prm .nofit-card {
    background: #FFFFFE;
    border-radius: 10px;
    padding: 16px 32px;
    box-shadow: 0 3px 6px 0 #0544a614;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    transition: transform 700ms cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 700ms cubic-bezier(0.34, 1.56, 0.64, 1)
}

.prm .nofit-card:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 48px 0 #0544a61a
}

.prm .nofit-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center
}

.prm .nofit-icon svg {
    display: block
}

.prm .nofit-card-h {
    font-size: 15px;
    line-height: 1.5;
    font-weight: 700;
    color: #0544A6;
    margin: 0 0 4px
}

.prm .nofit-card-p {
    font-size: 15px;
    line-height: 1.5;
    color: #2a2a4a;
    margin: 0
}

.prm .sec-how {
    padding: 96px 0 64px;
    background: #FFFFFE
}

.prm .sec-how .pg-wrap {
    display: flex;
    flex-direction: column;
    gap: 64px
}

.prm .how-top {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
    align-items: start
}

.prm .how-center {
    border: 2px solid #FA48F3;
    border-radius: 16px;
    padding: 32px;
    background: #FFFFFE;
    box-shadow: 0 4px 28px 0 #fa48f31c;
    position: relative
}

.prm .how-outer {
    padding: 32px 16px;
    border-radius: 10px;
    background: #f5f5fb;
    box-shadow: inset 0 2px 6px 0 #0544a614
}

.prm .how-h2 {
    font-size: 30px;
    line-height: 1.3;
    letter-spacing: .01em;
    color: #0d0d2b;
    margin: 0 0 8px;
    position: relative;
    display: inline-block
}

.prm .how-h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 2px;
    background: #0544A6;
    transition: width 850ms cubic-bezier(0.34, 1.56, 0.64, 1)
}

.prm .how-outer:hover .how-h2::after,
.prm .how-center:hover .how-h2::after {
    width: 100%
}

.prm .how-p {
    font-size: 15px;
    line-height: 1.7;
    color: #2a2a4a;
    margin: 8px 0 0
}

.prm .how-center .how-h2 {
    color: #FA48F3
}

.prm .how-center .how-p {
    color: #1a2040
}

.prm .how-imgs {
    display: grid;
    grid-template-columns: 5fr 3fr;
    gap: 32px;
    align-items: start
}

.prm .how-img-main {
    width: 100%;
    height: 300px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 28px 0 #fa48f31c
}

.prm .how-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0;
    transition: opacity 750ms cubic-bezier(0.34, 1.56, 0.64, 1)
}

.prm .how-img-main img.loaded {
    opacity: 1
}

.prm .how-img-side {
    width: 100%;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 6px 0 #0544a614
}

.prm .how-img-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0;
    transition: opacity 850ms cubic-bezier(0.34, 1.56, 0.64, 1)
}

.prm .how-img-side img.loaded {
    opacity: 1
}

.prm .sec-diff {
    padding: 64px 0 96px;
    background: linear-gradient(103deg, #FFFFFE 0%, #FFFFFE 55%, #fa48f317 55%)
}

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

.prm .diff-h2 {
    font-size: 42px;
    line-height: 1.3;
    letter-spacing: .01em;
    color: #0d0d2b;
    margin: 0 0 16px;
    position: relative;
    display: inline-block
}

.prm .diff-h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: #FA48F3;
    transition: width 900ms cubic-bezier(0.68, -0.55, 0.27, 1.55)
}

.prm .sec-diff:hover .diff-h2::after {
    width: 100%
}

.prm .diff-intro {
    font-size: 15px;
    line-height: 1.7;
    color: #1a2040;
    margin: 0 0 8px
}

.prm .diff-body {
    font-size: 15px;
    line-height: 1.7;
    color: #2a2a4a;
    margin: 0 0 32px
}

.prm .diff-accent {
    display: inline-block;
    border: 1.5px solid #0544A6;
    border-radius: 6px;
    padding: 8px 16px;
    font-size: 15px;
    line-height: 1.5;
    color: #0544A6;
    letter-spacing: .02em;
    margin-bottom: 32px
}

.prm .diff-pair {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.prm .diff-item {
    border-left: 3px solid #FA48F3;
    border-top: 1px solid #fa48f333;
    border-radius: 0 6px 6px 0;
    padding: 16px;
    background: #FFFFFE;
    box-shadow: 0 3px 6px 0 #fa48f314;
    transition: transform 700ms cubic-bezier(0.34, 1.56, 0.64, 1)
}

.prm .diff-item:hover {
    transform: scale(1.02)
}

.prm .diff-item-h {
    font-size: 15px;
    line-height: 1.5;
    font-weight: 700;
    color: #0544A6;
    margin: 0 0 4px
}

.prm .diff-item-p {
    font-size: 15px;
    line-height: 1.5;
    color: #2a2a4a;
    margin: 0
}

.prm .diff-img-col {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: flex-end
}

.prm .diff-img-a {
    width: 100%;
    height: 260px;
    border-radius: 16px 6px 16px 6px;
    overflow: hidden;
    box-shadow: 0 4px 28px 0 #0544a61c
}

.prm .diff-img-a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0;
    transition: opacity 780ms cubic-bezier(0.34, 1.56, 0.64, 1)
}

.prm .diff-img-a img.loaded {
    opacity: 1
}

.prm .diff-stat {
    background: #0544A6;
    border-radius: 10px;
    padding: 16px 32px;
    text-align: right;
    box-shadow: 0 10px 48px 0 #0544a61a
}

.prm .diff-stat-num {
    font-size: 42px;
    line-height: 1.1;
    font-weight: 700;
    color: #FA48F3;
    letter-spacing: .01em
}

.prm .diff-stat-txt {
    font-size: 15px;
    line-height: 1.5;
    color: #fffffed9;
    margin: 4px 0 0
}

@keyframes grad-breathe {

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

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

@media (max-width: 1024px) {
    .prm .t-blk .pg-wrap {
        gap: 32px
    }

    .prm .t-img-col {
        flex: 0 0 320px
    }

    .prm .t-img-geo {
        width: 320px;
        height: 380px
    }

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

    .prm .sec-nofit .pg-wrap {
        gap: 32px
    }

    .prm .nofit-left {
        flex: 0 0 280px
    }
}

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

    .prm .t-blk {
        padding: 64px 0 32px;
        background: linear-gradient(180deg, #FA48F3 0%, #FA48F3 40%, #FFFFFE 40%)
    }

    .prm .t-blk .pg-wrap {
        flex-direction: column;
        gap: 32px
    }

    .prm .t-img-col {
        flex: none;
        width: 100%
    }

    .prm .t-img-geo {
        width: 100%;
        height: 260px
    }

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

    .prm .t-count-num {
        font-size: 30px
    }

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

    .prm .sec-nofit {
        background: #0544A6
    }

    .prm .sec-nofit .pg-wrap {
        flex-direction: column;
        gap: 32px
    }

    .prm .nofit-left {
        flex: none
    }

    .prm .nofit-h2 {
        color: #FFFFFE
    }

    .prm .how-top {
        grid-template-columns: 1fr
    }

    .prm .how-imgs {
        grid-template-columns: 1fr
    }

    .prm .how-img-side {
        height: 180px
    }

    .prm .sec-diff {
        background: #FFFFFE
    }

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

    .prm .diff-img-col {
        align-items: stretch
    }
}

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

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

.abt-us .hero-band {
    position: relative;
    padding: 96px 0 64px;
    background: linear-gradient(127deg, #0544A6 0%, #0544A6 48%, #FA48F3 48%, #FA48F3 100%);
    overflow: hidden
}

.abt-us .hero-band .fog-layer {
    position: absolute;
    inset: 0;
    background: #fffffe0f;
    width: 160%;
    animation: fog-move 12s ease-in-out infinite alternate;
    pointer-events: none;
    border-radius: 0
}

@keyframes fog-move {
    0% {
        transform: translateX(-8%)
    }

    100% {
        transform: translateX(4%)
    }
}

.abt-us .hero-band .curl-dec {
    position: absolute;
    bottom: -32px;
    right: 48px;
    width: 120px;
    height: 120px;
    opacity: .1;
    pointer-events: none
}

.abt-us .hero-band .pg-wrap {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 64px
}

.abt-us .hero-txt {
    flex: 1 1 0;
    min-width: 0
}

.abt-us .hero-txt .eyebrow {
    display: inline-block;
    border: 2px solid #fffffe8c;
    border-radius: 6px;
    padding: 4px 16px;
    font-size: 15px;
    line-height: 1.5;
    letter-spacing: .02em;
    color: #fffffed9;
    margin-bottom: 32px
}

.abt-us .hero-txt .h-main {
    font-size: 58px;
    line-height: 1.1;
    letter-spacing: .01em;
    color: #FFFFFE;
    margin: 0 0 32px
}

.abt-us .hero-txt .h-main span {
    display: block
}

.abt-us .hero-txt .h-main .pause-line {
    opacity: .72;
    font-size: 42px
}

.abt-us .hero-txt .lead-p {
    font-size: 15px;
    line-height: 1.7;
    letter-spacing: .01em;
    color: #fffffee0;
    max-width: 460px;
    margin: 0
}

.abt-us .hero-img-wrap {
    flex: 0 0 320px;
    width: 320px;
    height: 380px;
    border-radius: 10px;
    overflow: hidden;
    opacity: .55;
    box-shadow: 0 10px 48px 0 #0544a61a
}

.abt-us .hero-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 700ms cubic-bezier(0.34, 1.56, 0.64, 1)
}

.abt-us .hero-img-wrap img.loaded {
    opacity: 1
}

.abt-us .detail-band {
    padding: 96px 0 64px;
    background: linear-gradient(180deg, #f4f6fb 0%, #FFFFFE 100%);
    margin-left: 32px
}

.abt-us .detail-band .pg-wrap {
    display: flex;
    flex-direction: row;
    gap: 64px;
    align-items: flex-start
}

.abt-us .detail-col-a {
    flex: 0 0 340px;
    width: 340px
}

.abt-us .detail-col-a .sec-label {
    font-size: 15px;
    line-height: 1.5;
    letter-spacing: .02em;
    color: #0544A6;
    font-weight: 600;
    margin: 0 0 16px;
    text-transform: uppercase
}

.abt-us .detail-col-a .sec-h {
    font-size: 30px;
    line-height: 1.3;
    letter-spacing: .01em;
    color: #111827;
    margin: 0 0 32px;
    position: relative;
    display: inline-block
}

.abt-us .detail-col-a .sec-h::after {
    content: '';
    display: block;
    height: 3px;
    width: 0;
    background: #FA48F3;
    border-radius: 6px;
    margin-top: 8px;
    transition: width 800ms cubic-bezier(0.34, 1.56, 0.64, 1)
}

.abt-us .detail-col-a:hover .sec-h::after {
    width: 100%
}

.abt-us .detail-col-a .body-p {
    font-size: 15px;
    line-height: 1.7;
    letter-spacing: .01em;
    color: #2d3748;
    margin: 0 0 16px
}

.abt-us .detail-col-a .body-p.intro-p {
    font-size: 15px;
    line-height: 1.5;
    font-weight: 500;
    color: #1a2a4a
}

.abt-us .detail-col-a .accent-box {
    display: inline-block;
    border: 1.5px solid #0544A6;
    border-radius: 6px;
    padding: 8px 16px;
    font-size: 15px;
    line-height: 1.5;
    color: #0544A6;
    letter-spacing: .01em;
    margin-top: 8px
}

.abt-us .detail-col-b {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 32px
}

.abt-us .infographic {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: stretch;
    background: #FFFFFE;
    border-radius: 10px;
    padding: 32px;
    box-shadow: 0 4px 28px 0 #fa48f31c
}

.abt-us .infographic .inf-item {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
    padding: 16px 8px;
    border-radius: 6px;
    transition: background 700ms cubic-bezier(0.34, 1.56, 0.64, 1)
}

.abt-us .infographic .inf-item:hover {
    background: #0544a60d
}

.abt-us .infographic .inf-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center
}

.abt-us .infographic .inf-icon svg {
    width: 32px;
    height: 32px
}

.abt-us .infographic .inf-val {
    font-size: 30px;
    line-height: 1.1;
    letter-spacing: .01em;
    color: #0544A6;
    font-weight: 700
}

.abt-us .infographic .inf-lbl {
    font-size: 15px;
    line-height: 1.3;
    letter-spacing: .01em;
    color: #4a5568
}

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

.abt-us .team-card {
    background: #FFFFFE;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 6px 0 #0544a614;
    transition: box-shadow 800ms cubic-bezier(0.34, 1.56, 0.64, 1), transform 700ms cubic-bezier(0.34, 1.56, 0.64, 1)
}

.abt-us .team-card:hover {
    box-shadow: 0 10px 48px 0 #fa48f31a;
    transform: translateY(-4px)
}

.abt-us .team-card.wide {
    grid-column: span 1
}

.abt-us .team-card .tc-img {
    width: 100%;
    height: 180px;
    overflow: hidden
}

.abt-us .team-card .tc-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 700ms cubic-bezier(0.34, 1.56, 0.64, 1)
}

.abt-us .team-card .tc-img img.loaded {
    opacity: 1
}

.abt-us .team-card .tc-body {
    padding: 16px
}

.abt-us .team-card .tc-name {
    font-size: 15px;
    line-height: 1.3;
    letter-spacing: .01em;
    color: #111827;
    font-weight: 600;
    margin: 0 0 4px
}

.abt-us .team-card .tc-role {
    font-size: 15px;
    line-height: 1.5;
    letter-spacing: .01em;
    color: #0544A6;
    margin: 0 0 8px
}

.abt-us .team-card .tc-desc {
    font-size: 15px;
    line-height: 1.5;
    letter-spacing: .01em;
    color: #4a5568;
    margin: 0
}

.abt-us .team-card .tc-icon-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px
}

.abt-us .team-card .tc-icon-wrap .icon-def {
    width: 20px;
    height: 20px;
    color: #FA48F3;
    transition: color 700ms cubic-bezier(0.34, 1.56, 0.64, 1)
}

.abt-us .team-card:hover .tc-icon-wrap .icon-def {
    color: #0544A6
}

.abt-us .team-card .tc-icon-wrap .icon-alt {
    display: none;
    width: 20px;
    height: 20px;
    color: #0544A6
}

.abt-us .cta-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    margin-top: 8px
}

.abt-us .btn-prim {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: #0544A6;
    color: #FFFFFE;
    font-size: 15px;
    line-height: 1.3;
    letter-spacing: .02em;
    border: 2.5px solid #0544A6;
    border-radius: 6px;
    cursor: pointer;
    text-decoration: none;
    transition: background 800ms cubic-bezier(0.34, 1.56, 0.64, 1), border-color 800ms cubic-bezier(0.34, 1.56, 0.64, 1), color 700ms cubic-bezier(0.34, 1.56, 0.64, 1)
}

.abt-us .btn-prim:hover {
    background: #FA48F3;
    border-color: #FA48F3;
    color: #FFFFFE
}

.abt-us .btn-sec {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: transparent;
    color: #0544A6;
    font-size: 15px;
    line-height: 1.3;
    letter-spacing: .02em;
    border: 2.5px solid #0544A6;
    border-radius: 6px;
    cursor: pointer;
    text-decoration: none;
    transition: background 800ms cubic-bezier(0.34, 1.56, 0.64, 1), color 700ms cubic-bezier(0.34, 1.56, 0.64, 1)
}

.abt-us .btn-sec:hover {
    background: #0544A6;
    color: #FFFFFE
}

.abt-us .btn-prim .btn-ul,
.abt-us .btn-sec .btn-ul {
    display: block;
    height: 1.5px;
    width: 0;
    background: currentColor;
    transition: width 700ms cubic-bezier(0.34, 1.56, 0.64, 1);
    margin-top: 2px
}

.abt-us .btn-prim:hover .btn-ul,
.abt-us .btn-sec:hover .btn-ul {
    width: 100%
}

@media (max-width: 1024px) {
    .abt-us .hero-band .pg-wrap {
        flex-direction: column;
        gap: 32px
    }

    .abt-us .hero-img-wrap {
        flex: 0 0 auto;
        width: 100%;
        height: 260px
    }

    .abt-us .detail-band {
        margin-left: 0
    }

    .abt-us .detail-band .pg-wrap {
        flex-direction: column;
        gap: 32px
    }

    .abt-us .detail-col-a {
        flex: 0 0 auto;
        width: 100%
    }

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

@media (max-width: 640px) {
    .abt-us .hero-txt .h-main {
        font-size: 42px
    }

    .abt-us .hero-txt .h-main .pause-line {
        font-size: 30px
    }

    .abt-us .infographic {
        flex-direction: column;
        gap: 8px;
        padding: 16px
    }

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

    .abt-us .cta-row {
        flex-direction: column;
        align-items: flex-start
    }

    .abt-us .hero-band {
        padding: 64px 0 32px
    }

    .abt-us .detail-band {
        padding: 64px 0 32px
    }
}

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

.succ-page .succ-wrap {
    max-width: 1024px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px
}

.succ-page .succ-icon {
    width: 72px;
    height: 72px;
    border-radius: 44px;
    border: 3px solid #0544A6;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 28px 0 #0544a61c;
    opacity: 0;
    animation: succ-fade-in 700ms cubic-bezier(0.34, 1.56, 0.64, 1) 100ms forwards
}

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

.succ-page .succ-heading {
    font-size: 42px;
    line-height: 1.1;
    letter-spacing: .01em;
    color: #0544A6;
    text-align: center;
    margin: 0;
    opacity: 0;
    animation: succ-fade-in 700ms cubic-bezier(0.34, 1.56, 0.64, 1) 250ms forwards
}

.succ-page .succ-body {
    font-size: 15px;
    line-height: 1.7;
    letter-spacing: .01em;
    color: #111827;
    text-align: center;
    max-width: 480px;
    margin: 0;
    opacity: 0;
    animation: succ-fade-in 700ms cubic-bezier(0.34, 1.56, 0.64, 1) 400ms forwards
}

.succ-page .succ-divider {
    width: 64px;
    height: 3px;
    background: linear-gradient(90deg, #FA48F3 50%, #0544A6 50%);
    border-radius: 6px;
    opacity: 0;
    animation: succ-fade-in 700ms cubic-bezier(0.34, 1.56, 0.64, 1) 520ms forwards
}

.succ-page .succ-detail {
    font-size: 15px;
    line-height: 1.5;
    letter-spacing: .02em;
    color: #374151;
    text-align: center;
    max-width: 400px;
    margin: 0;
    padding: 16px 32px;
    border: 1.5px solid #0544A6;
    border-radius: 10px;
    box-shadow: 0 3px 6px 0 #0544a614;
    opacity: 0;
    animation: succ-fade-in 700ms cubic-bezier(0.34, 1.56, 0.64, 1) 620ms forwards
}

.succ-page .succ-actions {
    display: flex;
    flex-direction: row;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    opacity: 0;
    animation: succ-fade-in 700ms cubic-bezier(0.34, 1.56, 0.64, 1) 750ms forwards
}

.succ-page .succ-actions .btn-primary {
    display: inline-block;
    padding: 16px 32px;
    font-size: 15px;
    line-height: 1.3;
    letter-spacing: .02em;
    color: #0544A6;
    background: #FFFFFE;
    border: 2.5px solid #0544A6;
    border-radius: 6px;
    text-decoration: none;
    cursor: pointer;
    transition: background 700ms cubic-bezier(0.34, 1.56, 0.64, 1), color 700ms cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 800ms cubic-bezier(0.68, -0.55, 0.27, 1.55);
    box-shadow: 0 3px 6px 0 #0544a614
}

.succ-page .succ-actions .btn-primary:hover,
.succ-page .succ-actions .btn-primary:focus {
    background: #0544A6;
    color: #FFFFFE;
    box-shadow: 0 4px 28px 0 #0544a61c;
    outline: none
}

.succ-page .succ-actions .btn-primary:active {
    box-shadow: 0 3px 6px 0 #0544a614
}

.succ-page .succ-actions .btn-accent {
    display: inline-block;
    padding: 16px 32px;
    font-size: 15px;
    line-height: 1.3;
    letter-spacing: .02em;
    color: #FA48F3;
    background: #FFFFFE;
    border: 2.5px solid #FA48F3;
    border-radius: 6px;
    text-decoration: none;
    cursor: pointer;
    transition: background 700ms cubic-bezier(0.34, 1.56, 0.64, 1), color 700ms cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 800ms cubic-bezier(0.68, -0.55, 0.27, 1.55);
    box-shadow: 0 3px 6px 0 #fa48f314
}

.succ-page .succ-actions .btn-accent:hover,
.succ-page .succ-actions .btn-accent:focus {
    background: #FA48F3;
    color: #FFFFFE;
    box-shadow: 0 4px 28px 0 #fa48f31c;
    outline: none
}

.succ-page .succ-actions .btn-accent:active {
    box-shadow: 0 3px 6px 0 #fa48f314
}

@keyframes succ-fade-in {
    from {
        opacity: 0;
        transform: translateY(12px)
    }

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

@media (max-width: 640px) {
    .succ-page {
        padding: 64px 16px
    }

    .succ-page .succ-heading {
        font-size: 30px
    }

    .succ-page .succ-actions {
        flex-direction: column;
        align-items: stretch
    }

    .succ-page .succ-actions .btn-primary,
    .succ-page .succ-actions .btn-accent {
        text-align: center
    }
}