::before,
::after {
    content: none;
    box-sizing: inherit
}

body {
    margin: 0;
    overscroll-behavior: contain;
    overflow-x: hidden;
    font-family: 'Arimo', sans-serif
}

.top_bar {
    background-color: #02334F;
    padding: 6px 28px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 28px
}

.top_contact {
    display: flex;
    align-items: center;
    gap: 14px
}

.top_link {
    color: #FFF;
    text-decoration: none;
    font-size: 15px;
    line-height: 1.35;
    letter-spacing: .01em;
    display: flex;
    align-items: center;
    gap: 6px;
    opacity: .85;
    transition: opacity .15s ease-out
}

.top_link:hover {
    opacity: 1
}

.top_link i {
    font-size: 15px;
    color: #0098E3
}

.top_divider {
    width: 1px;
    height: 16px;
    background-color: #fff3
}

.hd {
    background: linear-gradient(135deg, #FFF 0%, #f0f7fc 100%);
    border-bottom: 2px solid #0098E3;
    box-shadow: 1px 4px 22px -1px #02334f1a
}

.hd_inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 28px 28px 14px;
    display: flex;
    flex-direction: column;
    gap: 14px
}

.hd_brand_row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px
}

.brand_wrap {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    flex-shrink: 0
}

.brand_img_box {
    width: 72px;
    height: 72px;
    background-color: #FFF;
    border: 2px solid #0098E3;
    box-shadow: 1px 3px 3px -1px #02334f12;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px
}

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

.brand_label {
    display: flex;
    flex-direction: column;
    gap: 6px
}

.brand_name {
    font-size: 23px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: .02em;
    color: #02334F
}

.brand_tagline {
    font-size: 15px;
    line-height: 1.35;
    letter-spacing: .01em;
    color: #0098E3;
    font-weight: 400
}

.hd_accent {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background-color: #02334F;
    border-radius: 7px
}

.hd_accent_text {
    font-size: 15px;
    color: #FFF;
    line-height: 1.35;
    letter-spacing: .01em
}

.hd_accent i {
    color: #0098E3;
    font-size: 19px
}

.nav_row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
    padding: 6px 0;
    border-top: 1px solid #02334f1f
}

.nav_item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 14px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: .01em;
    color: #02334F;
    border-radius: 7px;
    overflow: hidden;
    transition: color .2s ease-out;
    min-height: 44px;
    white-space: nowrap
}

.nav_item::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: #0098E3;
    transform: translateX(-100%);
    transition: transform .18s ease-out;
    border-radius: 7px;
    z-index: 0
}

.nav_item:hover::before {
    transform: translateX(0)
}

.nav_item:hover {
    color: #FFF
}

.nav_item i,
.nav_item span {
    position: relative;
    z-index: 1
}

.nav_item i {
    font-size: 19px;
    color: #0098E3;
    transition: color .2s ease-out
}

.nav_item:hover i {
    color: #FFF
}

.nav_item:focus {
    outline: 3px solid;
    outline-color: #0098E3;
    outline-offset: 2px
}

.ft {
    background-color: #02334F
}

.ft_upper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 56px 28px 28px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 56px
}

.ft_brand_col {
    display: flex;
    flex-direction: column;
    gap: 14px
}

.ft_logo_row {
    display: flex;
    align-items: center;
    gap: 14px
}

.ft_logo_box {
    width: 72px;
    height: 72px;
    background-color: #FFF;
    border: 2px solid #0098e366;
    box-shadow: 1px 3px 3px -1px #0098e312;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    flex-shrink: 0
}

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

.ft_brand_info {
    display: flex;
    flex-direction: column;
    gap: 6px
}

.ft_brand_nm {
    font-size: 19px;
    font-weight: 700;
    color: #FFF;
    line-height: 1.1;
    letter-spacing: .02em
}

.ft_founded {
    font-size: 15px;
    color: #ffffff8c;
    line-height: 1.35;
    letter-spacing: .01em
}

.ft_desc {
    font-size: 15px;
    color: #ffffffb3;
    line-height: 1.6;
    letter-spacing: .01em
}

.ft_contact_col {
    display: flex;
    flex-direction: column;
    gap: 14px
}

.ft_col_head {
    font-size: 16px;
    font-weight: 700;
    color: #0098E3;
    line-height: 1.35;
    letter-spacing: .02em;
    text-transform: uppercase;
    padding-bottom: 6px;
    border-bottom: 1px solid #0098e34d
}

.ft_contact_list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px
}

.ft_contact_item {
    display: flex;
    align-items: flex-start;
    gap: 10px
}

.ft_contact_item i {
    font-size: 19px;
    color: #0098E3;
    flex-shrink: 0;
    margin-top: 2px
}

.ft_contact_text {
    font-size: 15px;
    color: #ffffffbf;
    line-height: 1.6;
    letter-spacing: .01em;
    text-decoration: none;
    transition: color .15s ease-out
}

.ft_contact_text:hover {
    color: #FFF
}

.ft_links_col {
    display: flex;
    flex-direction: column;
    gap: 14px
}

.ft_link_list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px
}

.ft_link_item {
    display: flex;
    align-items: center
}

.ft_pg_link {
    font-size: 15px;
    color: #ffffffb3;
    text-decoration: none;
    line-height: 1.6;
    letter-spacing: .01em;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 0;
    transition: color .15s ease-out;
    min-height: 44px
}

.ft_pg_link i {
    font-size: 15px;
    color: #0098E3;
    transition: transform .18s ease-out
}

.ft_pg_link:hover {
    color: #FFF
}

.ft_pg_link:hover i {
    transform: translateX(4px)
}

.ft_pg_link:focus {
    outline: 2px solid #0098E3;
    outline-offset: 2px
}

.ft_lower {
    border-top: 1px solid #ffffff1a;
    background-color: #00000026
}

.ft_lower_inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 14px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap
}

.ft_copy {
    font-size: 15px;
    color: #ffffff73;
    line-height: 1.35;
    letter-spacing: .01em
}

.ft_legal_links {
    display: flex;
    align-items: center;
    gap: 14px;
    list-style: none;
    margin: 0;
    padding: 0
}

.ft_legal_link {
    font-size: 15px;
    color: #ffffff73;
    text-decoration: none;
    line-height: 1.35;
    letter-spacing: .01em;
    transition: color .15s ease-out;
    min-height: 44px;
    display: flex;
    align-items: center
}

.ft_legal_link:hover {
    color: #ffffffd9
}

.ft_legal_link:focus {
    outline: 2px solid #0098E3;
    outline-offset: 2px
}

.ft_legal_sep {
    width: 3px;
    height: 3px;
    border-radius: 48px;
    background-color: #ffffff40;
    flex-shrink: 0
}

.ck_popup {
    position: fixed;
    top: 28px;
    right: 28px;
    width: 360px;
    max-width: calc(100vw - 56px);
    background-color: #FFF;
    border: 1px solid #02334f1f;
    border-top: 3px solid #0098E3;
    border-radius: 7px;
    box-shadow: 1px 10px 52px -1px #02334f1a;
    z-index: 8000;
    padding: 28px;
    display: none
}

.ck_desc {
    font-size: 15px;
    color: #02334F;
    line-height: 1.6;
    letter-spacing: .01em;
    margin: 0 0 6px
}

.ck_head {
    font-size: 16px;
    font-weight: 700;
    color: #02334F;
    line-height: 1.35;
    letter-spacing: .01em;
    margin: 0 0 14px
}

.ck_btns {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 14px
}

.ck_accept {
    position: relative;
    overflow: hidden;
    padding: 14px 28px;
    background-color: #02334F;
    color: #FFF;
    border: none;
    border-radius: 7px;
    font-size: 16px;
    font-family: 'Arimo', sans-serif;
    font-weight: 700;
    letter-spacing: .01em;
    cursor: pointer;
    min-height: 44px;
    transition: color .2s ease-out
}

.ck_accept::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: #0098E3;
    transform: translateX(-100%);
    transition: transform .18s ease-out
}

.ck_accept:hover::before {
    transform: translateX(0)
}

.ck_accept span {
    position: relative;
    z-index: 1
}

.ck_accept:focus {
    outline: 3px solid #0098E3;
    outline-offset: 2px
}

.ck_decline {
    padding: 10px 14px;
    background-color: transparent;
    color: #02334f99;
    border: 1px solid #02334f33;
    border-radius: 7px;
    font-size: 15px;
    font-family: 'Arimo', sans-serif;
    letter-spacing: .01em;
    cursor: pointer;
    min-height: 44px;
    transition: color .15s ease-out, border-color .15s ease-out
}

.ck_decline:hover {
    color: #02334F;
    border-color: #02334F
}

.ck_decline:focus {
    outline: 3px solid #0098E3;
    outline-offset: 2px
}

.ck_popup_visible {
    display: block
}

@media (max-width: 960px) {
    .ft_upper {
        grid-template-columns: 1fr 1fr;
        gap: 28px
    }

    .ft_brand_col {
        grid-column: 1 / -1
    }

    .hd_brand_row {
        flex-wrap: wrap
    }
}

@media (max-width: 480px) {
    .top_bar {
        padding: 6px 14px;
        justify-content: center;
        flex-wrap: wrap;
        gap: 6px
    }

    .hd_inner {
        padding: 14px
    }

    .hd_brand_row {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px
    }

    .nav_row {
        justify-content: flex-start
    }

    .nav_item {
        font-size: 15px;
        padding: 10px
    }

    .ft_upper {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 28px 14px
    }

    .ft_lower_inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 14px
    }

    .ft_legal_links {
        flex-wrap: wrap
    }

    .ck_popup {
        top: 14px;
        right: 14px;
        width: calc(100vw - 28px);
        max-width: none;
        padding: 14px
    }
}

.terms-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 56px 28px;
    color: #02334F;
    line-height: 1.8;
    font-size: 16px;
    letter-spacing: .01em
}

.terms-wrapper ul {
    padding-left: 28px;
    margin-top: 14px;
    margin-bottom: 28px;
    list-style: none
}

.terms-wrapper ol {
    padding-left: 28px;
    margin-top: 14px;
    margin-bottom: 28px;
    list-style: none;
    counter-reset: policy-counter
}

.terms-wrapper ul li {
    position: relative;
    padding-left: 14px;
    margin-bottom: 6px;
    font-size: 16px;
    line-height: 1.8;
    color: #02334F
}

.terms-wrapper ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .72em;
    width: 5px;
    height: 5px;
    background-color: #0098E3;
    border-radius: 48px;
    flex-shrink: 0
}

.terms-wrapper ol li {
    position: relative;
    padding-left: 14px;
    margin-bottom: 6px;
    font-size: 16px;
    line-height: 1.8;
    color: #02334F;
    counter-increment: policy-counter
}

.terms-wrapper ol li::before {
    content: counter(policy-counter) ".";
    position: absolute;
    left: 0;
    top: 0;
    color: #0098E3;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .01em;
    transform: translateX(-100%);
    padding-right: 6px
}

.terms-wrapper ul ul,
.terms-wrapper ol ol,
.terms-wrapper ul ol,
.terms-wrapper ol ul {
    margin-top: 6px;
    margin-bottom: 6px;
    padding-left: 28px
}

.terms-wrapper strong,
.terms-wrapper b {
    font-weight: 700;
    color: #02334F;
    letter-spacing: .02em
}

.terms-wrapper em,
.terms-wrapper i {
    font-style: italic;
    color: #02334F;
    opacity: .85
}

.terms-wrapper a {
    color: #0098E3;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    transition: color .15s ease-out, text-decoration-color .15s ease-out
}

.terms-wrapper a:hover {
    color: #02334F;
    text-decoration-color: #02334F
}

.terms-wrapper a:focus-visible {
    outline: 2px solid #0098E3;
    outline-offset: 2px;
    border-radius: 7px
}

.terms-wrapper hr {
    border: none;
    border-top: 1.5px solid #0098e338;
    margin-top: 56px;
    margin-bottom: 56px
}

@media (max-width: 960px) {
    .terms-wrapper {
        padding: 56px 28px;
        font-size: 16px
    }
}

@media (max-width: 480px) {
    .terms-wrapper {
        padding: 28px 14px;
        font-size: 15px;
        line-height: 1.8
    }

    .terms-wrapper ul,
    .terms-wrapper ol {
        padding-left: 14px;
        margin-bottom: 14px
    }

    .terms-wrapper hr {
        margin-top: 28px;
        margin-bottom: 28px
    }
}

.lpd {
    background: #f4f8fb;
    padding: 0;
    overflow-x: clip
}

.lpd .top_strip {
    background: #02334F;
    padding: 14px 28px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 14px
}

.lpd .top_strip .meta_row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap
}

.lpd .top_strip .cat_badge {
    background: #0098E3;
    color: #fff;
    font-size: 15px;
    line-height: 1.35;
    letter-spacing: .02em;
    padding: 6px 14px;
    border-radius: 7px;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block
}

.lpd .top_strip .read_time {
    color: #ffffffbf;
    font-size: 15px;
    line-height: 1.35;
    letter-spacing: .01em;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 6px
}

.lpd .top_strip .read_time i {
    font-size: 16px
}

.lpd .top_strip .pub_date {
    color: #ffffff8c;
    font-size: 15px;
    line-height: 1.35;
    letter-spacing: .01em
}

.lpd .top_strip .copy_btn {
    background: transparent;
    border: 1px solid #ffffff4d;
    color: #fff;
    font-size: 15px;
    line-height: 1.35;
    letter-spacing: .01em;
    padding: 6px 14px;
    border-radius: 7px;
    cursor: pointer;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;
    transition: border-color .15s ease-out, background .18s ease;
    position: relative;
    overflow: hidden
}

.lpd .top_strip .copy_btn::before {
    content: '';
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background: #0098E3;
    transition: left .2s ease-out;
    z-index: 0
}

.lpd .top_strip .copy_btn:hover::before {
    left: 0
}

.lpd .top_strip .copy_btn span,
.lpd .top_strip .copy_btn i {
    position: relative;
    z-index: 1
}

.lpd .top_strip .copy_btn:hover {
    border-color: #0098E3
}

.lpd .hero_band {
    background: #02334F;
    padding: 28px 0 0;
    position: relative
}

.lpd .hero_band .hero_inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 56px;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 56px
}

.lpd .hero_band .hero_text_col {
    flex: 1 1 0;
    padding-bottom: 56px
}

.lpd .hero_band .accent_line {
    width: 48px;
    height: 4px;
    background: #0098E3;
    border-radius: 48px;
    margin-bottom: 14px
}

.lpd .hero_band .prog_title {
    font-size: 58px;
    line-height: 1.1;
    letter-spacing: .01em;
    color: #fff;
    margin: 0 0 28px;
    font-weight: 800
}

.lpd .hero_band .prog_title .accent_word {
    background: linear-gradient(135deg, #fff 0%, #0098E3 60%, #02334F 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent
}

.lpd .hero_band .manifesto {
    font-size: 19px;
    line-height: 1.6;
    letter-spacing: .01em;
    color: #ffffffd1;
    margin: 0 0 28px
}

.lpd .hero_band .hero_stats {
    display: flex;
    flex-direction: row;
    gap: 28px;
    flex-wrap: wrap
}

.lpd .hero_band .stat_pill {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;
    color: #ffffffa6;
    font-size: 15px;
    line-height: 1.35;
    letter-spacing: .01em
}

.lpd .hero_band .stat_pill i {
    color: #0098E3;
    font-size: 16px
}

.lpd .hero_band .hero_img_col {
    flex: 0 0 420px;
    position: relative;
    align-self: flex-end
}

.lpd .hero_band .img_wrap {
    border-radius: 7px 7px 0 0;
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/3
}

.lpd .hero_band .img_wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.lpd .hero_band .img_wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 40%, transparent 40%, #02334f8c 100%);
    pointer-events: none
}

.lpd .hero_band .shape_a {
    position: absolute;
    width: 120px;
    height: 120px;
    border: 2px solid #0098e340;
    border-radius: 7px;
    top: -28px;
    right: -28px;
    pointer-events: none
}

.lpd .hero_band .shape_b {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 2px solid #ffffff1a;
    border-radius: 48px;
    bottom: 28px;
    left: -28px;
    pointer-events: none
}

.lpd .wave_div {
    width: 100%;
    line-height: 0;
    background: #02334F
}

.lpd .wave_div svg {
    display: block;
    width: 100%
}

.lpd .body_grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 56px;
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 56px;
    align-items: start
}

.lpd .main_col {
    display: flex;
    flex-direction: column;
    gap: 56px
}

.lpd .side_col {
    display: flex;
    flex-direction: column;
    gap: 28px
}

.lpd .desc_block {
    background: #fff;
    border-radius: 7px;
    padding: 56px;
    box-shadow: 1px 4px 22px -1px #02334f1a
}

.lpd .desc_block .sec_accent {
    width: 36px;
    height: 3px;
    background: #0098E3;
    border-radius: 48px;
    margin-bottom: 14px
}

.lpd .desc_block .sec_heading {
    font-size: 31px;
    line-height: 1.35;
    letter-spacing: .01em;
    color: #02334F;
    margin: 0 0 28px;
    font-weight: 700;
    text-align: center
}

.lpd .desc_block .desc_body {
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: .01em;
    color: #1a3347
}

.lpd .desc_block .desc_body p {
    margin: 0 0 14px;
    text-indent: -14px;
    padding-left: 14px
}

.lpd .desc_block .desc_body p:last-child {
    margin-bottom: 0
}

.lpd .desc_block .desc_body h2 {
    font-size: 23px;
    line-height: 1.35;
    letter-spacing: .01em;
    color: #02334F;
    margin: 28px 0 14px;
    font-weight: 700
}

.lpd .desc_block .desc_body h3 {
    font-size: 19px;
    line-height: 1.35;
    letter-spacing: .01em;
    color: #02334F;
    margin: 28px 0 14px;
    font-weight: 600
}

.lpd .desc_block .desc_body blockquote {
    border-radius: 7px;
    background: #f4f8fb;
    padding: 28px;
    margin: 28px 0;
    font-size: 19px;
    line-height: 1.6;
    color: #02334F;
    font-style: italic
}

.lpd .desc_block .desc_body mark {
    background: #0098e326;
    color: #02334F;
    padding: 0 6px;
    border-radius: 7px
}

.lpd .desc_block .desc_body ol {
    padding-left: 28px;
    margin: 14px 0
}

.lpd .desc_block .desc_body li {
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: .01em;
    color: #1a3347;
    margin-bottom: 6px
}

.lpd .prog_block {
    background: #02334F;
    border-radius: 7px;
    padding: 56px;
    box-shadow: 1px 10px 52px -1px #02334f1a;
    position: relative;
    overflow: hidden
}

.lpd .prog_block::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border: 40px solid #0098e314;
    border-radius: 48px;
    top: -80px;
    right: -80px;
    pointer-events: none
}

.lpd .prog_block .sec_accent {
    width: 36px;
    height: 3px;
    background: #0098E3;
    border-radius: 48px;
    margin-bottom: 14px
}

.lpd .prog_block .sec_heading {
    font-size: 31px;
    line-height: 1.35;
    letter-spacing: .01em;
    color: #fff;
    margin: 0 0 28px;
    font-weight: 700;
    text-align: center
}

.lpd .prog_block .prog_body {
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: .01em;
    color: #ffffffd1
}

.lpd .prog_block .prog_body p {
    margin: 0 0 14px;
    text-indent: -14px;
    padding-left: 14px
}

.lpd .prog_block .prog_body p:last-child {
    margin-bottom: 0
}

.lpd .prog_block .prog_body h2 {
    font-size: 23px;
    line-height: 1.35;
    letter-spacing: .01em;
    color: #fff;
    margin: 28px 0 14px;
    font-weight: 700
}

.lpd .prog_block .prog_body h3 {
    font-size: 19px;
    line-height: 1.35;
    letter-spacing: .01em;
    color: #0098E3;
    margin: 28px 0 14px;
    font-weight: 600
}

.lpd .prog_block .prog_body cite {
    display: block;
    color: #ffffff8c;
    font-size: 15px;
    line-height: 1.6;
    font-style: italic;
    margin-top: 14px
}

.lpd .prog_block .prog_body ul {
    padding-left: 0;
    list-style: none;
    margin: 14px 0
}

.lpd .prog_block .prog_body ul li {
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: .01em;
    color: #ffffffd1;
    margin-bottom: 6px;
    padding-left: 28px;
    position: relative
}

.lpd .prog_block .prog_body ul li::before {
    content: '';
    position: absolute;
    left: 6px;
    top: 12px;
    width: 6px;
    height: 6px;
    border-radius: 48px;
    background: #0098E3
}

.lpd .prog_block .prog_body ol {
    padding-left: 28px;
    margin: 14px 0
}

.lpd .prog_block .prog_body ol li {
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: .01em;
    color: #ffffffd1;
    margin-bottom: 6px
}

.lpd .price_card {
    background: #fff;
    border-radius: 7px;
    box-shadow: 1px 4px 22px -1px #02334f1a;
    overflow: hidden
}

.lpd .price_card .price_top {
    background: linear-gradient(160deg, #02334F 0%, #0098E3 100%);
    padding: 28px;
    text-align: center
}

.lpd .price_card .price_label {
    font-size: 15px;
    line-height: 1.35;
    letter-spacing: .02em;
    color: #ffffffb3;
    text-transform: uppercase;
    margin-bottom: 6px
}

.lpd .price_card .price_val {
    font-size: 58px;
    line-height: 1.1;
    letter-spacing: .01em;
    color: #fff;
    font-weight: 800
}

.lpd .price_card .price_currency {
    font-size: 23px;
    vertical-align: super;
    font-weight: 600
}

.lpd .price_card .price_terms {
    font-size: 15px;
    line-height: 1.6;
    color: #ffffffb3;
    margin-top: 6px
}

.lpd .price_card .price_body {
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 14px
}

.lpd .price_card .price_note_txt {
    font-size: 15px;
    line-height: 1.6;
    color: #02334F;
    background: #0098e312;
    border-radius: 7px;
    padding: 14px
}

.lpd .price_card .seats_row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    line-height: 1.35;
    color: #02334F;
    font-weight: 600
}

.lpd .price_card .seats_row i {
    color: #0098E3;
    font-size: 19px
}

.lpd .price_card .seats_bar_wrap {
    background: #f4f8fb;
    border-radius: 48px;
    height: 6px;
    overflow: hidden
}

.lpd .price_card .seats_bar {
    height: 100%;
    background: linear-gradient(90deg, #0098E3, #02334F);
    border-radius: 48px;
    width: 68%;
    transition: width .5s ease-out
}

.lpd .price_card .enroll_btn {
    display: block;
    width: 100%;
    background: #02334F;
    color: #fff;
    font-size: 16px;
    line-height: 1.35;
    letter-spacing: .01em;
    padding: 14px 28px;
    border-radius: 7px;
    border: none;
    cursor: pointer;
    text-align: center;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    transition: color .18s ease-out;
    text-decoration: none
}

.lpd .price_card .enroll_btn::before {
    content: '';
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background: #0098E3;
    transition: left .22s ease-out;
    z-index: 0
}

.lpd .price_card .enroll_btn:hover::before {
    left: 0
}

.lpd .price_card .enroll_btn span {
    position: relative;
    z-index: 1
}

.lpd .price_card .enroll_btn:focus {
    outline: 2px solid #0098E3;
    outline-offset: 2px
}

.lpd .react_card {
    background: #fff;
    border-radius: 7px;
    box-shadow: 1px 3px 3px -1px #02334f12;
    padding: 28px
}

.lpd .react_card .react_heading {
    font-size: 16px;
    line-height: 1.35;
    letter-spacing: .01em;
    color: #02334F;
    font-weight: 600;
    margin-bottom: 14px;
    text-align: center
}

.lpd .react_card .react_row {
    display: flex;
    flex-direction: row;
    gap: 6px;
    justify-content: center;
    flex-wrap: wrap
}

.lpd .react_card .react_opt {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer
}

.lpd .react_card .react_opt input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0
}

.lpd .react_card .react_lbl {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 7px;
    border: 1px solid #02334f1f;
    cursor: pointer;
    transition: background .15s ease-out, border-color .15s ease-out, transform .12s ease;
    background: #f4f8fb
}

.lpd .react_card .react_lbl:hover {
    background: #0098e314;
    border-color: #0098E3;
    transform: translateY(-2px)
}

.lpd .react_card .react_opt input[type="radio"]:checked+.react_lbl {
    background: #0098e32e;
    border-color: #0098E3;
    transform: scale(1.08)
}

.lpd .react_card .react_icon {
    font-size: 23px;
    line-height: 1.1
}

.lpd .react_card .react_txt {
    font-size: 15px;
    line-height: 1.35;
    color: #02334F;
    letter-spacing: .01em
}

.lpd .dots_deco {
    display: flex;
    flex-direction: row;
    gap: 6px;
    flex-wrap: wrap;
    padding: 14px 0;
    justify-content: center
}

.lpd .dots_deco .dot {
    border-radius: 48px;
    background: #0098e340;
    flex-shrink: 0
}

.lpd .status_inline {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #0098e31a;
    border-radius: 48px;
    padding: 6px 14px;
    font-size: 15px;
    line-height: 1.35;
    color: #02334F;
    font-weight: 600
}

.lpd .status_inline .status_dot {
    width: 8px;
    height: 8px;
    border-radius: 48px;
    background: #0098E3;
    animation: pulse_dot 1.8s ease-in-out infinite alternate
}

@keyframes pulse_dot {
    from {
        opacity: 1
    }

    to {
        opacity: .3
    }
}

.lpd .bg_anim_block {
    animation: bg_osc 4s ease-in-out infinite alternate
}

@keyframes bg_osc {
    from {
        background-color: #02334F
    }

    to {
        background-color: #01273d
    }
}

@media (max-width: 960px) {
    .lpd .hero_band .hero_inner {
        flex-direction: column;
        padding: 0 28px;
        gap: 28px
    }

    .lpd .hero_band .hero_img_col {
        flex: 0 0 auto;
        width: 100%
    }

    .lpd .hero_band .prog_title {
        font-size: 31px
    }

    .lpd .body_grid {
        grid-template-columns: 1fr;
        padding: 28px;
        gap: 28px
    }

    .lpd .desc_block {
        padding: 28px
    }

    .lpd .prog_block {
        padding: 28px
    }
}

@media (max-width: 480px) {
    .lpd .hero_band .prog_title {
        font-size: 23px
    }

    .lpd .top_strip {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px
    }

    .lpd .hero_band .hero_text_col {
        padding-bottom: 28px
    }

    .lpd .hero_band .hero_stats {
        gap: 14px
    }

    .lpd .body_grid {
        padding: 14px
    }

    .lpd .desc_block {
        padding: 14px
    }

    .lpd .prog_block {
        padding: 14px
    }
}

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

.lp_prog .pg_band {
    width: 100%;
    background: linear-gradient(170deg, #fff 0%, #02334F 55%, #0098E3 100%);
    padding: 96px 28px 56px;
    position: relative
}

.lp_prog .pg_band::before {
    content: '';
    position: absolute;
    top: 28px;
    right: 56px;
    width: 180px;
    height: 1px;
    background: #0098E3;
    opacity: .18;
    transform: rotate(-35deg)
}

.lp_prog .pg_band::after {
    content: '';
    position: absolute;
    top: 56px;
    right: 96px;
    width: 120px;
    height: 1px;
    background: #02334F;
    opacity: .12;
    transform: rotate(-35deg)
}

.lp_prog .band_inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 56px;
    align-items: center
}

.lp_prog .band_text {
    padding-right: 28px
}

.lp_prog .band_label {
    display: inline-block;
    font-size: 15px;
    letter-spacing: .02em;
    color: #0098E3;
    border-bottom: 2px solid #0098E3;
    padding-bottom: 6px;
    margin-bottom: 28px;
    line-height: 1.35
}

.lp_prog .band_h1 {
    font-size: 58px;
    line-height: 1.1;
    letter-spacing: .01em;
    color: #fff;
    margin: 0 0 28px
}

.lp_prog .band_h1 em {
    font-style: normal;
    color: #0098E3
}

.lp_prog .band_manifesto {
    font-size: 19px;
    line-height: 1.6;
    color: #ffffffd9;
    margin: 0 0 28px;
    letter-spacing: .01em
}

.lp_prog .band_cta {
    display: inline-block;
    font-size: 16px;
    letter-spacing: .02em;
    color: #02334F;
    background: #fff;
    padding: 14px 28px;
    border-radius: 7px;
    text-decoration: none;
    line-height: 1.35;
    position: relative;
    overflow: hidden;
    transition: color .18s ease-out
}

.lp_prog .band_cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #0098E3;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .22s ease-out;
    z-index: 0
}

.lp_prog .band_cta:hover::before {
    transform: scaleX(1)
}

.lp_prog .band_cta:hover {
    color: #fff
}

.lp_prog .band_cta span {
    position: relative;
    z-index: 1
}

.lp_prog .band_img_col {
    position: relative
}

.lp_prog .band_img_wrap {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 7px;
    overflow: hidden;
    position: relative
}

.lp_prog .band_img_wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block
}

.lp_prog .band_img_wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to left, #0098e359 0%, transparent 60%)
}

.lp_prog .band_deco {
    position: absolute;
    bottom: -14px;
    left: -14px;
    width: 80px;
    height: 80px;
    border: 2px solid #0098E3;
    border-radius: 7px;
    opacity: .22
}

.lp_prog .svg_div {
    width: 100%;
    line-height: 0;
    overflow: hidden
}

.lp_prog .svg_div svg {
    width: 100%;
    display: block
}

.lp_prog .cards_area {
    background: #f4f8fb;
    padding: 56px 28px;
    position: relative
}

.lp_prog .cards_area::before {
    content: '';
    position: absolute;
    bottom: 28px;
    left: 28px;
    width: 100px;
    height: 1px;
    background: #02334F;
    opacity: .09;
    transform: rotate(35deg)
}

.lp_prog .cards_inner {
    max-width: 1200px;
    margin: 0 auto
}

.lp_prog .sec_eyebrow {
    font-size: 15px;
    letter-spacing: .02em;
    color: #0098E3;
    text-align: center;
    margin-bottom: 6px;
    line-height: 1.35
}

.lp_prog .sec_eyebrow::before {
    content: '';
    display: block;
    width: 36px;
    height: 2px;
    background: #0098E3;
    margin: 0 auto 14px
}

.lp_prog .sec_h2 {
    font-size: 31px;
    line-height: 1.35;
    letter-spacing: .01em;
    color: #02334F;
    text-align: center;
    margin: 0 0 56px
}

.lp_prog .sec_h2 em {
    font-style: normal;
    color: #0098E3
}

.lp_prog .cards_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px
}

.lp_prog .prog_card {
    background: #fff;
    border-radius: 7px;
    box-shadow: 1px 4px 22px -1px #02334f1a;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: box-shadow .2s ease-out
}

.lp_prog .prog_card:hover {
    box-shadow: 1px 10px 52px -1px #02334f1a
}

.lp_prog .card_img_wrap {
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
    position: relative;
    flex-shrink: 0
}

.lp_prog .card_img_wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform .45s ease-out
}

.lp_prog .prog_card:hover .card_img_wrap img {
    transform: scale(1.04)
}

.lp_prog .card_tag {
    position: absolute;
    top: 14px;
    left: 14px;
    background: #02334F;
    color: #fff;
    font-size: 15px;
    letter-spacing: .02em;
    padding: 6px 14px;
    border-radius: 48px;
    line-height: 1.35
}

.lp_prog .card_seats {
    position: absolute;
    top: 14px;
    right: 14px;
    background: #0098E3;
    color: #fff;
    font-size: 15px;
    letter-spacing: .02em;
    padding: 6px 14px;
    border-radius: 48px;
    line-height: 1.35;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 6px
}

.lp_prog .card_body {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex: 1
}

.lp_prog .card_h3 {
    font-size: 19px;
    line-height: 1.35;
    letter-spacing: .01em;
    color: #02334F;
    margin: 0 0 14px
}

.lp_prog .card_desc {
    font-size: 15px;
    line-height: 1.6;
    color: #3a5a6e;
    margin: 0 0 28px;
    letter-spacing: .01em;
    text-indent: -.6em;
    padding-left: .6em
}

.lp_prog .card_meta {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
    font-size: 15px;
    color: #5a7a8e;
    letter-spacing: .01em
}

.lp_prog .card_meta_item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 6px
}

.lp_prog .card_divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, #0098E3 0%, #02334F 100%);
    opacity: .12;
    margin: 14px 0
}

.lp_prog .card_price_row {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 14px;
    margin-top: auto
}

.lp_prog .card_price_block {
    display: flex;
    flex-direction: column;
    gap: 6px
}

.lp_prog .card_price {
    font-size: 23px;
    line-height: 1.1;
    letter-spacing: .01em;
    color: #02334F
}

.lp_prog .card_price_des {
    font-size: 15px;
    line-height: 1.35;
    color: #5a7a8e;
    letter-spacing: .01em
}

.lp_prog .card_price_note {
    font-size: 15px;
    line-height: 1.35;
    color: #0098E3;
    letter-spacing: .01em
}

.lp_prog .card_link {
    display: inline-block;
    font-size: 15px;
    letter-spacing: .02em;
    color: #fff;
    background: #02334F;
    padding: 14px 28px;
    border-radius: 7px;
    text-decoration: none;
    line-height: 1.35;
    position: relative;
    overflow: hidden;
    transition: color .18s ease-out;
    white-space: nowrap;
    flex-shrink: 0
}

.lp_prog .card_link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #0098E3;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .22s ease-out;
    z-index: 0
}

.lp_prog .card_link:hover::before {
    transform: scaleX(1)
}

.lp_prog .card_link:hover {
    color: #fff
}

.lp_prog .card_link span {
    position: relative;
    z-index: 1
}

.lp_prog .experts_area {
    background: #fff;
    padding: 96px 28px 56px;
    position: relative
}

.lp_prog .experts_area::after {
    content: '';
    position: absolute;
    top: 56px;
    right: 56px;
    width: 140px;
    height: 1px;
    background: #0098E3;
    opacity: .13;
    transform: rotate(-35deg)
}

.lp_prog .experts_inner {
    max-width: 1200px;
    margin: 0 auto
}

.lp_prog .experts_grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 28px;
    margin-top: 56px
}

.lp_prog .expert_card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #f4f8fb;
    border-radius: 7px;
    padding: 28px;
    box-shadow: 1px 3px 3px -1px #02334f12;
    transition: box-shadow .2s ease
}

.lp_prog .expert_card:hover {
    box-shadow: 1px 4px 22px -1px #02334f1a
}

.lp_prog .expert_port {
    width: 120px;
    height: 154px;
    border-radius: 7px;
    overflow: hidden;
    margin-bottom: 28px;
    flex-shrink: 0
}

.lp_prog .expert_port img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block
}

.lp_prog .expert_name {
    font-size: 19px;
    line-height: 1.35;
    letter-spacing: .01em;
    color: #02334F;
    margin: 0 0 6px;
    text-align: center
}

.lp_prog .expert_role {
    font-size: 15px;
    line-height: 1.35;
    color: #0098E3;
    letter-spacing: .02em;
    text-align: center;
    margin-bottom: 14px
}

.lp_prog .expert_bio {
    font-size: 15px;
    line-height: 1.6;
    color: #3a5a6e;
    letter-spacing: .01em;
    text-align: left;
    margin: 0
}

.lp_prog .stats_area {
    background: linear-gradient(155deg, #02334F 0%, #014a72 50%, #0098E3 100%);
    padding: 56px 28px;
    position: relative;
    overflow: hidden
}

.lp_prog .stats_bg {
    position: absolute;
    inset: 0;
    background-size: 200% 100%;
    background-position: 0 50%;
    animation: pan_bg 18s linear infinite alternate;
    opacity: .06;
    background-image: url(./image_archive/030526tmpb.jpg);
    background-size: cover
}

@keyframes pan_bg {
    from {
        background-position: 0 50%
    }

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

.lp_prog .stats_inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1
}

.lp_prog .stats_h2 {
    font-size: 31px;
    line-height: 1.35;
    letter-spacing: .01em;
    color: #fff;
    text-align: center;
    margin: 0 0 56px
}

.lp_prog .stats_h2 em {
    font-style: normal;
    color: #0098E3
}

.lp_prog .stats_row {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 28px;
    align-items: stretch
}

.lp_prog .stat_item {
    background: #ffffff12;
    border-radius: 7px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    box-shadow: inset 1px 3px 3px -1px #0098e312
}

.lp_prog .stat_num {
    font-size: 58px;
    line-height: 1.1;
    letter-spacing: .01em;
    color: #0098E3
}

.lp_prog .stat_label {
    font-size: 16px;
    line-height: 1.35;
    color: #fffc;
    letter-spacing: .02em;
    text-align: center
}

.lp_prog .stat_center {
    background: #ffffff1c;
    border-radius: 7px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    box-shadow: inset 1px 3px 3px -1px #0098e31a
}

.lp_prog .stat_center_num {
    font-size: 58px;
    line-height: 1.1;
    letter-spacing: .01em;
    color: #fff
}

.lp_prog .stat_center_label {
    font-size: 19px;
    line-height: 1.35;
    color: #ffffffe6;
    letter-spacing: .01em;
    text-align: center
}

.lp_prog .stat_center_sub {
    font-size: 15px;
    line-height: 1.6;
    color: #ffffffa6;
    letter-spacing: .01em;
    text-align: center
}

.lp_prog .cta_area {
    background: #fff;
    padding: 96px 28px 56px;
    position: relative
}

.lp_prog .cta_area::before {
    content: '';
    position: absolute;
    bottom: 56px;
    left: 96px;
    width: 160px;
    height: 1px;
    background: #02334F;
    opacity: .1;
    transform: rotate(35deg)
}

.lp_prog .cta_inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center
}

.lp_prog .cta_text_col {
    padding-right: 28px
}

.lp_prog .cta_eyebrow {
    font-size: 15px;
    letter-spacing: .02em;
    color: #0098E3;
    margin-bottom: 14px;
    line-height: 1.35;
    display: block
}

.lp_prog .cta_eyebrow::before {
    content: '';
    display: block;
    width: 36px;
    height: 2px;
    background: #0098E3;
    margin-bottom: 14px
}

.lp_prog .cta_h2 {
    font-size: 31px;
    line-height: 1.35;
    letter-spacing: .01em;
    color: #02334F;
    margin: 0 0 28px
}

.lp_prog .cta_h2 em {
    font-style: normal;
    color: #0098E3
}

.lp_prog .cta_body {
    font-size: 16px;
    line-height: 1.6;
    color: #3a5a6e;
    letter-spacing: .01em;
    margin: 0 0 28px;
    text-indent: -.6em;
    padding-left: .6em
}

.lp_prog .cta_form_col {
    background: #f4f8fb;
    border-radius: 7px;
    padding: 28px;
    box-shadow: 1px 4px 22px -1px #02334f1a
}

.lp_prog .cta_form {
    display: flex;
    flex-direction: column;
    gap: 14px
}

.lp_prog .form_field {
    display: flex;
    flex-direction: column;
    gap: 6px
}

.lp_prog .form_label {
    font-size: 15px;
    line-height: 1.35;
    color: #02334F;
    letter-spacing: .01em
}

.lp_prog .form_input {
    font-size: 15px;
    line-height: 1.6;
    color: #02334F;
    background: #fff;
    border: 1px solid #02334f2e;
    border-radius: 7px;
    padding: 14px;
    outline: none;
    letter-spacing: .01em;
    transition: border-color .18s ease-out
}

.lp_prog .form_input::placeholder {
    color: #02334f59
}

.lp_prog .form_input:focus {
    border-color: #0098E3
}

.lp_prog .form_select {
    font-size: 15px;
    line-height: 1.6;
    color: #02334F;
    background: #fff;
    border: 1px solid #02334f2e;
    border-radius: 7px;
    padding: 14px;
    outline: none;
    letter-spacing: .01em;
    transition: border-color .18s ease-out;
    appearance: none
}

.lp_prog .form_select:focus {
    border-color: #0098E3
}

.lp_prog .form_btn {
    font-size: 16px;
    letter-spacing: .02em;
    color: #fff;
    background: #02334F;
    border: none;
    border-radius: 7px;
    padding: 14px 28px;
    cursor: pointer;
    line-height: 1.35;
    position: relative;
    overflow: hidden;
    transition: color .18s ease-out;
    text-align: center
}

.lp_prog .form_btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #0098E3;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .22s ease-out;
    z-index: 0
}

.lp_prog .form_btn:hover::before {
    transform: scaleX(1)
}

.lp_prog .form_btn span {
    position: relative;
    z-index: 1
}

.lp_prog .form_btn:focus {
    outline: 2px solid #0098E3;
    outline-offset: 2px
}

@media (max-width: 960px) {
    .lp_prog .band_inner {
        grid-template-columns: 1fr;
        gap: 28px
    }

    .lp_prog .band_img_col {
        display: none
    }

    .lp_prog .band_h1 {
        font-size: 31px
    }

    .lp_prog .cards_grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .lp_prog .experts_grid {
        grid-template-columns: 1fr 1fr
    }

    .lp_prog .stats_row {
        grid-template-columns: 1fr 1fr
    }

    .lp_prog .stat_center {
        grid-column: span 2
    }

    .lp_prog .cta_inner {
        grid-template-columns: 1fr;
        gap: 28px
    }

    .lp_prog .cta_text_col {
        padding-right: 0
    }
}

@media (max-width: 480px) {
    .lp_prog .band_h1 {
        font-size: 23px
    }

    .lp_prog .cards_grid {
        grid-template-columns: 1fr
    }

    .lp_prog .experts_grid {
        grid-template-columns: 1fr
    }

    .lp_prog .stats_row {
        grid-template-columns: 1fr
    }

    .lp_prog .stat_center {
        grid-column: span 1
    }

    .lp_prog .pg_band {
        padding: 56px 14px 28px
    }

    .lp_prog .cards_area {
        padding: 28px 14px
    }

    .lp_prog .experts_area {
        padding: 56px 14px 28px
    }

    .lp_prog .cta_area {
        padding: 56px 14px 28px
    }

    .lp_prog .stats_area {
        padding: 28px 14px
    }
}

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

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

.cnt_pg .top_band {
    background: linear-gradient(160deg, #02334F 0%, #02334F 40%, #0098E3 100%);
    padding: 96px 28px 56px;
    position: relative
}

.cnt_pg .top_band::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(#ffffff0a 1px, transparent 1px), linear-gradient(90deg, #ffffff0a 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none
}

.cnt_pg .band_inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 56px
}

.cnt_pg .band_text {
    flex: 1
}

.cnt_pg .band_eyebrow {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px
}

.cnt_pg .eyebrow_line {
    width: 48px;
    height: 2px;
    background: #0098E3
}

.cnt_pg .eyebrow_label {
    font-size: 15px;
    line-height: 1.35;
    letter-spacing: .02em;
    color: #0098E3;
    text-transform: uppercase
}

.cnt_pg .band_h1 {
    font-size: 58px;
    line-height: 1.1;
    letter-spacing: .01em;
    color: #fff;
    margin: 0 0 28px
}

.cnt_pg .band_h1 span {
    color: #0098E3
}

.cnt_pg .band_desc {
    font-size: 19px;
    line-height: 1.6;
    letter-spacing: .01em;
    color: #ffffffc7;
    max-width: 480px
}

.cnt_pg .band_meta {
    display: flex;
    flex-direction: column;
    gap: 28px;
    min-width: 260px
}

.cnt_pg .meta_item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 14px
}

.cnt_pg .meta_icon {
    width: 40px;
    height: 40px;
    border-radius: 7px;
    background: #0098e32e;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.cnt_pg .meta_icon i {
    font-size: 19px;
    color: #0098E3
}

.cnt_pg .meta_detail {
    display: flex;
    flex-direction: column;
    gap: 6px
}

.cnt_pg .meta_label {
    font-size: 15px;
    line-height: 1.35;
    letter-spacing: .02em;
    color: #ffffff80
}

.cnt_pg .meta_val {
    font-size: 16px;
    line-height: 1.35;
    letter-spacing: .01em;
    color: #fff;
    text-decoration: none;
    transition: color .18s ease-out
}

.cnt_pg .meta_val:hover {
    color: #0098E3
}

.cnt_pg .form_zone {
    background: #f4f8fb;
    padding: 96px 28px
}

.cnt_pg .form_wrap {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 56px;
    align-items: start
}

.cnt_pg .form_aside {
    display: flex;
    flex-direction: column;
    gap: 28px
}

.cnt_pg .aside_accent {
    width: 40px;
    height: 3px;
    background: #0098E3;
    border-radius: 48px
}

.cnt_pg .aside_h2 {
    font-size: 31px;
    line-height: 1.35;
    letter-spacing: .01em;
    color: #02334F;
    margin: 0
}

.cnt_pg .aside_h2 em {
    font-style: normal;
    color: #0098E3
}

.cnt_pg .aside_body {
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: .01em;
    color: #3a5a72;
    text-indent: -14px;
    padding-left: 14px
}

.cnt_pg .aside_note {
    font-size: 15px;
    line-height: 1.6;
    letter-spacing: .01em;
    color: #5a7a92;
    padding: 14px;
    border-top: 1px solid #02334f1f
}

.cnt_pg .rating_preview {
    display: flex;
    flex-direction: row;
    gap: 6px;
    align-items: center
}

.cnt_pg .star_shape {
    width: 22px;
    height: 22px
}

.cnt_pg .rating_txt {
    font-size: 15px;
    line-height: 1.35;
    color: #02334F;
    margin-left: 6px
}

.cnt_pg .frm {
    background: #fff;
    border-radius: 7px;
    padding: 56px;
    box-shadow: 1px 4px 22px -1px #02334f1a
}

.cnt_pg .frm_row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px
}

.cnt_pg .frm_field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 14px
}

.cnt_pg .frm_field:last-of-type {
    margin-bottom: 0
}

.cnt_pg .f_label {
    font-size: 15px;
    line-height: 1.35;
    letter-spacing: .01em;
    color: #02334F;
    font-weight: 600
}

.cnt_pg .f_input {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    line-height: 1.35;
    letter-spacing: .01em;
    color: #02334F;
    background: #f4f8fb;
    border: 1.5px solid #02334f26;
    border-radius: 7px;
    outline: none;
    transition: border-color .18s ease-out, background .18s ease-out
}

.cnt_pg .f_input::placeholder {
    color: #02334f59
}

.cnt_pg .f_input:focus {
    border-color: #0098E3;
    background: #fff
}

.cnt_pg .rating_group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 28px
}

.cnt_pg .rating_stars {
    display: flex;
    flex-direction: row-reverse;
    gap: 6px;
    justify-content: flex-end
}

.cnt_pg .rating_stars input[type="radio"] {
    display: none
}

.cnt_pg .rating_stars label {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .12s ease-out
}

.cnt_pg .rating_stars label svg {
    width: 32px;
    height: 32px;
    fill: #02334f26;
    transition: fill .15s ease
}

.cnt_pg .rating_stars input[type="radio"]:checked~label svg,
.cnt_pg .rating_stars label:hover svg,
.cnt_pg .rating_stars label:hover~label svg {
    fill: #0098E3
}

.cnt_pg .rating_stars label:hover {
    transform: scale(1.15)
}

.cnt_pg .privacy_row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 28px;
    margin-top: 28px
}

.cnt_pg .priv_check {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    accent-color: #0098E3;
    margin-top: 2px;
    cursor: pointer
}

.cnt_pg .priv_txt {
    font-size: 15px;
    line-height: 1.6;
    letter-spacing: .01em;
    color: #3a5a72
}

.cnt_pg .priv_txt a {
    color: #0098E3;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color .15s ease-out
}

.cnt_pg .priv_txt a:hover {
    color: #02334F
}

.cnt_pg .submit_btn {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 14px 28px;
    font-size: 16px;
    line-height: 1.35;
    letter-spacing: .01em;
    color: #fff;
    background: #02334F;
    border: none;
    border-radius: 7px;
    cursor: pointer;
    transition: color .25s ease-out;
    width: 100%;
    justify-content: center
}

.cnt_pg .submit_btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #0098E3;
    transform: translateX(-100%);
    transition: transform .28s ease-out;
    z-index: 0
}

.cnt_pg .submit_btn:hover::before {
    transform: translateX(0)
}

.cnt_pg .submit_btn span,
.cnt_pg .submit_btn i {
    position: relative;
    z-index: 1
}

.cnt_pg .submit_btn:focus {
    outline: 3px solid #0098E3;
    outline-offset: 3px
}

.cnt_pg .submit_btn:active {
    transform: scale(0.98)
}

@media (max-width: 960px) {
    .cnt_pg .band_inner {
        flex-direction: column;
        gap: 28px;
        align-items: flex-start
    }

    .cnt_pg .band_h1 {
        font-size: 31px
    }

    .cnt_pg .form_wrap {
        grid-template-columns: 1fr;
        gap: 28px
    }

    .cnt_pg .frm {
        padding: 28px
    }
}

@media (max-width: 480px) {
    .cnt_pg .top_band {
        padding: 56px 14px 28px
    }

    .cnt_pg .band_h1 {
        font-size: 23px
    }

    .cnt_pg .frm_row {
        grid-template-columns: 1fr
    }

    .cnt_pg .form_zone {
        padding: 56px 14px
    }

    .cnt_pg .frm {
        padding: 14px
    }
}

.abt {
    background: #f4f7fa;
    overflow-x: clip;
    position: relative
}

.abt .schema-data {
    display: none
}

.abt .geo-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden
}

.abt .geo-bg::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 520px;
    height: 520px;
    border: 1.5px solid #0098e317;
    border-radius: 50%;
    animation: geo_spin 28s linear infinite
}

.abt .geo-bg::after {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 380px;
    height: 380px;
    border: 1px solid #02334f12;
    border-radius: 50%;
    animation: geo_spin 20s linear infinite reverse
}

@keyframes geo_spin {
    from {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(360deg)
    }
}

.abt .vignette {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background: radial-gradient(ellipse at 0% 0%, #02334f21 0%, transparent 55%), radial-gradient(ellipse at 100% 100%, #02334f1c 0%, transparent 55%), radial-gradient(ellipse at 100% 0%, #0098e312 0%, transparent 40%), radial-gradient(ellipse at 0% 100%, #0098e312 0%, transparent 40%)
}

.abt .pg_wrap {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 28px
}

.abt .manifesto {
    padding: 96px 0 56px;
    position: relative;
    overflow: hidden
}

.abt .manifesto_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center
}

.abt .manifesto_mosaic {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 14px;
    position: relative
}

.abt .manifesto_mosaic::before {
    content: '';
    position: absolute;
    inset: -28px;
    background-image: linear-gradient(#0098e30f 1px, transparent 1px), linear-gradient(90deg, #0098e30f 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
    z-index: 0
}

.abt .m_img_a {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    position: relative;
    z-index: 1;
    border-radius: 7px;
    overflow: hidden;
    aspect-ratio: 3/4
}

.abt .m_img_b {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    position: relative;
    z-index: 1;
    border-radius: 7px;
    overflow: hidden;
    aspect-ratio: 4/3
}

.abt .m_img_c {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    position: relative;
    z-index: 1;
    border-radius: 7px;
    overflow: hidden;
    aspect-ratio: 4/3
}

.abt .m_img_a img,
.abt .m_img_b img,
.abt .m_img_c img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform .5s ease-out;
    filter: saturate(0.5) sepia(0.3)
}

.abt .m_img_a:hover img,
.abt .m_img_b:hover img,
.abt .m_img_c:hover img {
    transform: scale(1.04);
    filter: saturate(1) sepia(0)
}

.abt .m_img_a::after,
.abt .m_img_b::after,
.abt .m_img_c::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, #0098e347 0%, #02334f8c 100%);
    transition: opacity .4s ease-out;
    pointer-events: none
}

.abt .m_img_a:hover::after,
.abt .m_img_b:hover::after,
.abt .m_img_c:hover::after {
    opacity: 0
}

.abt .manifesto_txt {
    display: flex;
    flex-direction: column;
    gap: 28px
}

.abt .acc_line {
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, #0098E3, #02334F);
    border-radius: 48px
}

.abt .manifesto_h1 {
    font-size: 58px;
    line-height: 1.1;
    letter-spacing: .01em;
    color: #02334F;
    margin: 0
}

.abt .manifesto_h1 .acc_word {
    color: #0098E3
}

.abt .manifesto_decl {
    font-size: 19px;
    line-height: 1.6;
    color: #02334F;
    margin: 0;
    text-indent: -1.2em;
    padding-left: 1.2em;
    opacity: .85
}

.abt .manifesto_sub {
    font-size: 16px;
    line-height: 1.6;
    color: #02334F;
    margin: 0;
    opacity: .72
}

.abt .m_badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #0098e31a;
    border: 1px solid #0098e338;
    border-radius: 48px;
    padding: 6px 14px;
    font-size: 15px;
    color: #0098E3;
    letter-spacing: .02em;
    width: fit-content
}

.abt .wave_div1 {
    line-height: 0;
    overflow: hidden
}

.abt .wave_div1 svg {
    display: block;
    width: 100%
}

.abt .story {
    background: #02334F;
    padding: 96px 0;
    position: relative
}

.abt .story_inner {
    display: grid;
    grid-template-columns: 30% 1fr;
    gap: 56px;
    align-items: start
}

.abt .story_left {
    display: flex;
    flex-direction: column;
    gap: 28px;
    position: sticky;
    top: 96px
}

.abt .story_label {
    font-size: 15px;
    letter-spacing: .02em;
    color: #0098E3;
    text-transform: uppercase
}

.abt .story_h2 {
    font-size: 31px;
    line-height: 1.35;
    color: #FFF;
    margin: 0
}

.abt .story_h2 .acc_word {
    color: #0098E3
}

.abt .story_portrait {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #0098e366;
    box-shadow: 1px 4px 22px -1px #0098e31a
}

.abt .story_portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform .5s ease-out
}

.abt .story_portrait:hover img {
    transform: scale(1.06)
}

.abt .person_name {
    font-size: 19px;
    color: #FFF;
    margin: 0;
    line-height: 1.35
}

.abt .person_role {
    font-size: 15px;
    color: #fff9;
    margin: 0;
    line-height: 1.6
}

.abt .story_right {
    display: flex;
    flex-direction: column;
    gap: 28px
}

.abt .story_acc_line {
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, #0098E3, #ffffff4d);
    border-radius: 48px
}

.abt .story_p {
    font-size: 16px;
    line-height: 1.8;
    color: #ffffffd1;
    margin: 0;
    text-indent: -1.2em;
    padding-left: 1.2em
}

.abt .metrics_row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 14px
}

.abt .metric_card {
    background: #ffffff0d;
    border: 1px solid #0098e32e;
    border-radius: 7px;
    padding: 28px 14px;
    text-align: center;
    box-shadow: inset 1px 3px 3px -1px #0098e312;
    transition: background .2s ease-out, border-color .2s ease-out
}

.abt .metric_card:hover {
    background: #0098e31a;
    border-color: #0098e366
}

.abt .metric_num {
    font-size: 31px;
    line-height: 1.1;
    color: #0098E3;
    display: block;
    letter-spacing: .01em
}

.abt .metric_lbl {
    font-size: 15px;
    color: #fff9;
    line-height: 1.6;
    display: block;
    margin-top: 6px
}

.abt .story_img_wide {
    border-radius: 7px;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 16/7
}

.abt .story_img_wide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform .5s ease-out
}

.abt .story_img_wide:hover img {
    transform: scale(1.03)
}

.abt .wave_div2 {
    line-height: 0;
    overflow: hidden;
    background: #02334F
}

.abt .wave_div2 svg {
    display: block;
    width: 100%
}

.abt .approach {
    background: #FFF;
    padding: 96px 0
}

.abt .approach_head {
    text-align: center;
    margin-bottom: 56px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px
}

.abt .approach_acc {
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, #02334F, #0098E3);
    border-radius: 48px
}

.abt .approach_h2 {
    font-size: 31px;
    line-height: 1.35;
    color: #02334F;
    margin: 0;
    text-align: center
}

.abt .approach_h2 .acc_word {
    color: #0098E3
}

.abt .approach_sub {
    font-size: 16px;
    line-height: 1.6;
    color: #02334F;
    opacity: .7;
    max-width: 560px;
    text-align: center;
    margin: 0
}

.abt .pillars {
    display: grid;
    grid-template-columns: 30% 1fr;
    gap: 56px;
    align-items: start
}

.abt .pillar_img {
    position: sticky;
    top: 96px;
    border-radius: 7px;
    overflow: hidden;
    aspect-ratio: 3/4;
    box-shadow: 1px 10px 52px -1px #02334f1a
}

.abt .pillar_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform .5s ease-out
}

.abt .pillar_img:hover img {
    transform: scale(1.04)
}

.abt .pillar_list {
    display: flex;
    flex-direction: column;
    gap: 14px
}

.abt .pillar_item {
    border: 1px solid #02334f1a;
    border-radius: 7px;
    padding: 28px;
    background: #f4f7fa;
    box-shadow: inset 1px 3px 3px -1px #02334f12;
    transition: border-color .15s ease-out, background .15s ease-out
}

.abt .pillar_item:hover {
    border-color: #0098e359;
    background: #0098e30a
}

.abt .pillar_icon {
    width: 40px;
    height: 40px;
    border-radius: 7px;
    background: linear-gradient(135deg, #0098E3, #02334F);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    flex-shrink: 0
}

.abt .pillar_icon i {
    font-size: 19px;
    color: #FFF
}

.abt .pillar_h4 {
    font-size: 19px;
    line-height: 1.35;
    color: #02334F;
    margin: 0 0 6px
}

.abt .pillar_p {
    font-size: 16px;
    line-height: 1.6;
    color: #02334F;
    opacity: .75;
    margin: 0
}

.abt .wave_div3 {
    line-height: 0;
    overflow: hidden;
    background: #FFF
}

.abt .wave_div3 svg {
    display: block;
    width: 100%
}

.abt .contact_sec {
    background: #f4f7fa;
    padding: 96px 0;
    position: relative
}

.abt .contact_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start
}

.abt .contact_info {
    display: flex;
    flex-direction: column;
    gap: 28px
}

.abt .contact_acc {
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, #02334F, #0098E3);
    border-radius: 48px
}

.abt .contact_h2 {
    font-size: 31px;
    line-height: 1.35;
    color: #02334F;
    margin: 0
}

.abt .contact_h2 .acc_word {
    color: #0098E3
}

.abt .contact_desc {
    font-size: 16px;
    line-height: 1.8;
    color: #02334F;
    opacity: .78;
    margin: 0;
    text-indent: -1.2em;
    padding-left: 1.2em
}

.abt .contact_detail_list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    list-style: none;
    padding: 0;
    margin: 0
}

.abt .contact_detail_list li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 15px;
    color: #02334F;
    line-height: 1.6
}

.abt .contact_detail_list li i {
    font-size: 19px;
    color: #0098E3;
    flex-shrink: 0
}

.abt .contact_detail_list a {
    color: #02334F;
    text-decoration: none;
    transition: color .15s ease-out
}

.abt .contact_detail_list a:hover {
    color: #0098E3
}

.abt .form_card {
    background: #FFF;
    border-radius: 7px;
    border: 1px solid #02334f1a;
    box-shadow: 1px 4px 22px -1px #02334f1a;
    padding: 56px 28px;
    display: flex;
    flex-direction: column;
    gap: 14px
}

.abt .form_row {
    display: flex;
    flex-direction: column;
    gap: 6px
}

.abt .form_label {
    font-size: 15px;
    color: #02334F;
    letter-spacing: .01em;
    line-height: 1.35
}

.abt .form_input {
    width: 100%;
    padding: 14px;
    border: 1px solid #02334f2e;
    border-radius: 7px;
    background: #f4f7fa;
    font-size: 16px;
    color: #02334F;
    line-height: 1.35;
    outline: none;
    transition: border-color .18s ease-out, box-shadow .18s ease-out;
    box-sizing: border-box
}

.abt .form_input::placeholder {
    color: #02334f59
}

.abt .form_input:focus {
    border-color: #0098E3;
    box-shadow: 0 0 0 3px #0098e31f
}

.abt .form_select {
    width: 100%;
    padding: 14px;
    border: 1px solid #02334f2e;
    border-radius: 7px;
    background: #f4f7fa;
    font-size: 16px;
    color: #02334F;
    line-height: 1.35;
    outline: none;
    appearance: none;
    cursor: pointer;
    transition: border-color .18s ease-out, box-shadow .18s ease-out;
    box-sizing: border-box;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2302334F' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px
}

.abt .form_select:focus {
    border-color: #0098E3;
    box-shadow: 0 0 0 3px #0098e31f
}

.abt .form_check_row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-top: 6px
}

.abt .form_check {
    width: 18px;
    height: 18px;
    border: 1.5px solid #02334f4d;
    border-radius: 7px;
    background: #f4f7fa;
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 2px;
    accent-color: #0098E3
}

.abt .form_check_lbl {
    font-size: 15px;
    color: #02334F;
    line-height: 1.6;
    opacity: .8
}

.abt .form_check_lbl a {
    color: #0098E3;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color .15s ease-out
}

.abt .form_check_lbl a:hover {
    color: #02334F
}

.abt .submit_btn {
    position: relative;
    overflow: hidden;
    padding: 14px 28px;
    background: #02334F;
    color: #FFF;
    border: none;
    border-radius: 7px;
    font-size: 16px;
    letter-spacing: .02em;
    cursor: pointer;
    margin-top: 6px;
    transition: color .2s ease-out;
    text-align: center
}

.abt .submit_btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #0098E3;
    transform: translateX(-101%);
    transition: transform .25s ease-out;
    z-index: 0
}

.abt .submit_btn:hover::before {
    transform: translateX(0)
}

.abt .submit_btn span {
    position: relative;
    z-index: 1
}

.abt .submit_btn:focus {
    outline: 3px solid #0098E3;
    outline-offset: 2px
}

@media (max-width: 960px) {
    .abt .manifesto_grid {
        grid-template-columns: 1fr;
        gap: 28px
    }

    .abt .manifesto_h1 {
        font-size: 31px
    }

    .abt .story_inner {
        grid-template-columns: 1fr;
        gap: 28px
    }

    .abt .story_left {
        position: static
    }

    .abt .story_portrait {
        width: 160px
    }

    .abt .metrics_row {
        grid-template-columns: 1fr 1fr
    }

    .abt .pillars {
        grid-template-columns: 1fr;
        gap: 28px
    }

    .abt .pillar_img {
        position: static;
        aspect-ratio: 16/7
    }

    .abt .contact_grid {
        grid-template-columns: 1fr;
        gap: 28px
    }
}

@media (max-width: 480px) {
    .abt .manifesto {
        padding: 56px 0 28px
    }

    .abt .manifesto_h1 {
        font-size: 23px
    }

    .abt .manifesto_mosaic {
        grid-template-columns: 1fr
    }

    .abt .m_img_a {
        grid-column: 1;
        grid-row: auto;
        aspect-ratio: 16/7
    }

    .abt .m_img_b,
    .abt .m_img_c {
        grid-column: 1;
        grid-row: auto
    }

    .abt .story {
        padding: 56px 0
    }

    .abt .metrics_row {
        grid-template-columns: 1fr
    }

    .abt .approach {
        padding: 56px 0
    }

    .abt .contact_sec {
        padding: 56px 0
    }

    .abt .form_card {
        padding: 28px 14px
    }
}

@media (min-width: 1440px) {
    .abt .manifesto_h1 {
        font-size: 58px
    }
}

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

.prm .t_block {
    background: linear-gradient(160deg, #fff 0%, #02334F 55%, #0098E3 100%);
    padding: 96px 28px 0;
    position: relative;
    text-align: center
}

.prm .t_block::after {
    content: '';
    display: block;
    width: 100%;
    height: 80px;
    background: #fff;
    clip-path: ellipse(55% 100% at 50% 100%);
    margin-top: 56px
}

.prm .t_inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative
}

.prm .t_eyebrow {
    display: inline-block;
    font-size: 15px;
    letter-spacing: .02em;
    color: #0098E3;
    background: #ffffff1f;
    border: 1px solid #0098e366;
    border-radius: 48px;
    padding: 6px 28px;
    margin-bottom: 28px
}

.prm .t_h1 {
    font-size: 58px;
    line-height: 1.1;
    letter-spacing: .01em;
    color: #fff;
    max-width: 820px;
    margin: 0 auto 28px
}

.prm .t_h1 span {
    background: linear-gradient(160deg, #fff 0%, #0098E3 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent
}

.prm .t_sub {
    font-size: 19px;
    line-height: 1.6;
    letter-spacing: .01em;
    color: #ffffffd1;
    max-width: 600px;
    margin: 0 auto 56px
}

.prm .t_img_wrap {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 7px 7px 0 0;
    overflow: hidden
}

.prm .t_img_wrap img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 7px 7px 0 0
}

.prm .t_img_overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #02334f8c 0%, #0098e32e 60%, transparent 100%);
    border-radius: 7px 7px 0 0
}

.prm .t_badge {
    position: absolute;
    bottom: 28px;
    left: 28px;
    background: #02334fd9;
    border: 1px solid #0098e359;
    border-radius: 7px;
    padding: 14px 28px;
    text-align: left;
    box-shadow: 1px 4px 22px -1px #02334f1a
}

.prm .t_badge_label {
    font-size: 15px;
    color: #0098E3;
    letter-spacing: .02em;
    line-height: 1.35
}

.prm .t_badge_val {
    font-size: 23px;
    color: #fff;
    letter-spacing: .01em;
    line-height: 1.35
}

.prm .exp_sec {
    background: #fff;
    padding: 96px 28px
}

.prm .exp_inner {
    max-width: 1200px;
    margin: 0 auto
}

.prm .sec_divider {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 14px;
    margin-bottom: 56px;
    justify-content: center
}

.prm .sec_divider_line {
    flex: 1;
    max-width: 180px;
    height: 1px;
    background: #02334F;
    opacity: .18
}

.prm .sec_divider_num {
    font-size: 15px;
    letter-spacing: .02em;
    color: #0098E3
}

.prm .exp_cols {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 28px;
    align-items: start
}

.prm .exp_col_center {
    position: relative;
    background: #02334F;
    border-radius: 7px;
    padding: 56px 28px;
    text-align: center;
    box-shadow: 1px 10px 52px -1px #02334f1a;
    margin-top: -28px
}

.prm .exp_col_side {
    padding: 28px;
    border-radius: 7px;
    border: 1px solid #02334f1a;
    box-shadow: inset 1px 3px 3px -1px #02334f12;
    background: #f4f8fb
}

.prm .col_accent_line {
    width: 36px;
    height: 3px;
    background: #0098E3;
    margin: 0 auto 14px;
    border-radius: 48px
}

.prm .col_accent_line_left {
    margin: 0 0 14px
}

.prm .exp_col_center .col_accent_line {
    margin: 0 auto 14px
}

.prm .exp_h2 {
    font-size: 31px;
    line-height: 1.35;
    letter-spacing: .01em;
    color: #fff;
    margin-bottom: 14px
}

.prm .exp_h2 span {
    color: #0098E3
}

.prm .exp_p_center {
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: .01em;
    color: #ffffffd1;
    text-indent: -1.1em;
    padding-left: 1.1em
}

.prm .exp_h4 {
    font-size: 19px;
    line-height: 1.35;
    letter-spacing: .01em;
    color: #02334F;
    margin-bottom: 14px
}

.prm .exp_p_side {
    font-size: 15px;
    line-height: 1.6;
    letter-spacing: .01em;
    color: #02334F;
    opacity: .8;
    text-indent: -1.1em;
    padding-left: 1.1em
}

.prm .exp_tag {
    display: inline-block;
    font-size: 15px;
    color: #0098E3;
    background: #0098e31a;
    border-radius: 48px;
    padding: 6px 14px;
    margin-top: 14px;
    letter-spacing: .01em
}

.prm .bracket_wrap {
    position: relative;
    padding: 28px
}

.prm .bracket_wrap::before,
.prm .bracket_wrap::after {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    border-color: #0098E3;
    border-style: solid;
    opacity: .5
}

.prm .bracket_wrap::before {
    top: 0;
    left: 0;
    border-width: 2px 0 0 2px;
    border-radius: 7px 0 0 0
}

.prm .bracket_wrap::after {
    bottom: 0;
    right: 0;
    border-width: 0 2px 2px 0;
    border-radius: 0 0 7px 0
}

.prm .ppl_sec {
    background: #02334F;
    padding: 96px 28px;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
    padding-bottom: 140px
}

.prm .ppl_inner {
    max-width: 1200px;
    margin: 0 auto
}

.prm .ppl_sec .sec_divider_line {
    background: #fff;
    opacity: .2
}

.prm .ppl_sec .sec_divider_num {
    color: #0098E3
}

.prm .ppl_head {
    text-align: center;
    margin-bottom: 56px
}

.prm .ppl_h2 {
    font-size: 31px;
    line-height: 1.35;
    letter-spacing: .01em;
    color: #fff;
    margin-bottom: 14px
}

.prm .ppl_h2 span {
    color: #0098E3
}

.prm .ppl_sub {
    font-size: 16px;
    line-height: 1.6;
    color: #ffffffb8;
    max-width: 560px;
    margin: 0 auto;
    letter-spacing: .01em
}

.prm .ppl_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-bottom: 56px
}

.prm .ppl_card {
    background: #ffffff0d;
    border: 1px solid #ffffff1a;
    border-radius: 7px;
    padding: 28px;
    display: flex;
    flex-direction: row;
    gap: 28px;
    align-items: flex-start;
    box-shadow: inset 1px 3px 3px -1px #0098e312;
    transition: background .2s ease-out
}

.prm .ppl_card:hover {
    background: #0098e31a
}

.prm .ppl_portrait {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    flex-shrink: 0;
    border: 2px solid #0098e366
}

.prm .ppl_card_body {
    flex: 1
}

.prm .ppl_name {
    font-size: 19px;
    line-height: 1.35;
    letter-spacing: .01em;
    color: #fff;
    margin-bottom: 6px
}

.prm .ppl_role {
    font-size: 15px;
    color: #0098E3;
    letter-spacing: .02em;
    margin-bottom: 14px
}

.prm .ppl_desc {
    font-size: 15px;
    line-height: 1.6;
    color: #ffffffb8;
    letter-spacing: .01em;
    text-indent: -1.1em;
    padding-left: 1.1em
}

.prm .ppl_img_row {
    border-radius: 7px;
    overflow: hidden;
    position: relative
}

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

.prm .ppl_img_caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(0deg, #02334fe6 0%, transparent 100%);
    padding: 28px
}

.prm .ppl_img_cap_text {
    font-size: 16px;
    line-height: 1.35;
    color: #fff;
    letter-spacing: .01em
}

.prm .val_sec {
    background: #f4f8fb;
    padding: 140px 28px 96px;
    margin-top: -48px
}

.prm .val_inner {
    max-width: 1200px;
    margin: 0 auto
}

.prm .val_layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start
}

.prm .val_left {
    position: relative
}

.prm .val_h2 {
    font-size: 31px;
    line-height: 1.35;
    letter-spacing: .01em;
    color: #02334F;
    margin-bottom: 28px
}

.prm .val_h2 span {
    color: #0098E3
}

.prm .val_p {
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: .01em;
    color: #02334F;
    opacity: .85;
    margin-bottom: 14px;
    text-indent: -1.1em;
    padding-left: 1.1em
}

.prm .val_table_wrap {
    border-radius: 7px;
    overflow: hidden;
    box-shadow: 1px 4px 22px -1px #02334f1a
}

.prm .val_table {
    width: 100%;
    border-collapse: collapse
}

.prm .val_table thead tr {
    background: #02334F
}

.prm .val_table thead th {
    font-size: 15px;
    letter-spacing: .02em;
    color: #fff;
    padding: 14px 28px;
    text-align: left;
    font-weight: 600
}

.prm .val_table tbody tr:nth-child(odd) {
    background: #fff
}

.prm .val_table tbody tr:nth-child(even) {
    background: #0098e30f
}

.prm .val_table tbody tr {
    transition: background .15s ease-out
}

.prm .val_table tbody tr:hover {
    background: #0098e324
}

.prm .val_table td {
    font-size: 15px;
    line-height: 1.6;
    color: #02334F;
    padding: 14px 28px;
    letter-spacing: .01em;
    border-bottom: 1px solid #02334f12
}

.prm .val_table td:first-child {
    font-weight: 600;
    color: #0098E3
}

.prm .val_img_wrap {
    border-radius: 7px;
    overflow: hidden;
    margin-top: 28px
}

.prm .val_img_wrap img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: center;
    display: block
}

.prm .val_note {
    margin-top: 28px;
    background: #fff;
    border-radius: 7px;
    padding: 28px;
    box-shadow: inset 1px 3px 3px -1px #02334f12
}

.prm .val_note_label {
    font-size: 15px;
    color: #0098E3;
    letter-spacing: .02em;
    margin-bottom: 6px
}

.prm .val_note_text {
    font-size: 16px;
    line-height: 1.6;
    color: #02334F;
    letter-spacing: .01em
}

.prm .blur_load {
    animation: blurIn .5s ease-out forwards
}

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

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

.prm .t_block .t_h1 {
    animation: blurIn .45s ease-out forwards
}

.prm .t_block .t_sub {
    animation: blurIn .55s ease-out .1s both
}

.prm .t_block .t_img_wrap {
    animation: blurIn .6s ease-out .2s both
}

@media (max-width: 960px) {
    .prm .t_h1 {
        font-size: 31px
    }

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

    .prm .exp_col_center {
        margin-top: 0
    }

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

    .prm .val_layout {
        grid-template-columns: 1fr;
        gap: 28px
    }

    .prm .ppl_sec {
        clip-path: none;
        padding-bottom: 96px
    }

    .prm .val_sec {
        padding-top: 96px;
        margin-top: 0
    }
}

@media (max-width: 480px) {
    .prm .t_h1 {
        font-size: 23px
    }

    .prm .t_sub {
        font-size: 16px
    }

    .prm .t_img_wrap img {
        height: 220px
    }

    .prm .ppl_card {
        flex-direction: column;
        gap: 14px
    }

    .prm .exp_sec {
        padding: 56px 14px
    }

    .prm .ppl_sec {
        padding: 56px 14px
    }

    .prm .val_sec {
        padding: 56px 14px
    }

    .prm .val_table td,
    .prm .val_table thead th {
        padding: 14px
    }
}

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

.spk .div_line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 28px
}

.spk .div_line span {
    width: 6px;
    height: 6px;
    border-radius: 48px;
    background: #0098E3;
    display: block
}

.spk .div_line em {
    width: 48px;
    height: 2px;
    background: #0098E3;
    display: block
}

.spk .schema_block {
    display: none
}

.spk .ttl_block {
    background: #02334F;
    position: relative;
    padding: 96px 28px 56px;
    overflow: hidden
}

.spk .ttl_block::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 420px;
    height: 420px;
    border-radius: 48px;
    border: 2px solid #0098e32e;
    pointer-events: none
}

.spk .ttl_block::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: 10%;
    width: 260px;
    height: 260px;
    border-radius: 48px;
    border: 1.5px solid #ffffff12;
    pointer-events: none
}

.spk .ttl_dots {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden
}

.spk .ttl_dots span {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 48px;
    background: #0098e340;
    display: block
}

.spk .ttl_dots span:nth-child(1) {
    top: 15%;
    left: 8%
}

.spk .ttl_dots span:nth-child(2) {
    top: 30%;
    left: 20%
}

.spk .ttl_dots span:nth-child(3) {
    top: 60%;
    left: 5%
}

.spk .ttl_dots span:nth-child(4) {
    top: 80%;
    left: 15%
}

.spk .ttl_dots span:nth-child(5) {
    top: 20%;
    right: 25%
}

.spk .ttl_dots span:nth-child(6) {
    top: 70%;
    right: 10%
}

.spk .ttl_dots span:nth-child(7) {
    top: 45%;
    right: 30%
}

.spk .ttl_inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 56px;
    position: relative;
    z-index: 1
}

.spk .ttl_copy {
    flex: 0 0 auto;
    width: 58%
}

.spk .ttl_eyebrow {
    font-size: 15px;
    color: #0098E3;
    letter-spacing: .02em;
    line-height: 1.35;
    margin-bottom: 28px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 14px
}

.spk .ttl_eyebrow::before {
    content: '';
    display: block;
    width: 32px;
    height: 2px;
    background: #0098E3;
    flex-shrink: 0
}

.spk .ttl_h1 {
    font-size: 58px;
    line-height: 1.1;
    letter-spacing: .01em;
    color: #fff;
    margin: 0 0 28px
}

.spk .ttl_h1 strong {
    color: #0098E3;
    font-weight: inherit
}

.spk .ttl_num {
    font-size: 31px;
    color: #0098E3;
    line-height: 1.35;
    letter-spacing: .01em;
    margin-bottom: 14px
}

.spk .ttl_desc {
    font-size: 19px;
    line-height: 1.6;
    color: #ffffffbf;
    letter-spacing: .01em;
    max-width: 480px
}

.spk .ttl_img_col {
    flex: 1 1 auto;
    position: relative;
    align-self: stretch;
    min-height: 320px
}

.spk .ttl_img_wrap {
    width: 100%;
    height: 100%;
    min-height: 320px;
    border-radius: 7px;
    overflow: hidden;
    position: relative
}

.spk .ttl_img_wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.spk .ttl_img_overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, #02334F 0%, #02334f8c 50%, transparent 100%);
    pointer-events: none
}

.spk .ttl_block .load_a {
    animation: fadeup .5s ease-out both
}

.spk .ttl_block .load_b {
    animation: fadeup .65s ease-out .12s both
}

.spk .ttl_block .load_c {
    animation: fadeup .7s ease-out .24s both
}

.spk .ttl_block .load_d {
    animation: fadeup .75s ease-out .38s both
}

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

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

.spk .events_block {
    background: #f4f8fb;
    padding: 96px 28px
}

.spk .events_inner {
    max-width: 1200px;
    margin: 0 auto
}

.spk .events_hd {
    text-align: center;
    margin-bottom: 56px
}

.spk .events_h2 {
    font-size: 31px;
    line-height: 1.35;
    letter-spacing: .01em;
    color: #02334F;
    margin: 0 0 14px
}

.spk .events_h2 em {
    color: #0098E3;
    font-style: normal
}

.spk .events_sub {
    font-size: 16px;
    line-height: 1.6;
    color: #02334F;
    opacity: .7;
    max-width: 520px;
    margin: 0 auto;
    letter-spacing: .01em
}

.spk .events_grid {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 28px
}

.spk .ev_list {
    display: flex;
    flex-direction: column;
    gap: 14px
}

.spk .ev_item {
    background: #fff;
    border-radius: 7px;
    padding: 28px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 28px;
    box-shadow: 1px 3px 3px -1px #02334f12;
    transition: box-shadow .18s ease-out;
    position: relative;
    overflow: hidden
}

.spk .ev_item::after {
    content: '';
    position: absolute;
    top: -14px;
    right: -14px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, transparent 50%, #0098e326 50%);
    pointer-events: none
}

.spk .ev_list:hover .ev_item:not(:hover) {
    opacity: .55;
    transition: opacity .2s ease-out
}

.spk .ev_list .ev_item {
    transition: opacity .2s ease-out, box-shadow .18s ease-out
}

.spk .ev_item:hover {
    box-shadow: 1px 4px 22px -1px #02334f1a;
    opacity: 1
}

.spk .ev_icon {
    width: 48px;
    height: 48px;
    border-radius: 7px;
    background: #02334F;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.spk .ev_icon i {
    font-size: 23px;
    color: #0098E3
}

.spk .ev_body {
    flex: 1 1 auto
}

.spk .ev_venue {
    font-size: 15px;
    color: #0098E3;
    letter-spacing: .02em;
    line-height: 1.35;
    margin-bottom: 6px
}

.spk .ev_title {
    font-size: 19px;
    line-height: 1.35;
    color: #02334F;
    letter-spacing: .01em;
    margin: 0 0 6px
}

.spk .ev_desc {
    font-size: 15px;
    line-height: 1.6;
    color: #02334F;
    opacity: .72;
    letter-spacing: .01em
}

.spk .ev_sidebar {
    display: flex;
    flex-direction: column;
    gap: 14px
}

.spk .ev_stat {
    background: #02334F;
    border-radius: 7px;
    padding: 28px;
    text-align: center;
    box-shadow: 1px 4px 22px -1px #02334f1a
}

.spk .ev_stat_num {
    font-size: 58px;
    line-height: 1.1;
    color: #0098E3;
    letter-spacing: .01em;
    display: block
}

.spk .ev_stat_label {
    font-size: 15px;
    color: #ffffffb3;
    line-height: 1.35;
    letter-spacing: .01em
}

.spk .ev_stat_sm {
    background: #0098E3;
    border-radius: 7px;
    padding: 28px;
    text-align: center
}

.spk .ev_stat_sm_num {
    font-size: 31px;
    line-height: 1.1;
    color: #fff;
    letter-spacing: .01em;
    display: block
}

.spk .ev_stat_sm_label {
    font-size: 15px;
    color: #fffc;
    line-height: 1.35;
    letter-spacing: .01em
}

.spk .themes_block {
    background: #fff;
    padding: 96px 28px
}

.spk .themes_inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    gap: 56px;
    align-items: flex-start
}

.spk .themes_aside {
    flex: 0 0 320px;
    position: sticky;
    top: 28px
}

.spk .themes_h2 {
    font-size: 31px;
    line-height: 1.35;
    letter-spacing: .01em;
    color: #02334F;
    margin: 0 0 14px
}

.spk .themes_h2 strong {
    color: #0098E3;
    font-weight: inherit
}

.spk .themes_lede {
    font-size: 16px;
    line-height: 1.6;
    color: #02334F;
    opacity: .72;
    letter-spacing: .01em;
    margin-bottom: 28px
}

.spk .themes_outline {
    width: 180px;
    height: 180px;
    border-radius: 48px;
    border: 2px solid #0098E3;
    opacity: .18;
    position: relative;
    margin-top: 28px
}

.spk .themes_outline::after {
    content: '';
    display: block;
    width: 110px;
    height: 110px;
    border-radius: 48px;
    border: 2px solid #02334F;
    opacity: .25;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)
}

.spk .themes_list {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    gap: 6px
}

.spk .th_item {
    border-radius: 7px;
    border: 1.5px solid #02334f1a;
    overflow: hidden
}

.spk .th_label {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 14px;
    padding: 28px;
    cursor: pointer;
    background: #fff;
    transition: background .18s ease-out
}

.spk .th_label:hover {
    background: #0098e30d
}

.spk .th_num {
    font-size: 23px;
    color: #0098E3;
    line-height: 1.1;
    letter-spacing: .01em;
    flex-shrink: 0;
    min-width: 36px
}

.spk .th_name {
    font-size: 19px;
    color: #02334F;
    line-height: 1.35;
    letter-spacing: .01em;
    flex: 1 1 auto
}

.spk .th_icon {
    font-size: 19px;
    color: #0098E3;
    flex-shrink: 0;
    transition: transform .2s ease
}

.spk .th_body {
    padding: 0 28px 28px;
    font-size: 15px;
    line-height: 1.6;
    color: #02334F;
    opacity: .72;
    letter-spacing: .01em
}

.spk .th_item:hover .th_icon {
    transform: rotate(90deg)
}

.spk .th_item:hover .th_body {
    display: block
}

.spk .th_body {
    display: none
}

.spk .th_item:hover .th_body {
    display: block
}

.spk .voices_block {
    background: #02334F;
    padding: 96px 28px;
    position: relative;
    overflow: hidden
}

.spk .voices_block::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    border-radius: 48px;
    border: 2px solid #0098e31f;
    pointer-events: none
}

.spk .voices_inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1
}

.spk .voices_hd {
    text-align: center;
    margin-bottom: 56px
}

.spk .voices_h2 {
    font-size: 31px;
    line-height: 1.35;
    letter-spacing: .01em;
    color: #fff;
    margin: 0 0 14px
}

.spk .voices_h2 em {
    color: #0098E3;
    font-style: normal
}

.spk .voices_sub {
    font-size: 16px;
    line-height: 1.6;
    color: #ffffffa6;
    letter-spacing: .01em;
    max-width: 480px;
    margin: 0 auto
}

.spk .voices_grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 28px
}

.spk .voice_card {
    background: #ffffff0d;
    border-radius: 7px;
    padding: 28px;
    border: 1px solid #0098e32e;
    position: relative;
    overflow: hidden;
    box-shadow: inset 1px 3px 3px -1px #0098e312;
    transition: border-color .2s ease-out
}

.spk .voice_card::after {
    content: '';
    position: absolute;
    top: -10px;
    right: -10px;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, transparent 50%, #0098e333 50%);
    pointer-events: none
}

.spk .voices_grid:hover .voice_card:not(:hover) {
    opacity: .5;
    transition: opacity .22s ease-out
}

.spk .voices_grid .voice_card {
    transition: opacity .22s ease-out, border-color .2s ease-out
}

.spk .voice_card:hover {
    border-color: #0098e380;
    opacity: 1
}

.spk .voice_quote {
    font-size: 16px;
    line-height: 1.8;
    color: #ffffffd1;
    letter-spacing: .01em;
    margin-bottom: 28px
}

.spk .voice_mark {
    display: block;
    width: 28px;
    height: 3px;
    background: #0098E3;
    margin-bottom: 14px;
    border-radius: 48px
}

.spk .voice_person {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 14px
}

.spk .voice_avatar {
    width: 40px;
    height: 40px;
    border-radius: 48px;
    background: linear-gradient(135deg, #0098E3, #02334F);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.spk .voice_avatar i {
    font-size: 19px;
    color: #fff
}

.spk .voice_name {
    font-size: 15px;
    color: #fff;
    line-height: 1.35;
    letter-spacing: .01em
}

.spk .voice_role {
    font-size: 15px;
    color: #ffffff80;
    line-height: 1.35;
    letter-spacing: .01em
}

.spk .collab_block {
    background: linear-gradient(250deg, #fff 0%, #0098e314 50%, #fff 100%);
    padding: 96px 28px
}

.spk .collab_inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 56px;
    align-items: center
}

.spk .collab_copy {
    display: flex;
    flex-direction: column;
    gap: 28px
}

.spk .collab_h2 {
    font-size: 31px;
    line-height: 1.35;
    letter-spacing: .01em;
    color: #02334F;
    margin: 0
}

.spk .collab_h2 strong {
    color: #0098E3;
    font-weight: inherit
}

.spk .collab_p {
    font-size: 16px;
    line-height: 1.6;
    color: #02334F;
    opacity: .75;
    letter-spacing: .01em;
    text-indent: -1.2em;
    padding-left: 1.2em
}

.spk .collab_details {
    display: flex;
    flex-direction: column;
    gap: 14px
}

.spk .collab_row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 14px;
    font-size: 15px;
    line-height: 1.6;
    color: #02334F;
    letter-spacing: .01em
}

.spk .collab_row i {
    color: #0098E3;
    font-size: 19px;
    flex-shrink: 0;
    margin-top: 2px
}

.spk .collab_btn {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;
    background: #02334F;
    color: #fff;
    font-size: 16px;
    letter-spacing: .01em;
    line-height: 1.35;
    padding: 14px 28px;
    border-radius: 7px;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    align-self: flex-start;
    text-decoration: none;
    transition: color .18s ease-out
}

.spk .collab_btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #0098E3;
    transform: translateX(-100%);
    transition: transform .22s ease-out;
    z-index: 0
}

.spk .collab_btn:hover::before {
    transform: translateX(0)
}

.spk .collab_btn span {
    position: relative;
    z-index: 1
}

.spk .collab_btn i {
    position: relative;
    z-index: 1;
    font-size: 16px
}

.spk .collab_side {
    display: flex;
    flex-direction: column;
    gap: 14px
}

.spk .collab_badge {
    background: #02334F;
    border-radius: 7px;
    padding: 28px;
    text-align: center;
    box-shadow: 1px 10px 52px -1px #02334f1a
}

.spk .collab_badge_ico {
    width: 56px;
    height: 56px;
    border-radius: 48px;
    background: #0098e32e;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px
}

.spk .collab_badge_ico i {
    font-size: 23px;
    color: #0098E3
}

.spk .collab_badge_label {
    font-size: 15px;
    color: #ffffffbf;
    line-height: 1.35;
    letter-spacing: .01em
}

.spk .collab_badge_val {
    font-size: 23px;
    color: #fff;
    line-height: 1.35;
    letter-spacing: .01em;
    display: block;
    margin-top: 6px
}

.spk .collab_note {
    background: #0098e314;
    border-radius: 7px;
    padding: 28px;
    font-size: 15px;
    line-height: 1.6;
    color: #02334F;
    letter-spacing: .01em;
    border: 1px solid #0098e333
}

@media (max-width: 960px) {
    .spk .ttl_inner {
        flex-direction: column;
        gap: 28px
    }

    .spk .ttl_copy {
        width: 100%
    }

    .spk .ttl_img_col {
        width: 100%;
        min-height: 240px
    }

    .spk .ttl_h1 {
        font-size: 31px
    }

    .spk .events_grid {
        grid-template-columns: 1fr
    }

    .spk .ev_sidebar {
        flex-direction: row
    }

    .spk .ev_stat,
    .spk .ev_stat_sm {
        flex: 1 1 auto
    }

    .spk .themes_inner {
        flex-direction: column;
        gap: 28px
    }

    .spk .themes_aside {
        flex: none;
        width: 100%;
        position: static
    }

    .spk .voices_grid {
        grid-template-columns: 1fr 1fr
    }

    .spk .collab_inner {
        grid-template-columns: 1fr
    }

    .spk .collab_side {
        flex-direction: row
    }

    .spk .collab_badge,
    .spk .collab_note {
        flex: 1 1 auto
    }
}

@media (max-width: 480px) {
    .spk .ttl_h1 {
        font-size: 23px
    }

    .spk .ttl_block {
        padding: 56px 14px 28px
    }

    .spk .events_block,
    .spk .themes_block,
    .spk .voices_block,
    .spk .collab_block {
        padding: 56px 14px
    }

    .spk .voices_grid {
        grid-template-columns: 1fr
    }

    .spk .ev_item {
        flex-direction: column;
        gap: 14px
    }

    .spk .ev_sidebar {
        flex-direction: column
    }

    .spk .collab_side {
        flex-direction: column
    }

    .spk .events_h2,
    .spk .themes_h2,
    .spk .voices_h2,
    .spk .collab_h2 {
        font-size: 23px
    }
}

.success_page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 96px 28px;
    background: #FFF
}

.success_page .card {
    max-width: 600px;
    width: 100%;
    background: #FFF;
    border: 1.5px solid #0098e32e;
    border-radius: 7px;
    padding: 56px;
    box-shadow: 1px 10px 52px -1px #0098e31a;
    text-align: center
}

.success_page .icon_wrap {
    width: 72px;
    height: 72px;
    border-radius: 48px;
    background: linear-gradient(160deg, #FFF, #02334F, #0098E3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px
}

.success_page .icon_wrap svg {
    width: 34px;
    height: 34px;
    stroke: #FFF;
    stroke-width: 2.2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round
}

.success_page .accent_line {
    width: 36px;
    height: 3px;
    background: #0098E3;
    border-radius: 48px;
    margin: 0 auto 14px
}

.success_page .heading {
    font-size: 31px;
    line-height: 1.1;
    letter-spacing: .01em;
    color: #02334F;
    margin: 0 0 14px
}

.success_page .heading span {
    color: #0098E3
}

.success_page .desc {
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: .01em;
    color: #02334F;
    opacity: .82;
    margin: 0 0 28px
}

.success_page .divider {
    width: 100%;
    height: 1px;
    background: #0098e324;
    margin: 0 0 28px
}

.success_page .detail_row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 14px;
    background: #0098e30d;
    border-radius: 7px;
    padding: 14px;
    margin: 0 0 28px;
    text-align: left
}

.success_page .detail_row svg {
    width: 20px;
    height: 20px;
    stroke: #0098E3;
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
    margin-top: 2px
}

.success_page .detail_text {
    font-size: 15px;
    line-height: 1.6;
    letter-spacing: .01em;
    color: #02334F
}

.success_page .btn_home {
    display: inline-block;
    padding: 14px 28px;
    font-size: 15px;
    letter-spacing: .02em;
    color: #FFF;
    background: #02334F;
    border-radius: 7px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: color .2s ease-out
}

.success_page .btn_home::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #0098E3;
    transform: translateX(-100%);
    transition: transform .18s ease-out;
    border-radius: 7px;
    z-index: 0
}

.success_page .btn_home:hover::before {
    transform: translateX(0)
}

.success_page .btn_home:focus-visible {
    outline: 2px solid #0098E3;
    outline-offset: 3px
}

.success_page .btn_label {
    position: relative;
    z-index: 1
}

@media (max-width: 480px) {
    .success_page {
        padding: 56px 14px
    }

    .success_page .card {
        padding: 28px 14px
    }

    .success_page .heading {
        font-size: 23px
    }
}