* {
    box-sizing: border-box
}

body {
    margin: 0;
    min-height: 100svh;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%
}

html {
    scroll-behavior: auto
}

:focus {
    outline: 2px solid;
    outline-offset: 2px;
    filter: invert(1)
}

.hd {
    position: relative;
    background: #fff;
    box-shadow: 0 4px 25px 0 #0e73a614;
    z-index: 100
}

.hd_stripe {
    background: #0E73A6;
    padding: 8px 0
}

.hd_stripe_inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 32px
}

.hd_contact_item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #DBF0FC;
    font-family: 'Fira Code', monospace;
    font-size: 15px;
    line-height: 1.45;
    text-decoration: none;
    transition: color .2s cubic-bezier(0.4, 0, 0.2, 1)
}

.hd_contact_item:hover {
    color: #fff
}

.hd_contact_item i {
    font-size: 15px;
    color: #2BBCF7
}

.hd_body {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 32px;
    min-height: 80px
}

.hd_nav_left {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 4px
}

.hd_nav_right {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 4px
}

.hd_logo_wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.hd_logo_box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid #0E73A6;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 1px 3px 0 #0e73a60d 0 4px 25px 0 #0e73a614;
    padding: 4px;
    text-decoration: none
}

.hd_logo_box img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    display: block
}

.hd_brand_label {
    margin-left: 8px;
    font-family: 'Fira Code', monospace;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
    color: #0E73A6;
    letter-spacing: -.02em;
    white-space: nowrap;
    text-decoration: none
}

.nav_item {
    position: relative;
    display: flex;
    align-items: center
}

.nav_lnk {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 16px;
    font-family: 'Fira Code', monospace;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.45;
    color: #2a3d4e;
    text-decoration: none;
    border-radius: 8px;
    white-space: nowrap;
    transition: color .15s cubic-bezier(0.4, 0, 0.2, 1), background .2s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1.5px solid transparent
}

.nav_lnk:hover {
    color: #0E73A6;
    background: #DBF0FC;
    border-color: #2bbcf740
}

.nav_lnk i {
    font-size: 15px;
    color: #2BBCF7;
    transition: color .15s cubic-bezier(0.4, 0, 0.2, 1)
}

.nav_lnk:hover i {
    color: #0E73A6
}

.nav_item:hover .sub_drop {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0)
}

.sub_drop {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    min-width: 220px;
    background: #fff;
    border: 1px solid #2bbcf733;
    border-radius: 12px;
    box-shadow: 0 8px 40px 0 #0e73a621;
    padding: 8px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity .18s cubic-bezier(0.4, 0, 0.2, 1), transform .22s cubic-bezier(0.0, 0, 0.2, 1);
    z-index: 200
}

.sub_drop::before {
    content: '';
    position: absolute;
    top: -12px;
    left: 0;
    right: 0;
    height: 12px;
    background: transparent
}

.sub_lnk {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    font-family: 'Fira Code', monospace;
    font-size: 15px;
    line-height: 1.45;
    color: #2a3d4e;
    text-decoration: none;
    border-radius: 8px;
    white-space: nowrap;
    transition: color .15s cubic-bezier(0.4, 0, 0.2, 1), background .18s cubic-bezier(0.4, 0, 0.2, 1)
}

.sub_lnk:hover {
    color: #0E73A6;
    background: #DBF0FC
}

.sub_lnk i {
    color: #2BBCF7;
    font-size: 15px
}

@media (max-width: 1024px) {
    .hd_body {
        grid-template-columns: auto 1fr;
        grid-template-rows: auto auto;
        padding: 16px 32px;
        gap: 16px;
        min-height: auto
    }

    .hd_logo_wrap {
        grid-column: 1;
        grid-row: 1;
        justify-content: flex-start
    }

    .hd_nav_left {
        grid-column: 1 / -1;
        grid-row: 2;
        justify-content: flex-start;
        flex-wrap: wrap
    }

    .hd_nav_right {
        grid-column: 2;
        grid-row: 1;
        justify-content: flex-end
    }
}

@media (max-width: 640px) {
    .hd_stripe_inner {
        padding: 0 16px;
        flex-direction: column;
        align-items: flex-start;
        gap: 4px
    }

    .hd_body {
        padding: 16px;
        gap: 8px
    }

    .hd_nav_left,
    .hd_nav_right {
        flex-wrap: wrap;
        gap: 4px
    }

    .nav_lnk {
        padding: 8px;
        font-size: 15px
    }
}

@media (max-width: 360px) {
    .hd_brand_label {
        font-size: 15px
    }

    .hd_contact_item {
        font-size: 15px
    }
}

.ft {
    background: #0E73A6;
    padding: 64px 0 0
}

.ft_grid {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 64px;
    align-items: start
}

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

.ft_logo_box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid #dbf0fc80;
    border-radius: 8px;
    background: #ffffff1f;
    box-shadow: 0 1px 3px 0 #0e73a60d;
    padding: 4px
}

.ft_logo_box img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    display: block
}

.ft_brand_name {
    font-family: 'Fira Code', monospace;
    font-size: 23px;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    letter-spacing: -.02em
}

.ft_desc {
    font-family: 'Fira Code', monospace;
    font-size: 15px;
    line-height: 1.65;
    color: #DBF0FC;
    max-width: 280px
}

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

.ft_col_head {
    font-family: 'Fira Code', monospace;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
    color: #2BBCF7;
    letter-spacing: .04em;
    text-transform: uppercase
}

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

.ft_lnk_list li a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Fira Code', monospace;
    font-size: 15px;
    line-height: 1.45;
    color: #DBF0FC;
    text-decoration: none;
    border-radius: 8px;
    padding: 4px 0;
    transition: color .17s cubic-bezier(0.4, 0, 0.2, 1)
}

.ft_lnk_list li a:hover {
    color: #fff
}

.ft_lnk_list li a i {
    color: #2BBCF7;
    font-size: 15px;
    flex-shrink: 0
}

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

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

.ft_contact_list li {
    display: flex;
    align-items: flex-start;
    gap: 8px
}

.ft_contact_list li i {
    color: #2BBCF7;
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 2px
}

.ft_contact_list li span,
.ft_contact_list li a {
    font-family: 'Fira Code', monospace;
    font-size: 15px;
    line-height: 1.65;
    color: #DBF0FC;
    text-decoration: none;
    transition: color .17s cubic-bezier(0.4, 0, 0.2, 1)
}

.ft_contact_list li a:hover {
    color: #fff
}

.ft_bottom {
    margin-top: 64px;
    border-top: 1px solid #dbf0fc2e;
    padding: 32px;
    max-width: 1320px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px
}

.ft_copy {
    font-family: 'Fira Code', monospace;
    font-size: 15px;
    line-height: 1.45;
    color: #dbf0fcb3
}

.ft_legal_links {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap
}

.ft_legal_links a {
    font-family: 'Fira Code', monospace;
    font-size: 15px;
    line-height: 1.45;
    color: #dbf0fcb3;
    text-decoration: none;
    transition: color .17s cubic-bezier(0.4, 0, 0.2, 1)
}

.ft_legal_links a:hover {
    color: #fff
}

.ft_logo_anchor {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    align-self: flex-end
}

.ft_logo_right {
    display: flex;
    justify-content: flex-end;
    margin-top: 32px
}

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

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

@media (max-width: 640px) {
    .ft_grid {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 0 16px
    }

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

@media (max-width: 360px) {
    .ft_grid {
        padding: 0 16px
    }
}

.ck_popup {
    position: fixed;
    top: 32px;
    right: 32px;
    width: 320px;
    background: #fff;
    border: 1px solid #2bbcf740;
    border-radius: 12px;
    box-shadow: 0 8px 40px 0 #0e73a621;
    padding: 32px;
    z-index: 8000;
    display: none
}

.ck_icon_row {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px
}

.ck_icon_row i {
    font-size: 31px;
    color: #0E73A6
}

.ck_text {
    font-family: 'Fira Code', monospace;
    font-size: 15px;
    line-height: 1.65;
    color: #2a3d4e;
    margin-bottom: 16px;
    text-align: center
}

.ck_btns {
    display: flex;
    gap: 8px
}

.ck_btn {
    flex: 1;
    padding: 8px 16px;
    font-family: 'Fira Code', monospace;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.45;
    border-radius: 8px;
    border: 2px solid #0E73A6;
    cursor: pointer;
    transition: background .2s cubic-bezier(0.4, 0, 0.2, 1), color .18s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 44px
}

.ck_btn.accept {
    background: #0E73A6;
    color: #fff
}

.ck_btn.accept:hover {
    background: #2BBCF7;
    border-color: #2BBCF7;
    color: #fff
}

.ck_btn.decline {
    background: #fff;
    color: #0E73A6
}

.ck_btn.decline:hover {
    background: #DBF0FC;
    color: #0E73A6
}

@media (max-width: 360px) {
    .ck_popup {
        right: 8px;
        left: 8px;
        width: auto;
        top: 16px
    }
}

.policy-text {
    max-width: 1320px;
    margin: 0 auto;
    padding: 64px 32px;
    color: #2c3e50
}

.policy-text p {
    font-size: 18px;
    line-height: 1.65;
    margin-bottom: 16px;
    color: #2c3e50
}

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

.policy-text li {
    font-size: 18px;
    line-height: 1.65;
    margin-bottom: 8px;
    color: #2c3e50
}

.policy-text ul li {
    list-style-type: disc
}

.policy-text ol li {
    list-style-type: decimal
}

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

.policy-text em,
.policy-text i {
    font-style: italic;
    color: #0E73A6
}

.policy-text table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 32px;
    font-size: 15px;
    line-height: 1.45;
    box-shadow: 0 1px 3px 0 #0e73a60d;
    border-radius: 8px;
    overflow: hidden
}

.policy-text thead {
    background-color: #DBF0FC
}

.policy-text thead th {
    background-color: #0E73A6;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: -.01em;
    padding: 16px;
    text-align: left
}

.policy-text tbody tr {
    border-bottom: 1px solid #DBF0FC;
    transition: background-color .15s cubic-bezier(0.4, 0, 0.2, 1)
}

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

.policy-text tbody tr:hover {
    background-color: #DBF0FC
}

.policy-text td {
    padding: 16px;
    font-size: 15px;
    line-height: 1.45;
    color: #2c3e50;
    vertical-align: top
}

.policy-text hr {
    border: none;
    border-top: 1px solid #DBF0FC;
    margin: 32px 0
}

.policy-text div {
    margin-bottom: 16px
}

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

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

    .policy-text p,
    .policy-text li {
        font-size: 15px
    }

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

    .policy-text thead th,
    .policy-text td {
        padding: 8px;
        font-size: 15px
    }
}

@media (max-width: 360px) {
    .policy-text {
        padding: 32px 8px
    }
}

.svc_pg {
    overflow-x: hidden
}

.svc_pg .top_row {
    background-color: #0E73A6;
    padding: 96px 32px 64px
}

.svc_pg .top_row .top_inner {
    max-width: 1320px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 64px
}

.svc_pg .top_row .top_text {
    flex: 1 1 0
}

.svc_pg .top_row .top_label {
    display: inline-block;
    background: #2bbcf72e;
    color: #DBF0FC;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .08em;
    padding: 4px 16px;
    border-radius: 32px;
    margin-bottom: 32px;
    border: 1px solid #2bbcf759
}

.svc_pg .top_row h1 {
    font-size: 60px;
    line-height: 1.2;
    letter-spacing: -.03em;
    color: #fff;
    font-weight: 800;
    margin: 0 0 16px
}

.svc_pg .top_row .top_sub {
    font-size: 23px;
    line-height: 1.45;
    color: #DBF0FC;
    margin: 0 0 32px;
    font-weight: 400
}

.svc_pg .top_row .top_desc {
    font-size: 18px;
    line-height: 1.65;
    color: #dbf0fcd1;
    margin: 0
}

.svc_pg .top_row .top_img_col {
    flex: 0 0 420px;
    position: relative
}

.svc_pg .top_img_frame {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #2bbcf74d;
    box-shadow: 0 8px 40px 0 #0e73a621;
    position: relative
}

.svc_pg .top_img_frame img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform .25s cubic-bezier(0.4, 0, 0.2, 1)
}

.svc_pg .top_img_frame:hover img {
    transform: scale(1.04)
}

.svc_pg .top_img_frame .img_glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, #2bbcf714 0%, transparent 60%);
    pointer-events: none
}

.svc_pg .float_card {
    position: absolute;
    bottom: -24px;
    left: -32px;
    background: #fff;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 4px 25px 0 #0e73a614;
    min-width: 200px;
    border: 1px solid #0e73a61a
}

.svc_pg .float_card .fc_status {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px
}

.svc_pg .float_card .fc_dot {
    width: 8px;
    height: 8px;
    border-radius: 48px;
    background: #2BBCF7;
    flex-shrink: 0
}

.svc_pg .float_card .fc_live {
    font-size: 15px;
    font-weight: 700;
    color: #0E73A6
}

.svc_pg .float_card .fc_row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 4px 0;
    border-bottom: 1px solid #DBF0FC
}

.svc_pg .float_card .fc_row:last-child {
    border-bottom: none
}

.svc_pg .float_card .fc_key {
    font-size: 15px;
    color: #555e6a
}

.svc_pg .float_card .fc_val {
    font-size: 15px;
    font-weight: 600;
    color: #0E73A6
}

.svc_pg .deco_arrow {
    position: absolute;
    top: 32px;
    right: -48px;
    width: 80px;
    height: 48px;
    pointer-events: none
}

.svc_pg .scallop_div {
    width: 100%;
    line-height: 0;
    background: #0E73A6
}

.svc_pg .scallop_div svg {
    display: block;
    width: 100%
}

.svc_pg .offer_row {
    background: #f2f8fc;
    padding: 96px 32px 64px
}

.svc_pg .offer_inner {
    max-width: 1320px;
    margin: 0 auto
}

.svc_pg .offer_head {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 64px;
    margin-bottom: 64px
}

.svc_pg .offer_aside {
    flex: 0 0 180px;
    padding-top: 8px
}

.svc_pg .offer_aside .aside_num {
    font-size: 72px;
    line-height: 1.2;
    font-weight: 800;
    color: #DBF0FC;
    letter-spacing: -.04em;
    display: block
}

.svc_pg .offer_aside .aside_note {
    font-size: 15px;
    color: #0E73A6;
    font-weight: 600;
    line-height: 1.45
}

.svc_pg .offer_main_text h2 {
    font-size: 43px;
    line-height: 1.2;
    letter-spacing: -.02em;
    color: #0c2d3f;
    font-weight: 800;
    margin: 0 0 16px
}

.svc_pg .offer_main_text p {
    font-size: 18px;
    line-height: 1.65;
    color: #3a4a57;
    margin: 0;
    max-width: 640px
}

.svc_pg .offer_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px
}

.svc_pg .offer_card {
    background: #fff;
    border-radius: 12px;
    padding: 32px;
    border: 1px solid #0e73a61a;
    box-shadow: 0 1px 3px 0 #0e73a60d;
    position: relative;
    transition: box-shadow .2s cubic-bezier(0.4, 0, 0.2, 1), transform .22s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden
}

.svc_pg .offer_card:hover {
    box-shadow: 0 8px 40px 0 #0e73a621;
    transform: translateY(-4px)
}

.svc_pg .offer_card .oc_overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #0E73A6, #2BBCF7);
    opacity: 0;
    transition: opacity .25s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 12px;
    pointer-events: none
}

.svc_pg .offer_card:hover .oc_overlay {
    opacity: 1
}

.svc_pg .offer_card .oc_body {
    position: relative;
    z-index: 1
}

.svc_pg .offer_card .oc_icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #DBF0FC;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: background .2s cubic-bezier(0.4, 0, 0.2, 1);
    flex-direction: row
}

.svc_pg .offer_card:hover .oc_icon {
    background: #fff3
}

.svc_pg .offer_card .oc_icon i {
    font-size: 23px;
    color: #0E73A6;
    transition: color .2s cubic-bezier(0.4, 0, 0.2, 1)
}

.svc_pg .offer_card:hover .oc_icon i {
    color: #fff
}

.svc_pg .offer_card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #0c2d3f;
    margin: 0 0 8px;
    letter-spacing: -.01em;
    transition: color .2s cubic-bezier(0.4, 0, 0.2, 1)
}

.svc_pg .offer_card:hover h4 {
    color: #fff
}

.svc_pg .offer_card p {
    font-size: 15px;
    line-height: 1.65;
    color: #4a5a68;
    margin: 0;
    transition: color .2s cubic-bezier(0.4, 0, 0.2, 1)
}

.svc_pg .offer_card:hover p {
    color: #dbf0fce6
}

.svc_pg .dashed_path_wrap {
    position: relative
}

.svc_pg .dashed_path_wrap .dpath {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 100%;
    pointer-events: none;
    overflow: hidden
}

.svc_pg .team_row {
    background: #fff;
    padding: 64px 32px 96px;
    position: relative
}

.svc_pg .team_inner {
    max-width: 1320px;
    margin: 0 auto
}

.svc_pg .team_top {
    text-align: center;
    margin-bottom: 64px
}

.svc_pg .team_top h2 {
    font-size: 43px;
    line-height: 1.2;
    letter-spacing: -.02em;
    color: #0c2d3f;
    font-weight: 800;
    margin: 0 0 16px
}

.svc_pg .team_top p {
    font-size: 18px;
    line-height: 1.65;
    color: #3a4a57;
    max-width: 580px;
    margin: 0 auto
}

.svc_pg .team_cards {
    display: flex;
    flex-direction: row;
    gap: 32px;
    align-items: flex-start
}

.svc_pg .team_card {
    flex: 1 1 0;
    background: #f2f8fc;
    border-radius: 12px;
    padding: 32px;
    border: 1px solid #0e73a614;
    box-shadow: 0 1px 3px 0 #0e73a60d
}

.svc_pg .team_card .tc_portrait {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #2BBCF7;
    margin-bottom: 16px;
    flex-shrink: 0
}

.svc_pg .team_card .tc_portrait img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    object-position: top;
    display: block
}

.svc_pg .team_card h5 {
    font-size: 18px;
    font-weight: 700;
    color: #0c2d3f;
    margin: 0 0 4px
}

.svc_pg .team_card .tc_role {
    font-size: 15px;
    color: #0E73A6;
    font-weight: 600;
    margin-bottom: 16px;
    display: block
}

.svc_pg .team_card p {
    font-size: 15px;
    line-height: 1.65;
    color: #4a5a68;
    margin: 0 0 16px
}

.svc_pg .team_card .tc_list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.svc_pg .team_card .tc_list li {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: #3a4a57
}

.svc_pg .team_card .tc_list .num_circle {
    width: 24px;
    height: 24px;
    border-radius: 48px;
    background: linear-gradient(to right, #0E73A6, #2BBCF7);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    flex-direction: row
}

.svc_pg .team_extra {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    gap: 32px
}

.svc_pg .team_stat_box {
    background: linear-gradient(to right, #0E73A6, #2BBCF7);
    border-radius: 12px;
    padding: 32px;
    color: #fff
}

.svc_pg .team_stat_box h3 {
    font-size: 31px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -.02em;
    color: #fff;
    margin: 0 0 8px
}

.svc_pg .team_stat_box p {
    font-size: 15px;
    line-height: 1.65;
    color: #dbf0fce0;
    margin: 0
}

.svc_pg .team_quote {
    background: #DBF0FC;
    border-radius: 12px;
    padding: 32px
}

.svc_pg .team_quote blockquote {
    margin: 0;
    font-size: 18px;
    line-height: 1.65;
    color: #0c2d3f;
    font-style: italic
}

.svc_pg .team_quote .tq_author {
    margin-top: 16px;
    font-size: 15px;
    font-weight: 600;
    color: #0E73A6
}

.svc_pg .flip_item {
    animation: flip_in .28s cubic-bezier(0.0, 0, 0.2, 1) both
}

@keyframes flip_in {
    from {
        opacity: 0;
        transform: rotateX(-12deg) translateY(16px)
    }

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

.svc_pg .offer_card:nth-child(1) {
    animation: flip_in .18s cubic-bezier(0.0, 0, 0.2, 1) both
}

.svc_pg .offer_card:nth-child(2) {
    animation: flip_in .22s cubic-bezier(0.0, 0, 0.2, 1) .05s both
}

.svc_pg .offer_card:nth-child(3) {
    animation: flip_in .26s cubic-bezier(0.0, 0, 0.2, 1) .1s both
}

.svc_pg .offer_card:nth-child(4) {
    animation: flip_in .28s cubic-bezier(0.0, 0, 0.2, 1) .15s both
}

.svc_pg .offer_card:nth-child(5) {
    animation: flip_in .3s cubic-bezier(0.0, 0, 0.2, 1) .18s both
}

.svc_pg .offer_card:nth-child(6) {
    animation: flip_in .3s cubic-bezier(0.0, 0, 0.2, 1) .22s both
}

.svc_pg .btn_link {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 8px;
    background: transparent;
    border: 2px solid #fff9;
    transition: border-color .18s cubic-bezier(0.4, 0, 0.2, 1), background .22s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 32px
}

.svc_pg .btn_link:hover {
    border-color: #fff;
    background: #ffffff1f;
    outline: 3px solid #ffffff40;
    outline-offset: 3px
}

.svc_pg .btn_link .arr {
    transition: transform .18s cubic-bezier(0.4, 0, 0.2, 1)
}

.svc_pg .btn_link:hover .arr {
    transform: translateX(4px)
}

@media (max-width: 1024px) {
    .svc_pg .top_row .top_inner {
        flex-direction: column;
        gap: 32px
    }

    .svc_pg .top_row .top_img_col {
        flex: none;
        width: 100%
    }

    .svc_pg .float_card {
        left: 16px;
        bottom: -20px
    }

    .svc_pg .offer_grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .svc_pg .offer_head {
        flex-direction: column;
        gap: 16px
    }

    .svc_pg .team_cards {
        flex-direction: column
    }

    .svc_pg .deco_arrow {
        display: none
    }
}

@media (max-width: 640px) {
    .svc_pg .top_row {
        padding: 64px 16px 32px
    }

    .svc_pg .top_row h1 {
        font-size: 43px
    }

    .svc_pg .top_row .top_sub {
        font-size: 18px
    }

    .svc_pg .offer_grid {
        grid-template-columns: 1fr
    }

    .svc_pg .offer_row {
        padding: 64px 16px 32px
    }

    .svc_pg .offer_main_text h2 {
        font-size: 31px
    }

    .svc_pg .team_row {
        padding: 64px 16px
    }

    .svc_pg .team_top h2 {
        font-size: 31px
    }

    .svc_pg .offer_aside .aside_num {
        font-size: 43px
    }
}

@media (max-width: 360px) {
    .svc_pg .top_row h1 {
        font-size: 31px
    }

    .svc_pg .float_card {
        display: none
    }
}

.pr_pg {
    overflow-x: hidden
}

.pr_pg .divider {
    width: 64px;
    height: 2px;
    background: #0E73A6;
    margin: 16px 0
}

.pr_pg .divider.wide {
    width: 120px
}

.pr_pg .title_blk {
    position: relative;
    padding: 64px 0 96px;
    background: #f4f8fb
}

.pr_pg .title_blk .tb_inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 64px;
    align-items: end
}

.pr_pg .title_blk .tb_label {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .08em;
    color: #0E73A6;
    text-transform: uppercase;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px
}

.pr_pg .title_blk .tb_label .lb_dot {
    width: 8px;
    height: 8px;
    border-radius: 48px;
    background: #2BBCF7;
    display: inline-block
}

.pr_pg .title_blk h1 {
    font-size: 60px;
    line-height: 1.2;
    letter-spacing: -.03em;
    color: #0a2d42;
    font-weight: 800;
    margin: 0 0 16px;
    max-width: 680px
}

.pr_pg .title_blk .tb_sub {
    font-size: 18px;
    line-height: 1.65;
    color: #3a5a6e;
    max-width: 560px;
    margin: 0
}

.pr_pg .title_blk .tb_meta {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 32px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 25px 0 #0e73a614;
    border-top: 3px solid #0E73A6
}

.pr_pg .title_blk .tb_meta .meta_row {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.pr_pg .title_blk .tb_meta .meta_lbl {
    font-size: 15px;
    color: #6a8fa3;
    font-weight: 500
}

.pr_pg .title_blk .tb_meta .meta_val {
    font-size: 18px;
    color: #0a2d42;
    font-weight: 600
}

.pr_pg .title_blk .tb_meta .meta_sep {
    height: 1px;
    background: #DBF0FC
}

.pr_pg .title_blk .tb_deco {
    position: absolute;
    top: 32px;
    right: 0;
    width: 320px;
    height: 320px;
    pointer-events: none;
    overflow: hidden
}

.pr_pg .title_blk .tb_deco span {
    position: absolute;
    border-radius: 48px;
    background: #0E73A6
}

.pr_pg .title_blk .tb_deco span:nth-child(1) {
    width: 180px;
    height: 180px;
    opacity: .04;
    top: 20px;
    right: 40px
}

.pr_pg .title_blk .tb_deco span:nth-child(2) {
    width: 120px;
    height: 120px;
    opacity: .06;
    top: 80px;
    right: 140px
}

.pr_pg .title_blk .tb_deco span:nth-child(3) {
    width: 60px;
    height: 60px;
    opacity: .08;
    top: 160px;
    right: 60px
}

.pr_pg .body_sec {
    max-width: 1320px;
    margin: 0 auto;
    padding: 96px 32px 64px;
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 64px;
    align-items: start
}

.pr_pg .body_sec .aside_col {
    position: sticky;
    top: 32px;
    display: flex;
    flex-direction: column;
    gap: 32px
}

.pr_pg .body_sec .aside_note {
    padding: 24px;
    background: #DBF0FC;
    border-radius: 12px
}

.pr_pg .body_sec .aside_note .an_head {
    font-size: 15px;
    font-weight: 700;
    color: #0E73A6;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: .06em
}

.pr_pg .body_sec .aside_note p {
    font-size: 15px;
    line-height: 1.65;
    color: #2a4a5e;
    margin: 0
}

.pr_pg .body_sec .aside_links {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.pr_pg .body_sec .aside_links a {
    font-size: 15px;
    color: #0E73A6;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    border-bottom: 1px solid #DBF0FC;
    transition: color .18s cubic-bezier(0.4, 0, 0.2, 1), gap .22s cubic-bezier(0.0, 0, 0.2, 1)
}

.pr_pg .body_sec .aside_links a:hover {
    color: #2BBCF7;
    gap: 12px
}

.pr_pg .body_sec .aside_links a i {
    font-size: 15px
}

.pr_pg .body_sec .main_col {
    display: flex;
    flex-direction: column;
    gap: 32px
}

.pr_pg .body_sec .main_col .img_frame {
    width: 100%;
    height: 420px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 25px 0 #0e73a614;
    border: 1px solid #c8e4f4;
    position: relative
}

.pr_pg .body_sec .main_col .img_frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    display: block;
    transition: transform .28s cubic-bezier(0.4, 0, 0.2, 1)
}

.pr_pg .body_sec .main_col .img_frame:hover img {
    transform: scale(1.03)
}

.pr_pg .body_sec .main_col .img_frame .img_grad {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to bottom, #0a2d4273, transparent);
    pointer-events: none
}

.pr_pg .body_sec .main_col .pr_body h2 {
    font-size: 31px;
    line-height: 1.2;
    letter-spacing: -.02em;
    color: #0a2d42;
    font-weight: 700;
    margin: 0 0 16px
}

.pr_pg .body_sec .main_col .pr_body p {
    font-size: 18px;
    line-height: 1.65;
    color: #2a4a5e;
    margin: 0 0 16px
}

.pr_pg .body_sec .main_col .pr_body p:last-child {
    margin-bottom: 0
}

.pr_pg .body_sec .main_col .quote_blk {
    padding: 32px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 1px 3px 0 #0e73a60d 0 4px 25px 0 #0e73a614;
    display: flex;
    flex-direction: column;
    gap: 16px
}

.pr_pg .body_sec .main_col .quote_blk .q_mark {
    width: 40px;
    height: 32px
}

.pr_pg .body_sec .main_col .quote_blk blockquote {
    font-size: 23px;
    line-height: 1.45;
    color: #0a2d42;
    font-weight: 600;
    margin: 0;
    letter-spacing: -.01em
}

.pr_pg .body_sec .main_col .quote_blk .q_attr {
    font-size: 15px;
    color: #6a8fa3;
    font-weight: 500
}

.pr_pg .metrics_sec {
    background: #0E73A6;
    padding: 64px 0;
    position: relative;
    overflow: hidden
}

.pr_pg .metrics_sec .ms_deco {
    position: absolute;
    inset: 0;
    pointer-events: none
}

.pr_pg .metrics_sec .ms_deco span {
    position: absolute;
    border-radius: 48px;
    background: #fff
}

.pr_pg .metrics_sec .ms_deco span:nth-child(1) {
    width: 300px;
    height: 300px;
    opacity: .03;
    top: -80px;
    left: -60px
}

.pr_pg .metrics_sec .ms_deco span:nth-child(2) {
    width: 200px;
    height: 200px;
    opacity: .04;
    bottom: -60px;
    right: 10%
}

.pr_pg .metrics_sec .ms_inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative
}

.pr_pg .metrics_sec .ms_head {
    text-align: center;
    margin-bottom: 64px
}

.pr_pg .metrics_sec .ms_head h2 {
    font-size: 43px;
    line-height: 1.2;
    color: #fff;
    font-weight: 800;
    letter-spacing: -.02em;
    margin: 0 0 16px
}

.pr_pg .metrics_sec .ms_head p {
    font-size: 18px;
    line-height: 1.65;
    color: #c0e4f5;
    max-width: 560px;
    margin: 0 auto
}

.pr_pg .metrics_sec .ms_divider {
    width: 64px;
    height: 2px;
    background: #2BBCF7;
    margin: 16px auto
}

.pr_pg .metrics_sec .metrics_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px
}

.pr_pg .metrics_sec .metric_card {
    background: #ffffff14;
    border-radius: 12px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    border: 1px solid #ffffff1f;
    transition: background .2s cubic-bezier(0.4, 0, 0.2, 1), transform .25s cubic-bezier(0.0, 0, 0.2, 1)
}

.pr_pg .metrics_sec .metric_card:hover {
    background: #ffffff21;
    transform: translateY(-4px)
}

.pr_pg .metrics_sec .metric_card .mc_icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #2bbcf733;
    display: flex;
    align-items: center;
    justify-content: center
}

.pr_pg .metrics_sec .metric_card .mc_icon i {
    font-size: 23px;
    color: #2BBCF7
}

.pr_pg .metrics_sec .metric_card .mc_num {
    font-size: 43px;
    line-height: 1.2;
    font-weight: 800;
    color: #fff;
    letter-spacing: -.03em
}

.pr_pg .metrics_sec .metric_card .mc_num span {
    font-size: 23px;
    color: #2BBCF7
}

.pr_pg .metrics_sec .metric_card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.2
}

.pr_pg .metrics_sec .metric_card p {
    font-size: 15px;
    line-height: 1.65;
    color: #c0e4f5;
    margin: 0
}

.pr_pg .close_sec {
    padding: 96px 0 64px;
    background: #fff;
    position: relative
}

.pr_pg .close_sec .cs_inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start
}

.pr_pg .close_sec .cs_left h2 {
    font-size: 43px;
    line-height: 1.2;
    letter-spacing: -.02em;
    color: #0a2d42;
    font-weight: 800;
    margin: 0 0 16px
}

.pr_pg .close_sec .cs_left p {
    font-size: 18px;
    line-height: 1.65;
    color: #2a4a5e;
    margin: 0 0 32px
}

.pr_pg .close_sec .cs_left .cs_steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
    counter-reset: step_c
}

.pr_pg .close_sec .cs_left .cs_step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    counter-increment: step_c
}

.pr_pg .close_sec .cs_left .cs_step .snum {
    width: 36px;
    height: 36px;
    border-radius: 48px;
    background: linear-gradient(to right, #0E73A6, #2BBCF7);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.pr_pg .close_sec .cs_left .cs_step .stxt {
    padding-top: 8px
}

.pr_pg .close_sec .cs_left .cs_step .stxt strong {
    display: block;
    font-size: 18px;
    color: #0a2d42;
    font-weight: 700;
    margin-bottom: 4px
}

.pr_pg .close_sec .cs_left .cs_step .stxt p {
    font-size: 15px;
    color: #3a5a6e;
    margin: 0;
    line-height: 1.65
}

.pr_pg .close_sec .cs_right {
    display: flex;
    flex-direction: column;
    gap: 32px
}

.pr_pg .close_sec .cs_right .contact_card {
    padding: 32px;
    background: #f4f8fb;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: 0 1px 3px 0 #0e73a60d
}

.pr_pg .close_sec .cs_right .contact_card h4 {
    font-size: 23px;
    font-weight: 700;
    color: #0a2d42;
    margin: 0;
    letter-spacing: -.01em
}

.pr_pg .close_sec .cs_right .contact_card .cc_row {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    color: #2a4a5e;
    text-decoration: none;
    transition: color .18s cubic-bezier(0.4, 0, 0.2, 1)
}

.pr_pg .close_sec .cs_right .contact_card a.cc_row:hover {
    color: #0E73A6
}

.pr_pg .close_sec .cs_right .contact_card .cc_row i {
    font-size: 23px;
    color: #0E73A6;
    flex-shrink: 0
}

.pr_pg .close_sec .cs_right .contact_card .cc_sep {
    height: 1px;
    background: #c8e4f4
}

.pr_pg .close_sec .cs_right .cta_wrap {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.pr_pg .close_sec .cs_right .btn_primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: linear-gradient(to right, #0E73A6, #2BBCF7);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    transition: box-shadow .2s cubic-bezier(0.4, 0, 0.2, 1), transform .22s cubic-bezier(0.0, 0, 0.2, 1);
    box-shadow: 0 4px 25px 0 #0e73a621;
    position: relative;
    outline: 2px solid transparent;
    outline-offset: 0
}

.pr_pg .close_sec .cs_right .btn_primary:hover {
    box-shadow: 0 8px 40px 0 #0e73a62e;
    transform: translateY(-2px);
    outline: 2px solid #2BBCF7;
    outline-offset: 4px
}

.pr_pg .close_sec .cs_right .btn_primary:focus-visible {
    outline: 3px solid #0E73A6;
    outline-offset: 4px
}

.pr_pg .close_sec .cs_right .btn_primary i {
    font-size: 18px;
    transition: transform .18s cubic-bezier(0.4, 0, 0.2, 1)
}

.pr_pg .close_sec .cs_right .btn_primary:hover i {
    transform: translateX(4px)
}

.pr_pg .close_sec .cs_right .link_sec {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    color: #0E73A6;
    text-decoration: none;
    font-weight: 600;
    transition: gap .2s cubic-bezier(0.4, 0, 0.2, 1), color .18s cubic-bezier(0.4, 0, 0.2, 1)
}

.pr_pg .close_sec .cs_right .link_sec:hover {
    gap: 14px;
    color: #2BBCF7
}

@keyframes col_appear {
    from {
        opacity: 0;
        transform: translateY(24px)
    }

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

.pr_pg .title_blk .tb_inner> :nth-child(1) {
    animation: col_appear .4s cubic-bezier(0.0, 0, 0.2, 1) both
}

.pr_pg .title_blk .tb_inner> :nth-child(2) {
    animation: col_appear .5s cubic-bezier(0.0, 0, 0.2, 1) .15s both
}

.pr_pg .metrics_sec .metrics_grid .metric_card:nth-child(1) {
    animation: col_appear .38s cubic-bezier(0.0, 0, 0.2, 1) .1s both
}

.pr_pg .metrics_sec .metrics_grid .metric_card:nth-child(2) {
    animation: col_appear .42s cubic-bezier(0.0, 0, 0.2, 1) .2s both
}

.pr_pg .metrics_sec .metrics_grid .metric_card:nth-child(3) {
    animation: col_appear .46s cubic-bezier(0.0, 0, 0.2, 1) .28s both
}

.pr_pg .metrics_sec .metrics_grid .metric_card:nth-child(4) {
    animation: col_appear .5s cubic-bezier(0.0, 0, 0.2, 1) .36s both
}

@media (max-width: 1024px) {
    .pr_pg .title_blk .tb_inner {
        grid-template-columns: 1fr;
        gap: 32px
    }

    .pr_pg .title_blk h1 {
        font-size: 43px
    }

    .pr_pg .title_blk .tb_deco {
        display: none
    }

    .pr_pg .body_sec {
        grid-template-columns: 1fr;
        gap: 32px
    }

    .pr_pg .body_sec .aside_col {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px
    }

    .pr_pg .close_sec .cs_inner {
        grid-template-columns: 1fr;
        gap: 32px
    }

    .pr_pg .metrics_sec .metrics_grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width: 640px) {
    .pr_pg .title_blk {
        padding: 32px 0 64px
    }

    .pr_pg .title_blk .tb_inner {
        padding: 0 16px
    }

    .pr_pg .title_blk h1 {
        font-size: 31px
    }

    .pr_pg .body_sec {
        padding: 64px 16px 32px
    }

    .pr_pg .body_sec .aside_col {
        grid-template-columns: 1fr
    }

    .pr_pg .body_sec .main_col .img_frame {
        height: 240px
    }

    .pr_pg .metrics_sec .metrics_grid {
        grid-template-columns: 1fr
    }

    .pr_pg .metrics_sec .ms_head h2 {
        font-size: 31px
    }

    .pr_pg .metrics_sec .ms_inner {
        padding: 0 16px
    }

    .pr_pg .close_sec .cs_inner {
        padding: 0 16px
    }

    .pr_pg .close_sec .cs_left h2 {
        font-size: 31px
    }
}

@media (max-width: 360px) {
    .pr_pg .title_blk h1 {
        font-size: 23px
    }

    .pr_pg .close_sec .cs_left h2 {
        font-size: 23px
    }
}

.abt_pg {
    overflow-x: hidden
}

.abt_pg .hero_row {
    max-width: 1320px;
    margin: 0 auto;
    padding: 96px 32px 64px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 64px;
    position: relative
}

.abt_pg .dot_field {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0
}

.abt_pg .dot_field svg {
    width: 100%;
    height: 100%;
    opacity: .13
}

.abt_pg .hero_txt {
    flex: 1 1 0;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 32px
}

.abt_pg .dash_accent {
    display: inline-block;
    width: 32px;
    height: 3px;
    background: #0E73A6;
    margin-right: 8px;
    vertical-align: middle
}

.abt_pg .hero_label {
    display: flex;
    flex-direction: row;
    align-items: center;
    font-size: 15px;
    color: #0E73A6;
    letter-spacing: .08em;
    font-weight: 600;
    text-transform: uppercase
}

.abt_pg .hero_h1 {
    font-size: 60px;
    line-height: 1.2;
    letter-spacing: -.03em;
    color: #0d1a26;
    font-weight: 800;
    margin: 0
}

.abt_pg .hero_h1 em {
    font-style: normal;
    color: #0E73A6
}

.abt_pg .hero_desc {
    font-size: 18px;
    line-height: 1.65;
    color: #2c3e50;
    margin: 0;
    max-width: 520px
}

.abt_pg .hero_desc strong {
    color: #0E73A6;
    font-weight: 700
}

.abt_pg .hero_link {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 700;
    color: #0E73A6;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    padding-bottom: 4px;
    transition: border-color .2s cubic-bezier(0.4, 0, 0.2, 1), color .15s cubic-bezier(0.4, 0, 0.2, 1);
    width: fit-content
}

.abt_pg .hero_link:hover {
    border-color: #2BBCF7;
    color: #2BBCF7
}

.abt_pg .hero_link svg {
    transition: transform .2s cubic-bezier(0.4, 0, 0.2, 1)
}

.abt_pg .hero_link:hover svg {
    transform: translateX(4px)
}

.abt_pg .hero_img_col {
    flex: 0 0 420px;
    position: relative;
    z-index: 1
}

.abt_pg .geo_clip {
    width: 420px;
    height: 520px;
    position: relative;
    overflow: hidden
}

.abt_pg .geo_clip img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: grayscale(1) contrast(1.1);
    border: 1px solid #0e73a62e;
    clip-path: polygon(0 0, 88% 0, 100% 6%, 100% 100%, 12% 100%, 0 94%);
    transition: filter .25s cubic-bezier(0.4, 0, 0.2, 1)
}

.abt_pg .geo_clip img:hover {
    filter: grayscale(0.4) contrast(1.05)
}

.abt_pg .geo_border {
    position: absolute;
    top: 12px;
    left: 12px;
    right: -12px;
    bottom: -12px;
    border: 2px dashed #0e73a638;
    clip-path: polygon(0 0, 88% 0, 100% 6%, 100% 100%, 12% 100%, 0 94%);
    pointer-events: none
}

.abt_pg .divider_diag {
    width: 100%;
    overflow: hidden;
    line-height: 0;
    margin-top: -2px
}

.abt_pg .divider_diag svg {
    display: block;
    width: 100%
}

.abt_pg .story_band {
    background: linear-gradient(90deg, #0E73A6 0%, #2BBCF7 100%);
    position: relative;
    overflow: hidden
}

.abt_pg .story_band_inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 64px 32px;
    display: flex;
    flex-direction: row;
    gap: 64px;
    align-items: stretch;
    position: relative;
    z-index: 1
}

.abt_pg .story_aside {
    flex: 0 0 200px;
    display: flex;
    flex-direction: column;
    gap: 16px
}

.abt_pg .story_aside_label {
    font-size: 15px;
    color: #ffffffb8;
    font-weight: 600;
    letter-spacing: .07em;
    text-transform: uppercase
}

.abt_pg .story_aside_note {
    font-size: 15px;
    color: #ffffffe0;
    line-height: 1.65
}

.abt_pg .story_main {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    gap: 32px
}

.abt_pg .story_h2 {
    font-size: 43px;
    line-height: 1.2;
    letter-spacing: -.025em;
    color: #fff;
    font-weight: 800;
    margin: 0
}

.abt_pg .story_body {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.abt_pg .story_body p {
    font-size: 18px;
    line-height: 1.65;
    color: #ffffffeb;
    margin: 0
}

.abt_pg .metrics_row {
    display: flex;
    flex-direction: row;
    gap: 32px;
    flex-wrap: wrap;
    margin-top: 16px
}

.abt_pg .metric_item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 120px
}

.abt_pg .metric_num {
    font-size: 43px;
    line-height: 1.2;
    font-weight: 800;
    color: #fff;
    letter-spacing: -.03em
}

.abt_pg .metric_lbl {
    font-size: 15px;
    color: #ffffffbf;
    line-height: 1.45
}

.abt_pg .divider_diag2 {
    width: 100%;
    overflow: hidden;
    line-height: 0
}

.abt_pg .divider_diag2 svg {
    display: block;
    width: 100%
}

.abt_pg .team_section {
    background: #fff;
    padding: 64px 0
}

.abt_pg .team_inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 32px
}

.abt_pg .team_top {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 64px
}

.abt_pg .team_h2 {
    font-size: 43px;
    line-height: 1.2;
    letter-spacing: -.025em;
    color: #0d1a26;
    font-weight: 800;
    margin: 0
}

.abt_pg .team_sub {
    font-size: 18px;
    line-height: 1.65;
    color: #2c3e50;
    max-width: 420px;
    margin: 0
}

.abt_pg .feat_grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 32px
}

.abt_pg .feat_card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 25px 0 #0e73a614;
    position: relative;
    display: flex;
    flex-direction: column
}

.abt_pg .feat_card.accent {
    grid-row: 1 / 3;
    box-shadow: 0 8px 40px 0 #0e73a621
}

.abt_pg .feat_card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    object-position: center;
    display: block;
    border-bottom: 1px solid #0e73a61a;
    transition: transform .25s cubic-bezier(0.4, 0, 0.2, 1)
}

.abt_pg .feat_card.accent img {
    height: 100%;
    min-height: 400px;
    flex: 1 1 0
}

.abt_pg .feat_card:hover img {
    transform: scale(1.03)
}

.abt_pg .feat_card_body {
    padding: 32px;
    background: #fff;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.abt_pg .feat_card.accent .feat_card_body {
    padding: 32px
}

.abt_pg .feat_card_tag {
    font-size: 15px;
    font-weight: 700;
    color: #0E73A6;
    text-transform: uppercase;
    letter-spacing: .07em
}

.abt_pg .feat_card_h {
    font-size: 23px;
    line-height: 1.2;
    font-weight: 700;
    color: #0d1a26;
    letter-spacing: -.015em;
    margin: 0
}

.abt_pg .feat_card_p {
    font-size: 15px;
    line-height: 1.65;
    color: #3a4a5a;
    margin: 0
}

.abt_pg .portrait_card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 25px 0 #0e73a614;
    background: #DBF0FC;
    display: flex;
    flex-direction: row;
    gap: 32px;
    align-items: center;
    padding: 32px;
    margin-top: 32px
}

.abt_pg .portrait_img_wrap {
    flex: 0 0 auto;
    width: 140px;
    height: 180px;
    overflow: hidden
}

.abt_pg .portrait_img_wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
    border: 1px solid #0e73a626
}

.abt_pg .portrait_info {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.abt_pg .portrait_name {
    font-size: 23px;
    font-weight: 700;
    color: #0d1a26;
    letter-spacing: -.015em;
    margin: 0
}

.abt_pg .portrait_role {
    font-size: 15px;
    color: #0E73A6;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .07em
}

.abt_pg .portrait_quote {
    font-size: 18px;
    line-height: 1.65;
    color: #2c3e50;
    margin: 0
}

.abt_pg .expand_list {
    margin-top: 64px
}

.abt_pg .expand_h3 {
    font-size: 31px;
    line-height: 1.2;
    letter-spacing: -.02em;
    font-weight: 800;
    color: #0d1a26;
    margin: 0 0 32px
}

.abt_pg .exp_items {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.abt_pg .exp_item {
    border-radius: 8px;
    border: 1px solid #0e73a624;
    overflow: hidden
}

.abt_pg .exp_item summary {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    padding: 16px 32px;
    cursor: pointer;
    list-style: none;
    background: #fff;
    transition: background .18s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 18px;
    font-weight: 700;
    color: #0d1a26
}

.abt_pg .exp_item summary::-webkit-details-marker {
    display: none
}

.abt_pg .exp_item summary:hover {
    background: #DBF0FC
}

.abt_pg details[open]>summary {
    background: #DBF0FC;
    color: #0E73A6
}

.abt_pg .exp_num {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 48px;
    background: linear-gradient(90deg, #0E73A6 0%, #2BBCF7 100%);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    flex-shrink: 0
}

.abt_pg .exp_arrow {
    margin-left: auto;
    color: #0E73A6;
    transition: transform .2s cubic-bezier(0.4, 0, 0.2, 1)
}

.abt_pg details[open] .exp_arrow {
    transform: rotate(90deg)
}

.abt_pg .exp_detail {
    padding: 16px 32px 24px 80px;
    font-size: 15px;
    line-height: 1.65;
    color: #3a4a5a;
    background: #fff
}

.abt_pg .bg_img_section {
    position: relative;
    overflow: hidden
}

.abt_pg .bg_img_section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #dbf0fce0;
    z-index: 1
}

@keyframes bg_pan_up {
    0% {
        background-position: center bottom
    }

    100% {
        background-position: center top
    }
}

.abt_pg .bg_img_section .bg_img_el {
    position: absolute;
    inset: -40px 0;
    background-image: url(/photo_gallery/main-content-image-10.jpg);
    background-size: cover;
    background-position: center bottom;
    animation: bg_pan_up 18s ease-in alternate infinite;
    z-index: 0
}

.abt_pg .bg_img_inner {
    position: relative;
    z-index: 2;
    max-width: 1320px;
    margin: 0 auto;
    padding: 96px 32px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: flex-start
}

.abt_pg .bg_img_h2 {
    font-size: 43px;
    line-height: 1.2;
    letter-spacing: -.025em;
    font-weight: 800;
    color: #0d1a26;
    margin: 0;
    max-width: 700px
}

.abt_pg .bg_img_cols {
    display: flex;
    flex-direction: row;
    gap: 64px;
    align-items: flex-start;
    width: 100%
}

.abt_pg .bg_img_aside {
    flex: 0 0 220px;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.abt_pg .bg_img_aside_label {
    font-size: 15px;
    font-weight: 600;
    color: #0E73A6;
    letter-spacing: .07em;
    text-transform: uppercase
}

.abt_pg .bg_img_aside_text {
    font-size: 15px;
    line-height: 1.65;
    color: #2c3e50;
    margin: 0
}

.abt_pg .bg_img_body {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    gap: 16px
}

.abt_pg .bg_img_body p {
    font-size: 18px;
    line-height: 1.65;
    color: #0d1a26;
    margin: 0
}

.abt_pg .press_link {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 700;
    color: #0E73A6;
    text-decoration: none;
    border-bottom: 2px solid #0e73a64d;
    padding-bottom: 4px;
    transition: border-color .18s cubic-bezier(0.4, 0, 0.2, 1), color .15s cubic-bezier(0.0, 0, 0.2, 1)
}

.abt_pg .press_link:hover {
    color: #2BBCF7;
    border-color: #2BBCF7
}

@media (max-width: 1024px) {
    .abt_pg .hero_row {
        flex-direction: column;
        gap: 32px;
        padding: 64px 32px 32px
    }

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

    .abt_pg .geo_clip {
        width: 100%;
        height: 360px
    }

    .abt_pg .hero_h1 {
        font-size: 43px
    }

    .abt_pg .feat_grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto
    }

    .abt_pg .feat_card.accent {
        grid-row: auto;
        grid-column: 1 / 3
    }

    .abt_pg .feat_card.accent img {
        height: 300px;
        min-height: unset;
        flex: none
    }

    .abt_pg .story_band_inner {
        flex-direction: column;
        gap: 32px
    }

    .abt_pg .story_aside {
        flex: 0 0 auto
    }

    .abt_pg .bg_img_cols {
        flex-direction: column;
        gap: 32px
    }

    .abt_pg .bg_img_aside {
        flex: 0 0 auto
    }
}

@media (max-width: 640px) {
    .abt_pg .hero_h1 {
        font-size: 31px
    }

    .abt_pg .story_h2 {
        font-size: 31px
    }

    .abt_pg .team_h2 {
        font-size: 31px
    }

    .abt_pg .team_top {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px
    }

    .abt_pg .feat_grid {
        grid-template-columns: 1fr
    }

    .abt_pg .feat_card.accent {
        grid-column: auto
    }

    .abt_pg .metrics_row {
        gap: 16px
    }

    .abt_pg .portrait_card {
        flex-direction: column;
        align-items: flex-start
    }

    .abt_pg .hero_row {
        padding: 32px 16px
    }

    .abt_pg .team_inner {
        padding: 0 16px
    }

    .abt_pg .story_band_inner {
        padding: 32px 16px
    }

    .abt_pg .bg_img_inner {
        padding: 64px 16px
    }

    .abt_pg .bg_img_h2 {
        font-size: 31px
    }

    .abt_pg .exp_detail {
        padding: 16px 16px 24px
    }

    .abt_pg .exp_item summary {
        padding: 16px
    }
}

@media (max-width: 360px) {
    .abt_pg .hero_h1 {
        font-size: 23px
    }

    .abt_pg .metric_num {
        font-size: 31px
    }
}

.entry_pg {
    overflow-x: hidden
}

.entry_pg .pg_bound {
    max-width: 1320px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 32px;
    padding-right: 32px
}

.entry_pg .t_block {
    padding-top: 64px;
    padding-bottom: 64px;
    background: #fff;
    position: relative
}

.entry_pg .t_block .decor_arc {
    position: absolute;
    top: 0;
    right: 0;
    width: 340px;
    height: 340px;
    background: #DBF0FC;
    opacity: .28;
    border-radius: 50%;
    transform: translate(30%, -30%);
    pointer-events: none
}

.entry_pg .t_block .t_inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 64px
}

.entry_pg .t_block .t_text {
    flex: 1 1 0;
    min-width: 0
}

.entry_pg .t_block .t_eyebrow {
    display: inline-block;
    font-size: 15px;
    font-weight: 600;
    color: #0E73A6;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 16px;
    padding: 4px 16px;
    background: #DBF0FC;
    border-radius: 32px
}

.entry_pg .t_block .t_h1 {
    font-size: 60px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -.03em;
    color: #0a2e42;
    margin-bottom: 16px
}

.entry_pg .t_block .t_h1 span {
    color: #0E73A6
}

.entry_pg .t_block .t_desc {
    font-size: 18px;
    line-height: 1.65;
    color: #2d4a5a;
    margin-bottom: 32px;
    max-width: 520px
}

.entry_pg .t_block .t_actions {
    display: flex;
    flex-direction: row;
    gap: 32px;
    align-items: center
}

.entry_pg .t_block .btn_prim {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(90deg, #0E73A6, #2BBCF7);
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    border: 2px solid transparent;
    transition: box-shadow .22s cubic-bezier(0.4, 0, 0.2, 1), border-color .18s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 25px 0 #0e73a614
}

.entry_pg .t_block .btn_prim:hover {
    box-shadow: 0 8px 40px 0 #0e73a62e;
    border-color: #0E73A6
}

.entry_pg .t_block .btn_prim svg {
    transition: transform .18s cubic-bezier(0.4, 0, 0.2, 1)
}

.entry_pg .t_block .btn_prim:hover svg {
    transform: translateX(4px)
}

.entry_pg .t_block .lnk_sec {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #0E73A6;
    text-decoration: none;
    border-bottom: 2px dashed #2BBCF7;
    padding-bottom: 2px;
    transition: color .18s cubic-bezier(0.4, 0, 0.2, 1), border-color .22s cubic-bezier(0.4, 0, 0.2, 1)
}

.entry_pg .t_block .lnk_sec:hover {
    color: #2BBCF7;
    border-color: #0E73A6
}

.entry_pg .t_block .t_img_card {
    flex: 0 0 320px;
    width: 320px;
    position: relative
}

.entry_pg .t_block .t_img_frame {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #0e73a62e;
    box-shadow: 0 8px 40px 0 #0e73a621;
    position: relative
}

.entry_pg .t_block .t_img_frame img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    filter: sepia(0.18) contrast(1.08) brightness(0.97) saturate(0.92)
}

.entry_pg .t_block .t_img_frame::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, #0e73a62e 100%);
    pointer-events: none
}

.entry_pg .t_block .img_badge {
    position: absolute;
    bottom: -16px;
    left: -16px;
    background: #fff;
    border-radius: 12px;
    padding: 8px 16px;
    box-shadow: 0 4px 25px 0 #0e73a621;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    border: 1px solid #DBF0FC
}

.entry_pg .t_block .img_badge .badge_dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #2BBCF7;
    flex-shrink: 0
}

.entry_pg .t_block .img_badge span {
    font-size: 15px;
    font-weight: 600;
    color: #0E73A6
}

.entry_pg .exp_sec {
    padding-top: 96px;
    padding-bottom: 96px;
    background: #f2faff;
    position: relative
}

.entry_pg .exp_sec::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: repeating-linear-gradient(90deg, #2BBCF7 0px, #2BBCF7 12px, transparent 12px, transparent 24px)
}

.entry_pg .exp_sec .exp_grid {
    display: grid;
    grid-template-columns: 30fr 70fr;
    gap: 64px;
    align-items: start
}

.entry_pg .exp_sec .exp_aside {
    position: sticky;
    top: 32px
}

.entry_pg .exp_sec .aside_label {
    font-size: 15px;
    font-weight: 600;
    color: #2BBCF7;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 16px
}

.entry_pg .exp_sec .aside_h {
    font-size: 31px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -.02em;
    color: #0a2e42;
    margin-bottom: 16px
}

.entry_pg .exp_sec .aside_note {
    font-size: 15px;
    line-height: 1.65;
    color: #3a5a6e
}

.entry_pg .exp_sec .exp_img {
    margin-top: 32px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #0e73a624;
    box-shadow: 0 4px 25px 0 #0e73a614
}

.entry_pg .exp_sec .exp_img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    opacity: .88
}

.entry_pg .exp_sec .phases {
    display: flex;
    flex-direction: column;
    gap: 32px
}

.entry_pg .exp_sec .phase_item {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: flex-start
}

.entry_pg .exp_sec .phase_num {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(90deg, #0E73A6, #2BBCF7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 800;
    color: #fff;
    margin-top: 4px
}

.entry_pg .exp_sec .phase_body {
    flex: 1 1 0;
    min-width: 0
}

.entry_pg .exp_sec .phase_h {
    font-size: 18px;
    font-weight: 700;
    color: #0a2e42;
    margin-bottom: 8px;
    letter-spacing: -.01em
}

.entry_pg .exp_sec .phase_p {
    font-size: 15px;
    line-height: 1.65;
    color: #3a5a6e
}

.entry_pg .exp_sec .phase_item:hover .phase_p {
    text-shadow: 0 4px 25px #2bbcf721;
    transition: text-shadow .25s cubic-bezier(0.4, 0, 0.2, 1)
}

.entry_pg .inv_sec {
    padding-top: 64px;
    padding-bottom: 64px;
    background: #fff;
    position: relative
}

.entry_pg .inv_sec::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: repeating-linear-gradient(90deg, #DBF0FC 0px, #DBF0FC 16px, transparent 16px, transparent 28px)
}

.entry_pg .inv_sec .inv_top {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 64px
}

.entry_pg .inv_sec .inv_h {
    font-size: 43px;
    font-weight: 800;
    letter-spacing: -.03em;
    line-height: 1.2;
    color: #0a2e42;
    max-width: 520px
}

.entry_pg .inv_sec .inv_sub {
    font-size: 18px;
    line-height: 1.65;
    color: #3a5a6e;
    max-width: 340px
}

.entry_pg .inv_sec .inv_cols {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 32px;
    align-items: start
}

.entry_pg .inv_sec .inv_main {
    background: #f2faff;
    border-radius: 12px;
    padding: 32px;
    border: 1px solid #0e73a61a;
    box-shadow: 0 1px 3px 0 #0e73a60d;
    position: relative;
    overflow: hidden
}

.entry_pg .inv_sec .inv_main_img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
    margin-bottom: 32px;
    border: 1px solid #0e73a61f;
    opacity: .92
}

.entry_pg .inv_sec .inv_main_h {
    font-size: 23px;
    font-weight: 700;
    color: #0a2e42;
    margin-bottom: 8px;
    letter-spacing: -.01em
}

.entry_pg .inv_sec .inv_main_p {
    font-size: 15px;
    line-height: 1.65;
    color: #3a5a6e;
    margin-bottom: 16px
}

.entry_pg .inv_sec .inv_tag {
    display: inline-block;
    font-size: 15px;
    font-weight: 600;
    color: #0E73A6;
    background: #DBF0FC;
    border-radius: 32px;
    padding: 4px 16px
}

.entry_pg .inv_sec .inv_side {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.entry_pg .inv_sec .inv_card {
    background: #fff;
    border-radius: 12px;
    padding: 16px;
    border: 1px solid #2bbcf733;
    box-shadow: 0 1px 3px 0 #0e73a60d;
    transition: box-shadow .2s cubic-bezier(0.4, 0, 0.2, 1), border-color .18s cubic-bezier(0.4, 0, 0.2, 1)
}

.entry_pg .inv_sec .inv_card:hover {
    box-shadow: 0 8px 40px 0 #0e73a621;
    border-color: #2BBCF7
}

.entry_pg .inv_sec .inv_card .ic_icon {
    font-size: 23px;
    color: #0E73A6;
    margin-bottom: 8px;
    display: block;
    animation: float_icon 3s ease-in-out infinite
}

.entry_pg .inv_sec .inv_card .ic_icon.slow {
    animation-duration: 4s;
    animation-delay: .6s
}

.entry_pg .inv_sec .inv_card .ic_icon.slower {
    animation-duration: 5s;
    animation-delay: 1.2s
}

@keyframes float_icon {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-6px)
    }
}

.entry_pg .inv_sec .inv_card .ic_h {
    font-size: 15px;
    font-weight: 700;
    color: #0a2e42;
    margin-bottom: 4px
}

.entry_pg .inv_sec .inv_card .ic_p {
    font-size: 15px;
    line-height: 1.45;
    color: #3a5a6e
}

.entry_pg .rep_sec {
    padding-top: 96px;
    padding-bottom: 96px;
    background: linear-gradient(90deg, #0E73A6, #2BBCF7);
    position: relative
}

.entry_pg .rep_sec .noise_lay {
    position: absolute;
    inset: 0;
    opacity: .045;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 200px 200px;
    pointer-events: none
}

.entry_pg .rep_sec .rep_inner {
    position: relative
}

.entry_pg .rep_sec .rep_head {
    text-align: center;
    margin-bottom: 64px
}

.entry_pg .rep_sec .rep_h {
    font-size: 43px;
    font-weight: 800;
    letter-spacing: -.03em;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 16px
}

.entry_pg .rep_sec .rep_sub {
    font-size: 18px;
    line-height: 1.65;
    color: #ffffffd9;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto
}

.entry_pg .rep_sec .rep_row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 64px
}

.entry_pg .rep_sec .rep_card {
    background: #ffffff1f;
    border-radius: 12px;
    padding: 32px;
    border: 1px solid #ffffff38;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: background .22s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .25s cubic-bezier(0.4, 0, 0.2, 1)
}

.entry_pg .rep_sec .rep_card:hover {
    background: #fff3;
    box-shadow: 0 8px 40px 0 #0e73a62e
}

.entry_pg .rep_sec .rep_card .rc_num {
    font-size: 43px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -.03em;
    line-height: 1.2;
    margin-bottom: 4px
}

.entry_pg .rep_sec .rep_card .rc_label {
    font-size: 15px;
    color: #fffc;
    line-height: 1.45
}

.entry_pg .rep_sec .rep_refs {
    display: flex;
    flex-direction: row;
    gap: 32px;
    align-items: stretch
}

.entry_pg .rep_sec .ref_item {
    flex: 1 1 0;
    background: #ffffff17;
    border-radius: 12px;
    padding: 32px;
    border: 1px solid #ffffff29
}

.entry_pg .rep_sec .ref_item .ri_quote {
    font-size: 18px;
    line-height: 1.65;
    color: #ffffffeb;
    margin-bottom: 16px;
    font-style: italic
}

.entry_pg .rep_sec .ref_item .ri_name {
    font-size: 15px;
    font-weight: 700;
    color: #DBF0FC
}

.entry_pg .rep_sec .ref_item .ri_role {
    font-size: 15px;
    color: #ffffffa6
}

.entry_pg .comm_sec {
    padding-top: 96px;
    padding-bottom: 96px;
    background: #fff;
    position: relative
}

.entry_pg .comm_sec .comm_grid {
    display: grid;
    grid-template-columns: 70fr 30fr;
    gap: 64px;
    align-items: center
}

.entry_pg .comm_sec .comm_left .cl_label {
    font-size: 15px;
    font-weight: 600;
    color: #2BBCF7;
    text-transform: uppercase;
    letter-spacing: .07em;
    margin-bottom: 16px
}

.entry_pg .comm_sec .comm_left .cl_h {
    font-size: 43px;
    font-weight: 800;
    letter-spacing: -.03em;
    line-height: 1.2;
    color: #0a2e42;
    margin-bottom: 16px
}

.entry_pg .comm_sec .comm_left .cl_p {
    font-size: 18px;
    line-height: 1.65;
    color: #3a5a6e;
    margin-bottom: 32px;
    max-width: 560px
}

.entry_pg .comm_sec .comm_left .cl_p2 {
    font-size: 15px;
    line-height: 1.65;
    color: #3a5a6e;
    max-width: 560px
}

.entry_pg .comm_sec .peer_row {
    display: flex;
    flex-direction: row;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 32px
}

.entry_pg .comm_sec .peer_tag {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 32px;
    background: #f2faff;
    border: 1px solid #0e73a624;
    font-size: 15px;
    font-weight: 600;
    color: #0E73A6;
    transition: background .2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .18s cubic-bezier(0.4, 0, 0.2, 1)
}

.entry_pg .comm_sec .peer_tag:hover {
    background: #DBF0FC;
    box-shadow: 0 4px 25px 0 #0e73a614
}

.entry_pg .comm_sec .peer_tag i {
    font-size: 18px;
    color: #2BBCF7
}

.entry_pg .comm_sec .comm_right {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center
}

.entry_pg .comm_sec .portrait_wrap {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #DBF0FC;
    box-shadow: 0 8px 40px 0 #0e73a621;
    flex-shrink: 0
}

.entry_pg .comm_sec .portrait_wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block
}

.entry_pg .comm_sec .portrait_info {
    text-align: center
}

.entry_pg .comm_sec .portrait_info .pi_name {
    font-size: 18px;
    font-weight: 700;
    color: #0a2e42;
    margin-bottom: 4px
}

.entry_pg .comm_sec .portrait_info .pi_role {
    font-size: 15px;
    color: #3a5a6e
}

.entry_pg .comm_sec .comm_img_strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 16px;
    width: 100%
}

.entry_pg .comm_sec .comm_img_strip img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #0e73a61f;
    display: block;
    opacity: .85
}

.entry_pg .t_block,
.entry_pg .inv_sec {
    border-right: 3px solid #2bbcf72e
}

@media (max-width: 1024px) {
    .entry_pg .t_block .t_h1 {
        font-size: 43px
    }

    .entry_pg .t_block .t_img_card {
        flex: 0 0 260px;
        width: 260px
    }

    .entry_pg .exp_sec .exp_grid {
        grid-template-columns: 1fr;
        gap: 32px
    }

    .entry_pg .exp_sec .exp_aside {
        position: static
    }

    .entry_pg .inv_sec .inv_cols {
        grid-template-columns: 1fr
    }

    .entry_pg .rep_sec .rep_row {
        grid-template-columns: 1fr 1fr
    }

    .entry_pg .rep_sec .rep_refs {
        flex-direction: column
    }

    .entry_pg .comm_sec .comm_grid {
        grid-template-columns: 1fr
    }

    .entry_pg .comm_sec .comm_right {
        flex-direction: row;
        justify-content: flex-start;
        align-items: flex-start
    }
}

@media (max-width: 640px) {
    .entry_pg .pg_bound {
        padding-left: 16px;
        padding-right: 16px
    }

    .entry_pg .t_block {
        padding-top: 32px;
        padding-bottom: 32px
    }

    .entry_pg .t_block .t_inner {
        flex-direction: column;
        gap: 32px
    }

    .entry_pg .t_block .t_h1 {
        font-size: 31px
    }

    .entry_pg .t_block .t_img_card {
        width: 100%;
        flex: unset
    }

    .entry_pg .t_block .t_actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px
    }

    .entry_pg .exp_sec {
        padding-top: 64px;
        padding-bottom: 64px
    }

    .entry_pg .inv_sec .inv_top {
        flex-direction: column;
        align-items: flex-start
    }

    .entry_pg .inv_sec .inv_h {
        font-size: 31px
    }

    .entry_pg .rep_sec .rep_row {
        grid-template-columns: 1fr
    }

    .entry_pg .rep_sec .rep_h {
        font-size: 31px
    }

    .entry_pg .comm_sec .cl_h {
        font-size: 31px
    }

    .entry_pg .comm_sec .comm_right {
        flex-direction: column;
        align-items: center
    }

    .entry_pg .comm_sec .comm_img_strip {
        display: none
    }
}

@media (max-width: 360px) {
    .entry_pg .t_block .t_h1 {
        font-size: 23px
    }

    .entry_pg .peer_row {
        gap: 8px
    }
}

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

.ct_us .pg_top {
    padding: 96px 32px 64px;
    background: #fff;
    position: relative
}

.ct_us .pg_top::before {
    content: '';
    position: absolute;
    top: 32px;
    right: 64px;
    width: 180px;
    height: 180px;
    border: 1px solid #0e73a61a;
    border-radius: 48px;
    pointer-events: none
}

.ct_us .pg_top::after {
    content: '';
    position: absolute;
    top: 64px;
    right: 96px;
    width: 100px;
    height: 100px;
    border: 1px solid #2bbcf721;
    border-radius: 32px;
    pointer-events: none
}

.ct_us .pg_top_in {
    max-width: 1320px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 64px
}

.ct_us .top_label {
    font-size: 15px;
    color: #0E73A6;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 16px;
    font-weight: 600
}

.ct_us .top_h1 {
    font-size: 60px;
    line-height: 1.2;
    letter-spacing: -.03em;
    color: #0d1a24;
    font-weight: 800;
    margin: 0 0 16px
}

.ct_us .top_h1 span {
    color: #0E73A6
}

.ct_us .top_sub {
    font-size: 18px;
    line-height: 1.65;
    color: #2d4a5c;
    max-width: 480px;
    margin: 0
}

.ct_us .top_left {
    flex: 1 1 0;
    min-width: 0
}

.ct_us .top_right {
    flex: 0 0 320px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-bottom: 8px
}

.ct_us .stat_item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 16px;
    border-radius: 12px;
    background: #f4fafd;
    box-shadow: 0 1px 3px 0 #0e73a60d
}

.ct_us .stat_num {
    font-size: 43px;
    line-height: 1.2;
    font-weight: 800;
    color: #0E73A6;
    letter-spacing: -.03em
}

.ct_us .stat_desc {
    font-size: 15px;
    color: #4a6a7c;
    line-height: 1.45
}

.ct_us .form_area {
    padding: 64px 32px;
    background: #f4fafd;
    position: relative
}

.ct_us .form_area::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(0deg, transparent, transparent 27px, #0e73a60a 28px), repeating-linear-gradient(90deg, transparent, transparent 27px, #0e73a60a 28px);
    pointer-events: none
}

.ct_us .form_in {
    max-width: 1320px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    gap: 64px;
    align-items: flex-start;
    position: relative
}

.ct_us .form_aside {
    flex: 0 0 300px;
    display: flex;
    flex-direction: column;
    gap: 32px
}

.ct_us .aside_heading {
    font-size: 31px;
    line-height: 1.2;
    font-weight: 700;
    color: #0d1a24;
    letter-spacing: -.02em;
    margin: 0 0 8px
}

.ct_us .aside_note {
    font-size: 15px;
    line-height: 1.65;
    color: #2d4a5c;
    margin: 0
}

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

.ct_us .checklist li {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    line-height: 1.45;
    color: #2d4a5c
}

.ct_us .chk_icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    margin-top: 1px
}

.ct_us .dashed_feat {
    border: 1.5px dashed #0e73a659;
    border-radius: 12px;
    padding: 16px;
    background: #dbf0fc66
}

.ct_us .dashed_feat .feat_lbl {
    font-size: 15px;
    font-weight: 600;
    color: #0E73A6;
    margin-bottom: 8px
}

.ct_us .dashed_feat .feat_txt {
    font-size: 15px;
    line-height: 1.65;
    color: #2d4a5c;
    margin: 0
}

.ct_us .form_main {
    flex: 1 1 0;
    min-width: 0
}

.ct_us .ct_form {
    background: #fff;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 4px 25px 0 #0e73a614
}

.ct_us .row_2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px
}

.ct_us .f_grp {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px
}

.ct_us .f_grp label {
    font-size: 15px;
    font-weight: 600;
    color: #0d1a24
}

.ct_us .f_grp input[type="text"],
.ct_us .f_grp input[type="email"],
.ct_us .f_grp input[type="tel"] {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #c8dde8;
    border-radius: 8px;
    font-size: 15px;
    color: #0d1a24;
    background: #fff;
    box-shadow: inset 0 1px 3px 0 #0e73a60f;
    transition: border-color .18s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .22s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
    box-sizing: border-box
}

.ct_us .f_grp input::placeholder {
    color: #8aacbb;
    font-weight: 300
}

.ct_us .f_grp input[type="text"]:focus,
.ct_us .f_grp input[type="email"]:focus,
.ct_us .f_grp input[type="tel"]:focus {
    border-color: #0E73A6;
    box-shadow: inset 0 1px 3px 0 #0e73a61a 0 0 0 3px #0e73a61a
}

.ct_us .svc_label {
    font-size: 15px;
    font-weight: 600;
    color: #0d1a24;
    margin-bottom: 8px;
    display: block
}

.ct_us .svc_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 16px
}

.ct_us .svc_opt {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border: 1.5px solid #c8dde8;
    border-radius: 8px;
    cursor: pointer;
    transition: border-color .18s cubic-bezier(0.4, 0, 0.2, 1), background .2s cubic-bezier(0.4, 0, 0.2, 1);
    background: #f4fafd
}

.ct_us .svc_opt:hover {
    border-color: #2BBCF7;
    background: #eaf6fd
}

.ct_us .svc_opt input[type="checkbox"] {
    accent-color: #0E73A6;
    width: 16px;
    height: 16px;
    cursor: pointer;
    flex-shrink: 0
}

.ct_us .svc_opt span {
    font-size: 15px;
    color: #0d1a24;
    line-height: 1.45
}

.ct_us .privacy_row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    padding: 12px;
    border-radius: 8px;
    background: #f4fafd
}

.ct_us .privacy_row input[type="checkbox"] {
    accent-color: #0E73A6;
    width: 16px;
    height: 16px;
    margin-top: 3px;
    flex-shrink: 0;
    cursor: pointer
}

.ct_us .privacy_row p {
    font-size: 15px;
    line-height: 1.65;
    color: #2d4a5c;
    margin: 0
}

.ct_us .privacy_row a {
    color: #0E73A6;
    text-decoration: underline;
    transition: color .18s cubic-bezier(0.4, 0, 0.2, 1)
}

.ct_us .privacy_row a:hover {
    color: #2BBCF7
}

.ct_us .submit_btn {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: linear-gradient(90deg, #0E73A6, #2BBCF7);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    position: relative;
    outline: 2px solid transparent;
    outline-offset: 0;
    transition: outline-color .15s cubic-bezier(0.4, 0, 0.2, 1), outline-offset .2s cubic-bezier(0.0, 0, 0.2, 1), box-shadow .22s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 25px 0 #0e73a621
}

.ct_us .submit_btn:hover {
    outline-color: #0E73A6;
    outline-offset: 4px;
    box-shadow: 0 8px 40px 0 #0e73a62e
}

.ct_us .submit_btn:focus {
    outline-color: #0d1a24;
    outline-offset: 4px
}

.ct_us .submit_btn svg {
    transition: transform .2s cubic-bezier(0.4, 0, 0.2, 1)
}

.ct_us .submit_btn:hover svg {
    transform: translateX(4px)
}

.ct_us .divider_cross {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 0 32px
}

.ct_us .divider_cross .d_line {
    height: 1px;
    flex: 1 1 0;
    background: linear-gradient(90deg, transparent, #0e73a633, transparent)
}

.ct_us .divider_cross .d_cross {
    width: 18px;
    height: 18px;
    position: relative;
    flex-shrink: 0
}

.ct_us .divider_cross .d_cross::before,
.ct_us .divider_cross .d_cross::after {
    content: '';
    position: absolute;
    background: #0e73a659;
    border-radius: 2px
}

.ct_us .divider_cross .d_cross::before {
    width: 18px;
    height: 2px;
    top: 8px;
    left: 0
}

.ct_us .divider_cross .d_cross::after {
    width: 2px;
    height: 18px;
    top: 0;
    left: 8px
}

.ct_us .contacts_area {
    padding: 64px 32px 96px;
    background: #fff
}

.ct_us .contacts_in {
    max-width: 1320px;
    margin: 0 auto
}

.ct_us .contacts_head {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 32px;
    margin-bottom: 64px
}

.ct_us .contacts_head h2 {
    font-size: 43px;
    line-height: 1.2;
    font-weight: 800;
    color: #0d1a24;
    letter-spacing: -.03em;
    margin: 0;
    flex: 1 1 0
}

.ct_us .contacts_head p {
    font-size: 15px;
    line-height: 1.65;
    color: #4a6a7c;
    margin: 0;
    max-width: 340px
}

.ct_us .contacts_mosaic {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 16px
}

.ct_us .img_block {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 40px 0 #0e73a621;
    border: 1px solid #0e73a61f;
    position: relative
}

.ct_us .img_block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 360px
}

.ct_us .img_block2 {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 25px 0 #0e73a614;
    border: 1px solid #0e73a61a
}

.ct_us .img_block2 img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block
}

.ct_us .c_card {
    border-radius: 12px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative
}

.ct_us .c_card.mid {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    background: linear-gradient(90deg, #0E73A6, #2BBCF7);
    color: #fff;
    box-shadow: 0 8px 40px 0 #0e73a621
}

.ct_us .c_card.mid .c_card_label {
    font-size: 15px;
    font-weight: 600;
    opacity: .8;
    text-transform: uppercase;
    letter-spacing: .08em
}

.ct_us .c_card.mid .c_card_val {
    font-size: 23px;
    font-weight: 700;
    line-height: 1.45;
    word-break: break-all
}

.ct_us .c_card.mid a {
    color: #fff;
    text-decoration: none;
    transition: opacity .18s cubic-bezier(0.4, 0, 0.2, 1)
}

.ct_us .c_card.mid a:hover {
    opacity: .8
}

.ct_us .c_card.mid .c_divider {
    height: 1px;
    background: #ffffff40;
    border-radius: 2px
}

.ct_us .c_card.addr {
    grid-column: 2 / 4;
    grid-row: 2 / 3;
    background: #f4fafd;
    border: 1.5px dashed #0e73a64d;
    flex-direction: row;
    align-items: center;
    gap: 32px
}

.ct_us .c_card.addr .addr_icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(90deg, #0E73A6, #2BBCF7);
    display: flex;
    align-items: center;
    justify-content: center
}

.ct_us .c_card.addr .addr_icon svg {
    width: 24px;
    height: 24px
}

.ct_us .c_card.addr .addr_txt h4 {
    font-size: 15px;
    font-weight: 600;
    color: #0E73A6;
    margin: 0 0 4px;
    text-transform: uppercase;
    letter-spacing: .06em
}

.ct_us .c_card.addr .addr_txt p {
    font-size: 18px;
    font-weight: 600;
    color: #0d1a24;
    margin: 0;
    line-height: 1.45
}

.ct_us .c_card.hours {
    grid-column: 3 / 4;
    grid-row: 2 / 3;
    display: none
}

.ct_us .strip_anim {
    position: relative;
    overflow: hidden;
    border-radius: 8px
}

.ct_us .strip_anim .strip_reveal {
    display: flex;
    flex-direction: column
}

.ct_us .strip_anim .strip_row {
    display: flex;
    flex-direction: row;
    overflow: hidden
}

.ct_us .strip_anim .strip_row span {
    display: block;
    padding: 4px 0;
    font-size: 15px;
    line-height: 1.45;
    color: #fff;
    transform: translateY(100%);
    transition: transform .22s cubic-bezier(0.4, 0, 0.2, 1)
}

.ct_us .c_card.mid:hover .strip_row span {
    transform: translateY(0)
}

.ct_us .anim_bg {
    animation: bg_pulse 6s ease-in-out infinite
}

@keyframes bg_pulse {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .82
    }
}

@media (max-width: 1024px) {
    .ct_us .pg_top_in {
        flex-direction: column;
        gap: 32px
    }

    .ct_us .top_right {
        flex: 0 0 auto;
        flex-direction: row;
        flex-wrap: wrap
    }

    .ct_us .stat_item {
        flex: 1 1 140px
    }

    .ct_us .form_in {
        flex-direction: column;
        gap: 32px
    }

    .ct_us .form_aside {
        flex: 0 0 auto;
        width: 100%
    }

    .ct_us .contacts_mosaic {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto auto
    }

    .ct_us .img_block {
        grid-column: 1 / 2;
        grid-row: 1 / 2
    }

    .ct_us .img_block img {
        min-height: 240px
    }

    .ct_us .c_card.mid {
        grid-column: 2 / 3;
        grid-row: 1 / 2
    }

    .ct_us .img_block2 {
        grid-column: 1 / 2;
        grid-row: 2 / 3
    }

    .ct_us .c_card.addr {
        grid-column: 2 / 3;
        grid-row: 2 / 3;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px
    }

    .ct_us .top_h1 {
        font-size: 43px
    }
}

@media (max-width: 640px) {
    .ct_us .pg_top {
        padding: 64px 16px 32px
    }

    .ct_us .top_h1 {
        font-size: 31px
    }

    .ct_us .form_area {
        padding: 32px 16px
    }

    .ct_us .ct_form {
        padding: 16px
    }

    .ct_us .row_2 {
        grid-template-columns: 1fr
    }

    .ct_us .svc_grid {
        grid-template-columns: 1fr
    }

    .ct_us .contacts_area {
        padding: 32px 16px 64px
    }

    .ct_us .contacts_head {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        margin-bottom: 32px
    }

    .ct_us .contacts_head h2 {
        font-size: 31px
    }

    .ct_us .contacts_mosaic {
        grid-template-columns: 1fr
    }

    .ct_us .img_block {
        grid-column: 1 / 2;
        grid-row: auto
    }

    .ct_us .c_card.mid {
        grid-column: 1 / 2;
        grid-row: auto
    }

    .ct_us .img_block2 {
        grid-column: 1 / 2;
        grid-row: auto
    }

    .ct_us .c_card.addr {
        grid-column: 1 / 2;
        grid-row: auto
    }

    .ct_us .stat_num {
        font-size: 31px
    }
}

@media (max-width: 360px) {
    .ct_us .top_h1 {
        font-size: 23px
    }

    .ct_us .contacts_head h2 {
        font-size: 23px
    }
}

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

.success_page .success_wrap {
    max-width: 560px;
    width: 100%;
    text-align: center
}

.success_page .icon_ring {
    width: 80px;
    height: 80px;
    border-radius: 48px;
    background: #DBF0FC;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
    box-shadow: 0 4px 25px 0 #0e73a614
}

.success_page .icon_ring svg {
    display: block
}

.success_page .success_heading {
    font-size: 43px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -.02em;
    color: #0E73A6;
    margin: 0 0 16px
}

.success_page .success_sub {
    font-size: 18px;
    line-height: 1.65;
    color: #2a4a5e;
    margin: 0 0 32px
}

.success_page .divider_line {
    width: 48px;
    height: 3px;
    border-radius: 8px;
    background: linear-gradient(to right, #0E73A6, #2BBCF7);
    margin: 0 auto 32px
}

.success_page .note_box {
    background: #DBF0FC;
    border-radius: 12px;
    padding: 16px 32px;
    margin-bottom: 32px;
    box-shadow: 0 1px 3px 0 #0e73a60d
}

.success_page .note_box p {
    font-size: 15px;
    line-height: 1.65;
    color: #0E73A6;
    margin: 0
}

.success_page .back_link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #0E73A6;
    text-decoration: none;
    padding: 8px 4px;
    border-bottom: 2px solid transparent;
    transition: border-color .18s cubic-bezier(0.4, 0, 0.2, 1), color .22s cubic-bezier(0.0, 0, 0.2, 1)
}

.success_page .back_link:hover {
    color: #2BBCF7;
    border-bottom-color: #2BBCF7
}

.success_page .back_link svg {
    transition: transform .25s cubic-bezier(0.4, 0, 0.2, 1)
}

.success_page .back_link:hover svg {
    transform: translateX(-4px)
}

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

    .success_page .success_heading {
        font-size: 31px
    }

    .success_page .note_box {
        padding: 16px
    }
}