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

body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    font-family: 'Karla', sans-serif
}

.hd {
    background: #fff;
    border-bottom: 2px solid #DBEDFF;
    position: relative
}

.hd_top {
    max-width: 1500px;
    margin: 0 auto;
    padding: 24px 48px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px
}

.brand_grp {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none
}

.logo_frame {
    width: 56px;
    height: 56px;
    border: 1px solid #DBEDFF;
    border-radius: 6px;
    background: #fff;
    box-shadow: -1px 2px 5px 0 #dbedff0d;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0
}

.logo_frame img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    display: block
}

.brand_name {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.1;
    color: #1a2e1a;
    letter-spacing: -.03em
}

.brand_name span {
    color: #11A665
}

.hd_tagline {
    font-size: 14px;
    line-height: 1.75;
    color: #3a4a3a;
    text-align: right;
    max-width: 360px;
    border-left: none;
    padding-left: 24px;
    border-right: 3px solid #11A665;
    padding-right: 12px
}

.hd_contact_row {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-shrink: 0
}

.hd_contact_item {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    line-height: 1.75;
    color: #2a3a2a;
    text-decoration: none;
    transition: color .22s cubic-bezier(0.4, 0, 0.2, 1)
}

.hd_contact_item:hover {
    color: #11A665
}

.hd_contact_item svg {
    flex-shrink: 0;
    transition: transform .25s cubic-bezier(0.0, 0, 0.2, 1)
}

.hd_contact_item:hover svg {
    transform: translateY(-2px)
}

.hd_nav_bar {
    background: linear-gradient(90deg, #DBEDFF 0%, #edf6ff 60%, #f5fbff 100%);
    border-top: 1px solid #11a6651f
}

.hd_nav_inner {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 48px;
    display: flex;
    align-items: stretch;
    flex-wrap: wrap
}

.hd_nav_inner a {
    display: flex;
    align-items: center;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.75;
    color: #1a2e1a;
    text-decoration: none;
    letter-spacing: .01em;
    border-bottom: 3px solid transparent;
    transition: color .2s cubic-bezier(0.4, 0, 0.2, 1), border-color .2s cubic-bezier(0.4, 0, 0.2, 1), background .22s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap
}

.hd_nav_inner a:hover {
    color: #11A665;
    border-bottom-color: #11A665;
    background: #11a6650f
}

.hd_nav_inner a:focus {
    outline: none;
    filter: invert(1)
}

.hd_nav_inner a.active {
    color: #7D370B;
    border-bottom-color: #7D370B
}

.ft {
    background: #0d1f0d;
    border-top: 2px solid #11A665
}

.ft_main {
    max-width: 1500px;
    margin: 0 auto;
    padding: 48px 48px 24px;
    display: flex;
    align-items: flex-start;
    gap: 48px;
    flex-wrap: wrap
}

.ft_brand {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 160px
}

.ft_logo_frame {
    width: 56px;
    height: 56px;
    border: 1px solid #dbedff40;
    border-radius: 6px;
    background: #ffffff0f;
    box-shadow: -1px 2px 5px 0 #dbedff0d;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0
}

.ft_logo_frame img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    display: block
}

.ft_brand_name {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.1;
    color: #DBEDFF;
    letter-spacing: -.03em
}

.ft_brand_name span {
    color: #11A665
}

.ft_brand_desc {
    font-size: 14px;
    line-height: 1.75;
    color: #dbedff99;
    max-width: 200px
}

.ft_cols {
    flex: 1 1 auto;
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
    justify-content: flex-end
}

.ft_col {
    min-width: 140px
}

.ft_col_head {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.75;
    color: #11A665;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 12px;
    padding-bottom: 4px;
    border-bottom: 1px solid #11a6654d
}

.ft_col ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 4px
}

.ft_col ul li a {
    font-size: 14px;
    line-height: 1.75;
    color: #dbedffbf;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: color .22s cubic-bezier(0.4, 0, 0.2, 1)
}

.ft_col ul li a:hover {
    color: #DBEDFF
}

.ft_col ul li a:focus {
    outline: none;
    filter: invert(1)
}

.ft_col ul li a svg {
    transition: transform .24s cubic-bezier(0.0, 0, 0.2, 1);
    flex-shrink: 0
}

.ft_col ul li a:hover svg {
    transform: translateX(2px)
}

.ft_contact_col .ft_contact_item {
    display: flex;
    align-items: flex-start;
    gap: 4px;
    font-size: 14px;
    line-height: 1.75;
    color: #dbedffbf;
    text-decoration: none;
    margin-bottom: 4px;
    transition: color .22s cubic-bezier(0.4, 0, 0.2, 1)
}

.ft_contact_col .ft_contact_item:hover {
    color: #DBEDFF
}

.ft_contact_col .ft_contact_item svg {
    flex-shrink: 0;
    margin-top: 4px;
    transition: transform .25s cubic-bezier(0.0, 0, 0.2, 1)
}

.ft_contact_col .ft_contact_item:hover svg {
    transform: translateY(-2px)
}

.ft_divider {
    max-width: 1500px;
    margin: 0 auto;
    border: none;
    border-top: 1px solid #dbedff1f
}

.ft_meta {
    max-width: 1500px;
    margin: 0 auto;
    padding: 24px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px
}

.ft_copy {
    font-size: 14px;
    line-height: 1.75;
    color: #dbedff73
}

.ft_meta_links {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap
}

.ft_meta_links a {
    font-size: 14px;
    line-height: 1.75;
    color: #dbedff73;
    text-decoration: none;
    transition: color .2s cubic-bezier(0.4, 0, 0.2, 1)
}

.ft_meta_links a:hover {
    color: #DBEDFF
}

.ft_meta_links a:focus {
    outline: none;
    filter: invert(1)
}

.ck_pop {
    position: fixed;
    bottom: 24px;
    left: 0;
    right: 0;
    margin: auto;
    width: 360px;
    background: #fff;
    border: 2px solid #DBEDFF;
    border-radius: 10px;
    box-shadow: -1px 8px 36px 0 #dbedff24;
    padding: 24px;
    z-index: 1200;
    display: none;
    transform: translateY(40px);
    opacity: 0;
    transition: transform .22s cubic-bezier(0.4, 0, 0.2, 1), opacity .22s cubic-bezier(0.4, 0, 0.2, 1)
}

.ck_pop.vis {
    transform: translateY(0);
    opacity: 1
}

.ck_desc {
    font-size: 14px;
    line-height: 1.75;
    color: #2a3a2a;
    margin-bottom: 12px
}

.ck_desc ul {
    margin: 4px 0 0;
    padding-left: 16px
}

.ck_desc ul li {
    font-size: 14px;
    line-height: 1.75;
    color: #3a4a3a
}

.ck_head_txt {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.75;
    color: #1a2e1a;
    margin-bottom: 4px
}

.ck_btns {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 12px
}

.ck_accept {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.75;
    color: #11A665;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color .2s cubic-bezier(0.4, 0, 0.2, 1)
}

.ck_accept:hover {
    color: #0d8a52
}

.ck_accept:focus {
    outline: none;
    filter: invert(1)
}

.ck_decline {
    font-size: 14px;
    line-height: 1.75;
    color: #5a6a5a;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color .2s cubic-bezier(0.4, 0, 0.2, 1)
}

.ck_decline:hover {
    color: #2a3a2a
}

.ck_decline:focus {
    outline: none;
    filter: invert(1)
}

@media (max-width: 1024px) {
    .hd_top {
        padding: 24px 24px 12px;
        flex-wrap: wrap;
        gap: 12px
    }

    .hd_nav_inner {
        padding: 0 24px
    }

    .hd_tagline {
        max-width: 260px;
        font-size: 14px
    }

    .ft_main {
        padding: 48px 24px 24px
    }

    .ft_meta {
        padding: 24px
    }
}

@media (max-width: 768px) {
    .hd_top {
        padding: 12px;
        gap: 12px
    }

    .hd_tagline {
        display: none
    }

    .hd_contact_row {
        gap: 12px
    }

    .hd_nav_inner {
        padding: 0 12px
    }

    .hd_nav_inner a {
        padding: 12px;
        font-size: 14px
    }

    .ft_main {
        padding: 48px 12px 24px;
        flex-direction: column;
        gap: 24px
    }

    .ft_cols {
        justify-content: flex-start;
        gap: 24px
    }

    .ft_meta {
        padding: 24px 12px;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px
    }

    .ck_pop {
        width: calc(100% - 48px);
        bottom: 12px
    }
}

@media (max-width: 480px) {
    .hd_nav_inner a {
        padding: 12px 4px;
        font-size: 14px
    }

    .ft_cols {
        flex-direction: column;
        gap: 24px
    }

    .ft_meta_links {
        gap: 12px
    }
}

.policy-details {
    max-width: 1500px;
    margin: 0 auto;
    padding: 96px 48px
}

.policy-details h1 {
    font-size: 70px;
    line-height: 1.1;
    letter-spacing: -.03em;
    color: #1b1b1b;
    margin-bottom: 48px;
    margin-top: 0
}

.policy-details h2 {
    font-size: 36px;
    line-height: 1.1;
    letter-spacing: -.02em;
    color: #1b1b1b;
    margin-top: 96px;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid #DBEDFF
}

.policy-details h3 {
    font-size: 24px;
    line-height: 1.1;
    letter-spacing: -.01em;
    color: #1b1b1b;
    margin-top: 48px;
    margin-bottom: 12px
}

.policy-details h4 {
    font-size: 14px;
    line-height: 1.75;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #7D370B;
    margin-top: 48px;
    margin-bottom: 12px
}

.policy-details h5 {
    font-size: 14px;
    line-height: 1.75;
    letter-spacing: .04em;
    color: #11A665;
    margin-top: 24px;
    margin-bottom: 12px
}

.policy-details h6 {
    font-size: 14px;
    line-height: 1.75;
    color: #555;
    margin-top: 24px;
    margin-bottom: 12px
}

.policy-details p {
    font-size: 14px;
    line-height: 1.75;
    color: #2c2c2c;
    margin-top: 0;
    margin-bottom: 24px;
    max-width: 80ch
}

.policy-details ul,
.policy-details ol {
    font-size: 14px;
    line-height: 1.75;
    color: #2c2c2c;
    margin-top: 0;
    margin-bottom: 24px;
    padding-left: 24px;
    max-width: 80ch
}

.policy-details ul {
    list-style: none;
    padding-left: 0
}

.policy-details ul li {
    padding-left: 24px;
    position: relative;
    margin-bottom: 12px
}

.policy-details ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #11A665
}

.policy-details ol {
    list-style: decimal
}

.policy-details ol li {
    margin-bottom: 12px;
    padding-left: 4px
}

.policy-details li ul,
.policy-details li ol {
    margin-top: 12px;
    margin-bottom: 0
}

.policy-details strong,
.policy-details b {
    font-weight: 700;
    color: #1b1b1b
}

.policy-details em,
.policy-details i {
    font-style: italic;
    color: #3a3a3a
}

.policy-details table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 48px;
    font-size: 14px;
    line-height: 1.75;
    box-shadow: -1px 5px 14px 0 #dbedff1c;
    border-radius: 6px;
    overflow: hidden
}

.policy-details thead {
    background-color: #DBEDFF
}

.policy-details thead th {
    font-size: 14px;
    line-height: 1.75;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #1b1b1b;
    font-weight: 700;
    padding: 12px 24px;
    text-align: left;
    border-bottom: 2px solid #b8d9f7
}

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

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

.policy-details tbody tr:hover {
    background-color: #f4f9ff
}

.policy-details td {
    padding: 12px 24px;
    color: #2c2c2c;
    vertical-align: top
}

.policy-details div {
    margin-bottom: 24px
}

@media (max-width: 1024px) {
    .policy-details {
        padding: 96px 48px
    }

    .policy-details h1 {
        font-size: 36px
    }

    .policy-details h2 {
        font-size: 24px;
        margin-top: 48px
    }
}

@media (max-width: 768px) {
    .policy-details {
        padding: 48px 24px
    }

    .policy-details h1 {
        font-size: 36px;
        margin-bottom: 24px
    }

    .policy-details h2 {
        margin-top: 48px
    }

    .policy-details h3 {
        margin-top: 24px
    }

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

@media (max-width: 480px) {
    .policy-details {
        padding: 48px 12px
    }

    .policy-details h1 {
        font-size: 24px
    }

    .policy-details h2 {
        font-size: 24px
    }

    .policy-details thead th,
    .policy-details td {
        padding: 12px
    }
}

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

.lrn_prog .pg_wrap {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 24px
}

.lrn_prog ::selection {
    background: #1a3a2a;
    color: #DBEDFF;
    font-weight: 700
}

.lrn_prog .divider_line {
    height: 2px;
    background: linear-gradient(to right, #11A665, #DBEDFF, transparent);
    border: none;
    margin: 0
}

.lrn_prog .wavy_top {
    width: 100%;
    height: 18px;
    background: none;
    overflow: hidden;
    line-height: 0
}

.lrn_prog .wavy_top svg {
    display: block;
    width: 100%;
    height: 18px
}

.lrn_prog .tb {
    padding: 96px 0 48px;
    background: #fff;
    position: relative
}

.lrn_prog .tb_blob1 {
    position: absolute;
    top: 24px;
    left: -48px;
    width: 320px;
    height: 320px;
    background: #DBEDFF;
    border-radius: 50%;
    filter: blur(72px);
    opacity: .55;
    pointer-events: none;
    z-index: 0
}

.lrn_prog .tb_blob2 {
    position: absolute;
    bottom: 48px;
    right: 0;
    width: 220px;
    height: 220px;
    background: #11A665;
    border-radius: 50%;
    filter: blur(90px);
    opacity: .13;
    pointer-events: none;
    z-index: 0
}

.lrn_prog .tb_inner {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 48px;
    position: relative;
    z-index: 1
}

.lrn_prog .tb_img_col {
    flex: 0 0 340px;
    max-width: 340px
}

.lrn_prog .tb_img_card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: -1px 8px 36px 0 #11a66524;
    position: relative
}

.lrn_prog .tb_img_card img {
    display: block;
    width: 340px;
    height: 400px;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.2);
    transition: filter .26s cubic-bezier(0.4, 0, 0.2, 1)
}

.lrn_prog .tb_img_card:hover img {
    filter: grayscale(60%) contrast(1.1)
}

.lrn_prog .tb_text_col {
    flex: 1 1 0;
    min-width: 0
}

.lrn_prog .tb_label {
    display: inline-block;
    font-size: 14px;
    line-height: 1.75;
    color: #11A665;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    border: 2px solid #11A665;
    border-radius: 4px;
    padding: 4px 12px;
    margin-bottom: 24px;
    background: transparent;
    animation: border_trace .28s cubic-bezier(0.0, 0, 0.2, 1) both
}

@keyframes border_trace {
    from {
        clip-path: inset(0 100% 0 0);
        opacity: 0
    }

    to {
        clip-path: inset(0 0% 0 0);
        opacity: 1
    }
}

.lrn_prog .tb_shape {
    display: inline-block;
    width: 12px;
    height: 12px;
    background: #7D370B;
    border-radius: 0;
    transform: rotate(45deg);
    margin-right: 12px;
    vertical-align: middle;
    flex-shrink: 0
}

.lrn_prog .tb_h1 {
    font-size: 70px;
    line-height: 1.1;
    letter-spacing: -.03em;
    color: #111;
    margin: 0 0 24px;
    font-weight: 900
}

.lrn_prog .tb_h1 .acc {
    color: #11A665
}

.lrn_prog .tb_desc {
    font-size: 24px;
    line-height: 1.75;
    color: #333;
    max-width: 560px;
    margin: 0
}

.lrn_prog .tb_desc .acc_bold {
    font-weight: 700;
    color: #7D370B
}

.lrn_prog .pd {
    background: #0d2b1e;
    padding: 96px 0 48px;
    position: relative
}

.lrn_prog .pd_wavy {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    pointer-events: none;
    line-height: 0
}

.lrn_prog .pd_wavy svg {
    display: block;
    width: 100%;
    height: 18px
}

.lrn_prog .pd_top {
    display: flex;
    flex-direction: row;
    gap: 48px;
    align-items: flex-start;
    margin-bottom: 48px
}

.lrn_prog .pd_heading_col {
    flex: 0 0 420px
}

.lrn_prog .pd_shape {
    display: block;
    width: 10px;
    height: 10px;
    background: #11A665;
    border-radius: 0;
    margin-bottom: 12px
}

.lrn_prog .pd_h2 {
    font-size: 36px;
    line-height: 1.1;
    letter-spacing: -.02em;
    color: #DBEDFF;
    margin: 0 0 24px;
    font-weight: 800
}

.lrn_prog .pd_h2 .acc {
    color: #11A665
}

.lrn_prog .pd_intro {
    font-size: 24px;
    line-height: 1.75;
    color: #a8cfc0;
    margin: 0
}

.lrn_prog .pd_body_col {
    flex: 1 1 0;
    min-width: 0
}

.lrn_prog .pd_body_p {
    font-size: 14px;
    line-height: 1.75;
    color: #c5ddd5;
    margin: 0 0 24px
}

.lrn_prog .pd_body_p:last-child {
    margin-bottom: 0
}

.lrn_prog .pd_modules {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px
}

.lrn_prog .pd_mod {
    border: 2px solid #dbedff26;
    border-radius: 6px;
    padding: 24px;
    background: #dbedff0a;
    box-shadow: -1px 5px 14px 0 #dbedff1c;
    transition: border-color .22s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .22s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden
}

.lrn_prog .pd_mod::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to bottom, #11A665, transparent);
    border-radius: 6px 6px 0 0
}

.lrn_prog .pd_mod:hover {
    border-color: #11a66580;
    box-shadow: -1px 8px 36px 0 #11a66524
}

.lrn_prog .pd_mod_num {
    font-size: 36px;
    line-height: 1.1;
    font-weight: 900;
    color: #11a6654d;
    margin-bottom: 12px;
    letter-spacing: -.03em
}

.lrn_prog .pd_mod_h {
    font-size: 14px;
    line-height: 1.75;
    font-weight: 700;
    color: #DBEDFF;
    margin: 0 0 12px;
    text-transform: uppercase;
    letter-spacing: .06em
}

.lrn_prog .pd_mod_p {
    font-size: 14px;
    line-height: 1.75;
    color: #8ab5a5;
    margin: 0
}

.lrn_prog .pd_faq_row {
    border-top: 1px solid #dbedff1f;
    padding-top: 48px
}

.lrn_prog .pd_faq_h {
    font-size: 24px;
    line-height: 1.75;
    color: #DBEDFF;
    margin: 0 0 24px;
    font-weight: 700;
    text-align: center
}

.lrn_prog .pd_faq_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px
}

.lrn_prog .pd_faq_item {
    border: 2px solid #dbedff1a;
    border-radius: 6px;
    padding: 24px;
    background: #11a6650d
}

.lrn_prog .pd_faq_q {
    font-size: 14px;
    line-height: 1.75;
    font-weight: 700;
    color: #DBEDFF;
    margin: 0 0 12px
}

.lrn_prog .pd_faq_a {
    font-size: 14px;
    line-height: 1.75;
    color: #8ab5a5;
    margin: 0
}

.lrn_prog .pd_cta_row {
    margin-top: 48px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
    justify-content: center
}

.lrn_prog .btn_prim {
    display: inline-block;
    font-size: 14px;
    line-height: 1.75;
    font-weight: 700;
    color: #11A665;
    background: transparent;
    border: 3px solid #11A665;
    border-radius: 4px;
    padding: 12px 48px;
    cursor: pointer;
    text-decoration: none;
    letter-spacing: .06em;
    text-transform: uppercase;
    transition: background .24s cubic-bezier(0.4, 0, 0.2, 1), color .24s cubic-bezier(0.4, 0, 0.2, 1), transform .2s cubic-bezier(0.0, 0, 0.2, 1)
}

.lrn_prog .btn_prim:hover {
    background: #11A665;
    color: #fff;
    transform: scale(1.04)
}

.lrn_prog .btn_prim:active {
    box-shadow: inset 0 2px 6px #11a6654d;
    transform: scale(0.99)
}

.lrn_prog .btn_sec {
    display: inline-block;
    font-size: 14px;
    line-height: 1.75;
    font-weight: 700;
    color: #DBEDFF;
    background: transparent;
    border: 3px solid #dbedff59;
    border-radius: 4px;
    padding: 12px 48px;
    cursor: pointer;
    text-decoration: none;
    letter-spacing: .06em;
    text-transform: uppercase;
    transition: border-color .22s cubic-bezier(0.4, 0, 0.2, 1), color .22s cubic-bezier(0.4, 0, 0.2, 1), transform .2s cubic-bezier(0.0, 0, 0.2, 1)
}

.lrn_prog .btn_sec:hover {
    border-color: #DBEDFF;
    color: #fff;
    transform: scale(1.04)
}

.lrn_prog .btn_sec:active {
    box-shadow: inset 0 2px 6px #dbedff26
}

@media (max-width: 1024px) {
    .lrn_prog .tb_h1 {
        font-size: 36px
    }

    .lrn_prog .tb_img_col {
        flex: 0 0 260px;
        max-width: 260px
    }

    .lrn_prog .tb_img_card img {
        width: 260px;
        height: 300px
    }

    .lrn_prog .pd_modules {
        grid-template-columns: 1fr 1fr
    }

    .lrn_prog .pd_top {
        flex-direction: column;
        gap: 24px
    }

    .lrn_prog .pd_heading_col {
        flex: none
    }
}

@media (max-width: 768px) {
    .lrn_prog .tb_inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px
    }

    .lrn_prog .tb_img_col {
        flex: none;
        max-width: 100%;
        width: 100%
    }

    .lrn_prog .tb_img_card img {
        width: 100%;
        height: 240px
    }

    .lrn_prog .tb_h1 {
        font-size: 36px
    }

    .lrn_prog .tb_desc {
        font-size: 14px
    }

    .lrn_prog .pd_modules {
        grid-template-columns: 1fr
    }

    .lrn_prog .pd_faq_grid {
        grid-template-columns: 1fr
    }

    .lrn_prog .pd_cta_row {
        flex-direction: column;
        gap: 12px
    }

    .lrn_prog .pd {
        padding: 48px 0
    }

    .lrn_prog .tb {
        padding: 48px 0 24px
    }
}

@media (max-width: 480px) {
    .lrn_prog .tb_h1 {
        font-size: 24px
    }

    .lrn_prog .pd_h2 {
        font-size: 24px
    }

    .lrn_prog .btn_prim,
    .lrn_prog .btn_sec {
        padding: 12px 24px
    }
}

@media (min-width: 1440px) {
    .lrn_prog .tb_h1 {
        font-size: 70px
    }
}

.cmp {
    max-width: 1500px;
    margin: 0 auto;
    overflow-x: clip
}

.cmp .pg_head {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 0;
    padding: 48px 48px 96px;
    background: #DBEDFF;
    position: relative
}

.cmp .pg_head::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: 0;
    right: 0;
    height: 80px;
    background: #DBEDFF;
    clip-path: polygon(0 0, 100% 0, 100% 40%, 0 100%);
    z-index: 1
}

.cmp .ph_img_col {
    flex: 0 0 340px;
    position: relative;
    display: flex;
    align-items: center
}

.cmp .ph_img_wrap {
    width: 320px;
    height: 420px;
    overflow: hidden;
    border-radius: 10px;
    clip-path: polygon(0 0, 100% 8%, 100% 100%, 0 92%);
    box-shadow: -1px 8px 36px 0 #dbedff24
}

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

.cmp .ph_deco_line {
    position: absolute;
    top: 24px;
    left: -12px;
    width: 6px;
    height: 180px;
    background: #11A665;
    border-radius: 4px
}

.cmp .ph_deco_dot {
    position: absolute;
    bottom: 48px;
    left: 20px;
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: #7D370B;
    opacity: .18
}

.cmp .ph_txt_col {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 24px 0 24px 48px
}

.cmp .ph_abbr {
    font-size: 70px;
    line-height: 1.1;
    font-weight: 900;
    color: #11A665;
    opacity: .1;
    letter-spacing: -4px;
    margin-bottom: -24px;
    display: block;
    pointer-events: none;
    user-select: none
}

.cmp .ph_label {
    display: inline-block;
    font-size: 14px;
    line-height: 1.75;
    color: #7D370B;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 12px;
    border-bottom: 2px solid #7D370B;
    padding-bottom: 4px
}

.cmp .ph_h1 {
    font-size: 36px;
    line-height: 1.1;
    font-weight: 900;
    color: #1b2a38;
    letter-spacing: -.02em;
    margin: 0 0 12px
}

.cmp .ph_h1 strong {
    color: #11A665
}

.cmp .ph_tagline {
    font-size: 14px;
    line-height: 1.75;
    color: #2c4a5a;
    margin: 0 0 24px;
    max-width: 480px
}

.cmp .ph_actions {
    display: flex;
    flex-direction: row;
    gap: 12px;
    flex-wrap: wrap
}

.cmp .btn_pri {
    display: inline-block;
    font-size: 14px;
    line-height: 1.75;
    font-weight: 700;
    color: #11A665;
    background: transparent;
    border: 3px solid #11A665;
    border-radius: 6px;
    padding: 4px 24px;
    text-decoration: none;
    cursor: pointer;
    transition: transform .22s cubic-bezier(0.4, 0, 0.2, 1), background .2s cubic-bezier(0.4, 0, 0.2, 1), color .2s cubic-bezier(0.4, 0, 0.2, 1)
}

.cmp .btn_pri:hover {
    transform: scale(1.04);
    background: #11A665;
    color: #fff
}

.cmp .btn_pri:active {
    box-shadow: inset 0 2px 8px 0 #11a66538
}

.cmp .btn_sec {
    display: inline-block;
    font-size: 14px;
    line-height: 1.75;
    font-weight: 700;
    color: #7D370B;
    background: transparent;
    border: 3px solid #7D370B;
    border-radius: 6px;
    padding: 4px 24px;
    text-decoration: none;
    cursor: pointer;
    transition: transform .25s cubic-bezier(0.0, 0, 0.2, 1), background .22s cubic-bezier(0.4, 0, 0.2, 1), color .22s cubic-bezier(0.4, 0, 0.2, 1)
}

.cmp .btn_sec:hover {
    transform: scale(1.04);
    background: #7D370B;
    color: #fff
}

.cmp .btn_sec:active {
    box-shadow: inset 0 2px 8px 0 #7d370b38
}

.cmp .plans_sec {
    position: relative;
    z-index: 2;
    padding: 96px 48px;
    background: #fff
}

.cmp .ps_top {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 48px;
    gap: 24px
}

.cmp .ps_head_block {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.cmp .ps_geo {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px
}

.cmp .ps_shape {
    width: 14px;
    height: 14px;
    background: #11A665;
    border-radius: 4px;
    flex-shrink: 0
}

.cmp .ps_geo_label {
    font-size: 14px;
    line-height: 1.75;
    color: #11A665;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em
}

.cmp .ps_h2 {
    font-size: 36px;
    line-height: 1.1;
    font-weight: 900;
    color: #1b2a38;
    letter-spacing: -.02em;
    margin: 0
}

.cmp .ps_h2 strong {
    color: #7D370B
}

.cmp .ps_sub {
    font-size: 14px;
    line-height: 1.75;
    color: #2c4a5a;
    max-width: 360px;
    margin: 0
}

.cmp .stats_row {
    display: flex;
    flex-direction: row;
    gap: 24px;
    flex-shrink: 0
}

.cmp .stat_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 12px 24px;
    background: #DBEDFF;
    border-radius: 10px;
    min-width: 100px;
    animation: shadow_pulse 2.8s cubic-bezier(0.4, 0, 0.2, 1) infinite
}

.cmp .stat_item:nth-child(2) {
    animation-delay: .9s
}

.cmp .stat_item:nth-child(3) {
    animation-delay: 1.8s
}

@keyframes shadow_pulse {

    0%,
    100% {
        box-shadow: -1px 2px 5px 0 #dbedff0d
    }

    50% {
        box-shadow: -1px 8px 36px 0 #11a66538
    }
}

.cmp .stat_num {
    font-size: 36px;
    line-height: 1.1;
    font-weight: 900;
    color: #11A665;
    letter-spacing: -.02em
}

.cmp .stat_lbl {
    font-size: 14px;
    line-height: 1.75;
    color: #2c4a5a;
    font-weight: 600;
    text-align: center
}

.cmp .plans_grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 24px;
    align-items: start
}

.cmp .plan_card {
    border-radius: 10px;
    border: 3px solid #DBEDFF;
    background: #fff;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform .26s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .26s cubic-bezier(0.4, 0, 0.2, 1), border-color .2s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    cursor: default
}

.cmp .plan_card:hover {
    transform: translateY(-8px);
    box-shadow: -1px 8px 36px 0 #dbedff24;
    border-color: #11A665;
    z-index: 3
}

.cmp .plan_card.accent {
    border-color: #11A665 !important;
    background: #DBEDFF !important
}

.cmp .plan_card.accent .pc_name {
    color: #11A665
}

.cmp .pc_badge {
    position: absolute;
    top: -14px;
    left: 24px;
    background: #11A665;
    color: #fff;
    font-size: 14px;
    line-height: 1.75;
    font-weight: 700;
    padding: 0 12px;
    border-radius: 4px
}

.cmp .pc_icon {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    background: #DBEDFF;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.cmp .plan_card.accent .pc_icon {
    background: #fff
}

.cmp .pc_icon svg {
    display: block
}

.cmp .pc_name {
    font-size: 24px;
    line-height: 1.1;
    font-weight: 900;
    color: #1b2a38;
    letter-spacing: -.01em;
    margin: 0
}

.cmp .pc_price {
    font-size: 36px;
    line-height: 1.1;
    font-weight: 900;
    color: #7D370B;
    letter-spacing: -.02em
}

.cmp .pc_price span {
    font-size: 14px;
    font-weight: 600;
    color: #2c4a5a;
    letter-spacing: 0
}

.cmp .pc_desc {
    font-size: 14px;
    line-height: 1.75;
    color: #2c4a5a;
    margin: 0
}

.cmp .pc_divider {
    height: 1px;
    background: #DBEDFF;
    border: none;
    margin: 4px 0
}

.cmp .plan_card.accent .pc_divider {
    background: #11a66533
}

.cmp .pc_feat_list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 4px
}

.cmp .pc_feat_list li {
    font-size: 14px;
    line-height: 1.75;
    color: #1b2a38;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 8px
}

.cmp .pc_feat_list li .feat_dot {
    flex-shrink: 0;
    margin-top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 0;
    background: #11A665;
    transform: rotate(45deg)
}

.cmp .pc_feat_list li.off .feat_dot {
    background: #ccc
}

.cmp .pc_feat_list li.off {
    color: #8a9baa
}

.cmp .pc_cta {
    margin-top: 4px;
    display: block;
    text-align: center;
    font-size: 14px;
    line-height: 1.75;
    font-weight: 700;
    color: #11A665;
    background: transparent;
    border: 3px solid #11A665;
    border-radius: 6px;
    padding: 4px 12px;
    text-decoration: none;
    transition: transform .22s cubic-bezier(0.4, 0, 0.2, 1), background .2s cubic-bezier(0.4, 0, 0.2, 1), color .2s cubic-bezier(0.4, 0, 0.2, 1)
}

.cmp .pc_cta:hover {
    transform: scale(1.04);
    background: #11A665;
    color: #fff
}

.cmp .pc_cta:active {
    box-shadow: inset 0 2px 8px 0 #11a66538
}

.cmp .pc_cta.dark {
    color: #7D370B;
    border-color: #7D370B
}

.cmp .pc_cta.dark:hover {
    background: #7D370B;
    color: #fff
}

.cmp .pc_cta.dark:active {
    box-shadow: inset 0 2px 8px 0 #7d370b38
}

.cmp .vis_bar_row {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    gap: 12px
}

.cmp .vb_label_row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center
}

.cmp .vb_name {
    font-size: 14px;
    line-height: 1.75;
    font-weight: 700;
    color: #1b2a38
}

.cmp .vb_val {
    font-size: 14px;
    line-height: 1.75;
    color: #11A665;
    font-weight: 700
}

.cmp .vb_track {
    height: 10px;
    background: #DBEDFF;
    border-radius: 4px;
    overflow: hidden
}

.cmp .vb_fill {
    height: 100%;
    border-radius: 4px;
    background: #11A665;
    transition: width .28s cubic-bezier(0.4, 0, 0.2, 1)
}

.cmp .vb_fill.brown {
    background: #7D370B
}

@media (max-width: 1024px) {
    .cmp .pg_head {
        flex-direction: column;
        padding: 48px 24px 96px
    }

    .cmp .ph_img_col {
        flex: none;
        width: 100%;
        justify-content: center
    }

    .cmp .ph_txt_col {
        padding: 24px 0 0
    }

    .cmp .plans_grid {
        grid-template-columns: 1fr 1fr
    }

    .cmp .ps_top {
        flex-direction: column;
        align-items: flex-start
    }

    .cmp .stats_row {
        flex-wrap: wrap
    }
}

@media (max-width: 768px) {
    .cmp .plans_grid {
        grid-template-columns: 1fr
    }

    .cmp .plans_sec {
        padding: 96px 24px 48px
    }

    .cmp .ph_img_wrap {
        width: 100%;
        height: 260px
    }

    .cmp .ph_abbr {
        font-size: 36px
    }
}

@media (max-width: 480px) {
    .cmp .pg_head {
        padding: 24px 12px 96px
    }

    .cmp .plans_sec {
        padding: 96px 12px 48px
    }

    .cmp .ph_h1 {
        font-size: 24px
    }

    .cmp .ps_h2 {
        font-size: 24px
    }

    .cmp .stat_num {
        font-size: 24px
    }
}

.ct_us {
    max-width: 1500px;
    margin: 0 auto;
    overflow: hidden
}

.ct_us .pg_reveal {
    animation: reveal_in .26s cubic-bezier(0.4, 0, 0.2, 1) both
}

@keyframes reveal_in {
    from {
        opacity: 0;
        transform: scale(0.97)
    }

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

.ct_us ::selection {
    background: #11A665;
    color: #fff;
    font-weight: 700
}

.ct_us input::placeholder,
.ct_us textarea::placeholder {
    font-size: 14px;
    color: #8a8a8a
}

.ct_us .dbl_bdr {
    border: 2px solid #DBEDFF;
    outline: 4px solid #dbedff59;
    outline-offset: 3px
}

.ct_us .scallop_div {
    width: 100%;
    height: 32px;
    background: #fff;
    position: relative;
    overflow: hidden
}

.ct_us .scallop_div::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 32px;
    background: radial-gradient(circle at 50% 0%, #fff 16px, transparent 16px), radial-gradient(circle at 50% 0%, #fff 16px, transparent 16px);
    background-size: 40px 32px;
    background-color: #DBEDFF
}

.ct_us .scallop_inv {
    width: 100%;
    height: 32px;
    position: relative;
    overflow: hidden;
    background: #DBEDFF
}

.ct_us .scallop_inv::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 32px;
    background-size: 40px 32px;
    background-image: radial-gradient(circle at 50% 100%, #DBEDFF 16px, #fff 16px);
    background-color: #fff
}

.ct_us .top_band {
    background: linear-gradient(to bottom, #DBEDFF, transparent);
    padding: 48px 48px 24px;
    position: relative
}

.ct_us .top_band_grid {
    display: flex;
    flex-direction: row;
    gap: 48px;
    align-items: flex-end;
    max-width: 1500px
}

.ct_us .band_left {
    flex: 1 1 55%
}

.ct_us .band_right {
    flex: 1 1 40%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end
}

.ct_us .geo_anchor {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #11A665;
    border-radius: 0;
    transform: rotate(45deg);
    margin-bottom: 12px
}

.ct_us .pg_label {
    font-size: 14px;
    line-height: 1.75;
    color: #7D370B;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 12px
}

.ct_us .pg_h1 {
    font-size: 70px;
    line-height: 1.1;
    letter-spacing: -.03em;
    color: #111;
    margin: 0 0 24px
}

.ct_us .pg_h1 .acc_word {
    color: #11A665;
    font-weight: 900
}

.ct_us .pg_sub {
    font-size: 24px;
    line-height: 1.75;
    color: #333;
    max-width: 560px
}

.ct_us .stat_pill {
    background: #fff;
    border: 2px solid #DBEDFF;
    border-radius: 6px;
    padding: 12px 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    box-shadow: -1px 2px 5px 0 #dbedff0d -1px 5px 14px 0 #dbedff1c;
    min-width: 160px
}

.ct_us .stat_num {
    font-size: 36px;
    line-height: 1.1;
    font-weight: 800;
    color: #7D370B;
    letter-spacing: -.02em
}

.ct_us .stat_lbl {
    font-size: 14px;
    line-height: 1.75;
    color: #555
}

.ct_us .deco_bar {
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #11A665, #11a66500);
    border-radius: 0;
    margin-bottom: 24px
}

.ct_us .mid_strip {
    background: #fff;
    padding: 48px
}

.ct_us .mid_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    max-width: 1500px
}

.ct_us .form_col {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.ct_us .form_hd_wrap {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.ct_us .shape_sq {
    width: 8px;
    height: 8px;
    background: #7D370B;
    border-radius: 0;
    margin-bottom: 12px
}

.ct_us .form_h2 {
    font-size: 36px;
    line-height: 1.1;
    letter-spacing: -.02em;
    color: #111;
    margin: 0 0 4px
}

.ct_us .form_desc {
    font-size: 14px;
    line-height: 1.75;
    color: #444
}

.ct_us .frm {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.ct_us .row_two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px
}

.ct_us .fld_grp {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.ct_us .fld_lbl {
    font-size: 14px;
    line-height: 1.75;
    color: #222;
    font-weight: 600
}

.ct_us .fld_lbl .req {
    color: #7D370B;
    margin-left: 2px
}

.ct_us .fld_inp {
    border: 2px solid #ccc;
    border-radius: 4px;
    padding: 12px;
    font-size: 14px;
    line-height: 1.75;
    color: #111;
    background: #fff;
    transition: border-color .22s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .22s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    box-sizing: border-box
}

.ct_us .fld_inp:focus {
    outline: none;
    border-color: #11A665;
    box-shadow: -1px 5px 14px 0 #11a6651c
}

.ct_us .fld_inp:active {
    box-shadow: inset 0 2px 4px #11a66514
}

.ct_us .fld_ta {
    resize: vertical;
    min-height: 96px
}

.ct_us .fld_sel {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23333' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
    cursor: pointer
}

.ct_us .privacy_row {
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: flex-start;
    padding: 12px;
    background: #dbedff4d;
    border-radius: 4px;
    border: 1px solid #DBEDFF
}

.ct_us .privacy_chk {
    width: 18px;
    height: 18px;
    margin-top: 3px;
    accent-color: #11A665;
    cursor: pointer;
    flex-shrink: 0
}

.ct_us .privacy_txt {
    font-size: 14px;
    line-height: 1.75;
    color: #444
}

.ct_us .privacy_txt a {
    color: #7D370B;
    text-decoration: underline;
    font-weight: 600
}

.ct_us .privacy_txt a:hover {
    color: #11A665
}

.ct_us .btn_submit {
    background: #fff;
    border: 3px solid #11A665;
    border-radius: 4px;
    padding: 12px 48px;
    font-size: 14px;
    line-height: 1.75;
    font-weight: 700;
    color: #11A665;
    cursor: pointer;
    letter-spacing: .06em;
    text-transform: uppercase;
    transition: transform .2s cubic-bezier(0.4, 0, 0.2, 1), background .24s cubic-bezier(0.0, 0, 0.2, 1), color .24s cubic-bezier(0.0, 0, 0.2, 1);
    align-self: flex-start
}

.ct_us .btn_submit:hover {
    transform: scale(1.04);
    background: #11A665;
    color: #fff
}

.ct_us .btn_submit:focus {
    outline: 3px solid #7D370B;
    outline-offset: 3px
}

.ct_us .btn_submit:active {
    box-shadow: inset 0 2px 6px #11a6652e;
    transform: scale(1.01)
}

.ct_us .info_col {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.ct_us .info_h3 {
    font-size: 24px;
    line-height: 1.1;
    letter-spacing: -.01em;
    color: #111;
    margin: 0
}

.ct_us .info_card {
    background: #fff;
    border: 2px solid #DBEDFF;
    border-radius: 6px;
    padding: 24px;
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: flex-start;
    box-shadow: -1px 5px 14px 0 #dbedff1c;
    position: relative;
    transition: box-shadow .25s cubic-bezier(0.4, 0, 0.2, 1)
}

.ct_us .info_card:hover {
    box-shadow: -1px 8px 36px 0 #dbedff24
}

.ct_us .ic_dot {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 12px;
    height: 12px;
    background: #11A665;
    border-radius: 6px;
    border: 2px solid #fff
}

.ct_us .ic_wrap {
    width: 40px;
    height: 40px;
    background: #dbedff99;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform .22s cubic-bezier(0.4, 0, 0.2, 1)
}

.ct_us .info_card:hover .ic_wrap {
    transform: rotate(-6deg) translateY(-2px)
}

.ct_us .ic_svg {
    width: 20px;
    height: 20px
}

.ct_us .ic_body {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.ct_us .ic_lbl {
    font-size: 14px;
    line-height: 1.75;
    font-weight: 700;
    color: #7D370B;
    text-transform: uppercase;
    letter-spacing: .07em
}

.ct_us .ic_val {
    font-size: 14px;
    line-height: 1.75;
    color: #222
}

.ct_us .ic_val a {
    color: #111;
    text-decoration: none;
    font-weight: 600;
    transition: color .2s cubic-bezier(0.4, 0, 0.2, 1)
}

.ct_us .ic_val a:hover {
    color: #11A665
}

.ct_us .avail_block {
    background: linear-gradient(to bottom, #11a6650f, transparent);
    border: 2px solid #11a6652e;
    border-radius: 6px;
    padding: 24px
}

.ct_us .avail_h4 {
    font-size: 14px;
    line-height: 1.75;
    font-weight: 700;
    color: #11A665;
    text-transform: uppercase;
    letter-spacing: .07em;
    margin: 0 0 12px
}

.ct_us .avail_rows {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.ct_us .avail_row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    font-size: 14px;
    line-height: 1.75;
    color: #333
}

.ct_us .avail_day {
    font-weight: 600;
    color: #111
}

.ct_us .avail_hrs {
    color: #555
}

.ct_us .bot_strip {
    background: #DBEDFF;
    padding: 48px
}

.ct_us .bot_grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
    max-width: 1500px
}

.ct_us .bot_h2 {
    font-size: 36px;
    line-height: 1.1;
    letter-spacing: -.02em;
    color: #111;
    margin: 0 0 12px;
    grid-column: 1 / -1;
    text-align: center
}

.ct_us .bot_h2 .acc_word {
    color: #7D370B;
    font-weight: 900
}

.ct_us .bot_sub {
    font-size: 14px;
    line-height: 1.75;
    color: #444;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 24px;
    grid-column: 1 / -1
}

.ct_us .faq_item {
    background: #fff;
    border-radius: 6px;
    border: 2px solid #dbedffcc;
    padding: 24px;
    box-shadow: -1px 2px 5px 0 #dbedff0d;
    display: flex;
    flex-direction: column;
    gap: 12px
}

.ct_us .faq_q {
    font-size: 14px;
    line-height: 1.75;
    font-weight: 700;
    color: #111
}

.ct_us .faq_a {
    font-size: 14px;
    line-height: 1.75;
    color: #444
}

.ct_us .faq_tag {
    display: inline-block;
    font-size: 14px;
    background: #11a6651a;
    color: #11A665;
    border-radius: 4px;
    padding: 4px 12px;
    font-weight: 700;
    letter-spacing: .05em;
    align-self: flex-start
}

.ct_us .shape_tri {
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 10px solid #7D370B;
    margin-bottom: 12px
}

@media (max-width: 1024px) {
    .ct_us .top_band {
        padding: 48px 24px 24px
    }

    .ct_us .top_band_grid {
        flex-direction: column;
        gap: 24px;
        align-items: flex-start
    }

    .ct_us .pg_h1 {
        font-size: 36px
    }

    .ct_us .band_right {
        flex-direction: row;
        align-items: flex-start
    }

    .ct_us .mid_strip {
        padding: 48px 24px
    }

    .ct_us .mid_grid {
        grid-template-columns: 1fr;
        gap: 48px
    }

    .ct_us .bot_strip {
        padding: 48px 24px
    }

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

@media (max-width: 768px) {
    .ct_us .pg_h1 {
        font-size: 36px
    }

    .ct_us .pg_sub {
        font-size: 14px
    }

    .ct_us .band_right {
        flex-direction: column
    }

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

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

    .ct_us .form_h2 {
        font-size: 24px
    }

    .ct_us .bot_h2 {
        font-size: 24px
    }
}

@media (max-width: 480px) {
    .ct_us .top_band {
        padding: 24px 12px 12px
    }

    .ct_us .mid_strip {
        padding: 24px 12px
    }

    .ct_us .bot_strip {
        padding: 24px 12px
    }

    .ct_us .pg_h1 {
        font-size: 36px
    }

    .ct_us .btn_submit {
        width: 100%;
        text-align: center
    }
}

.tm_pg {
    max-width: 1500px;
    margin: 0 auto;
    overflow: hidden
}

.tm_pg ::selection {
    background: #1a3a2a;
    color: #DBEDFF;
    font-weight: 700
}

.tm_pg .lbl_up {
    font-size: 14px;
    line-height: 1.1;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #7D370B;
    font-weight: 700;
    display: block;
    margin-bottom: 12px
}

.tm_pg .shp {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #11A665;
    border-radius: 0;
    margin-right: 12px;
    vertical-align: middle;
    flex-shrink: 0
}

.tm_pg .shp_sq {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #7D370B;
    border-radius: 0;
    margin-right: 12px;
    vertical-align: middle;
    flex-shrink: 0
}

@keyframes diagReveal {
    0% {
        opacity: 0;
        transform: translate(-18px, 18px)
    }

    100% {
        opacity: 1;
        transform: translate(0, 0)
    }
}

.tm_pg .rev_a {
    animation: diagReveal .26s cubic-bezier(0.4, 0, 0.2, 1) both
}

.tm_pg .rev_b {
    animation: diagReveal .24s cubic-bezier(0.4, 0, 0.2, 1) .07s both
}

.tm_pg .rev_c {
    animation: diagReveal .22s cubic-bezier(0.4, 0, 0.2, 1) .14s both
}

.tm_pg .rev_d {
    animation: diagReveal .26s cubic-bezier(0.4, 0, 0.2, 1) .21s both
}

.tm_pg .frm_wrap {
    position: relative;
    padding: 48px;
    background: #fff;
    border-radius: 6px
}

.tm_pg .frm_wrap::before,
.tm_pg .frm_wrap::after {
    content: '';
    position: absolute;
    border-radius: 4px;
    pointer-events: none
}

.tm_pg .frm_wrap::before {
    top: 12px;
    left: 12px;
    right: 12px;
    bottom: 12px;
    border: 1px solid #11a6652e
}

.tm_pg .frm_wrap::after {
    top: 6px;
    left: 6px;
    right: 6px;
    bottom: 6px;
    border: 1px solid #dbedff99
}

.tm_pg .intro_sec {
    padding: 96px 48px;
    background: linear-gradient(to bottom, #DBEDFF, transparent);
    position: relative
}

.tm_pg .intro_sec .deco_line {
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, #11a66538, transparent);
    pointer-events: none
}

.tm_pg .intro_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
    max-width: 1500px;
    margin: 0 auto
}

.tm_pg .intro_txt h1 {
    font-size: 70px;
    line-height: 1.1;
    letter-spacing: -.03em;
    color: #1b2c1e;
    margin: 0 0 24px
}

.tm_pg .intro_txt h1 .acc {
    color: #11A665;
    font-weight: 900
}

.tm_pg .intro_txt .p_lg {
    font-size: 24px;
    line-height: 1.75;
    color: #2a3a2e;
    margin: 0 0 24px
}

.tm_pg .intro_txt .p_body {
    font-size: 14px;
    line-height: 1.75;
    color: #3a4a3e;
    margin: 0 0 24px
}

.tm_pg .stat_row {
    display: flex;
    flex-direction: row;
    gap: 24px;
    margin-top: 48px
}

.tm_pg .stat_item {
    flex: 1;
    border: 2px solid #11A665;
    border-radius: 6px;
    padding: 24px;
    background: #fff;
    box-shadow: -1px 2px 5px 0 #11a6650d;
    transition: box-shadow .26s cubic-bezier(0.4, 0, 0.2, 1), border-color .22s cubic-bezier(0.4, 0, 0.2, 1)
}

.tm_pg .stat_item:hover {
    box-shadow: -1px 8px 36px 0 #11a66524;
    border-color: #7D370B
}

.tm_pg .stat_num {
    font-size: 36px;
    line-height: 1.1;
    font-weight: 900;
    color: #11A665;
    display: block
}

.tm_pg .stat_lbl {
    font-size: 14px;
    line-height: 1.75;
    color: #3a4a3e;
    display: block;
    margin-top: 4px
}

.tm_pg .img_col {
    position: relative
}

.tm_pg .img_wrap {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: -1px 8px 36px 0 #11a66524;
    position: relative
}

.tm_pg .img_wrap img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
    filter: saturate(0.92);
    transition: filter .28s cubic-bezier(0.4, 0, 0.2, 1)
}

.tm_pg .img_wrap:hover img {
    filter: saturate(1.08)
}

.tm_pg .img_overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 60%, #1b2c1e61);
    border-radius: 10px;
    pointer-events: none
}

.tm_pg .img_tag {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: #fffffff0;
    border-radius: 6px;
    padding: 12px 24px;
    font-size: 14px;
    line-height: 1.1;
    color: #1b2c1e;
    font-weight: 700;
    box-shadow: -1px 5px 14px 0 #11a6651c;
    border: 2px solid #DBEDFF
}

.tm_pg .curve_div {
    height: 48px;
    background: linear-gradient(to bottom, #DBEDFF, transparent);
    position: relative;
    overflow: hidden
}

.tm_pg .curve_div svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.tm_pg .ppl_sec {
    padding: 96px 48px;
    background: #fff
}

.tm_pg .ppl_hd {
    max-width: 1500px;
    margin: 0 auto 48px;
    text-align: center
}

.tm_pg .ppl_hd h2 {
    font-size: 36px;
    line-height: 1.1;
    letter-spacing: -.02em;
    color: #1b2c1e;
    margin: 0 0 12px
}

.tm_pg .ppl_hd h2 .acc {
    color: #7D370B;
    font-weight: 900
}

.tm_pg .ppl_hd .p_body {
    font-size: 14px;
    line-height: 1.75;
    color: #3a4a3e;
    max-width: 560px;
    margin: 0 auto
}

.tm_pg .cards_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1500px;
    margin: 0 auto 48px
}

.tm_pg .p_card {
    border: 2px solid #DBEDFF;
    border-radius: 10px;
    padding: 24px;
    background: #fff;
    box-shadow: -1px 2px 5px 0 #dbedff0d;
    transition: box-shadow .24s cubic-bezier(0.4, 0, 0.2, 1), border-color .22s cubic-bezier(0.0, 0, 0.2, 1), transform .22s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative
}

.tm_pg .p_card:hover {
    box-shadow: -1px 8px 36px 0 #dbedff24;
    border-color: #11A665;
    transform: translateY(-4px)
}

.tm_pg .p_card:hover .p_icon svg {
    transform: rotate(6deg) translateY(-2px)
}

.tm_pg .p_icon {
    width: 48px;
    height: 48px;
    border-radius: 6px;
    background: #DBEDFF;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px
}

.tm_pg .p_icon svg {
    transition: transform .22s cubic-bezier(0.4, 0, 0.2, 1)
}

.tm_pg .p_card h4 {
    font-size: 14px;
    line-height: 1.1;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #7D370B;
    margin: 0 0 4px;
    font-weight: 700
}

.tm_pg .p_card h3 {
    font-size: 24px;
    line-height: 1.1;
    color: #1b2c1e;
    margin: 0 0 12px;
    font-weight: 800
}

.tm_pg .p_card .role_tag {
    display: inline-block;
    font-size: 14px;
    line-height: 1.1;
    color: #11A665;
    font-weight: 700;
    border: 2px solid #11A665;
    border-radius: 4px;
    padding: 4px 12px;
    margin-bottom: 12px;
    transition: background .22s cubic-bezier(0.4, 0, 0.2, 1), color .22s cubic-bezier(0.4, 0, 0.2, 1)
}

.tm_pg .p_card:hover .role_tag {
    background: #11A665;
    color: #fff
}

.tm_pg .p_card .p_bio {
    font-size: 14px;
    line-height: 1.75;
    color: #3a4a3e;
    margin: 0 0 12px
}

.tm_pg .p_card .spec_list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 4px
}

.tm_pg .p_card .spec_list li {
    font-size: 14px;
    line-height: 1.75;
    color: #2a3a2e;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 4px
}

.tm_pg .p_card .spec_list li .dot {
    width: 6px;
    height: 6px;
    border-radius: 0;
    background: #11A665;
    flex-shrink: 0;
    margin-top: 8px
}

.tm_pg .pros_cons {
    max-width: 1500px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    background: #DBEDFF;
    border-radius: 10px;
    padding: 48px;
    box-shadow: -1px 5px 14px 0 #dbedff1c
}

.tm_pg .pc_col h5 {
    font-size: 14px;
    line-height: 1.1;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin: 0 0 24px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px
}

.tm_pg .pc_col.pos h5 {
    color: #11A665
}

.tm_pg .pc_col.neg h5 {
    color: #7D370B
}

.tm_pg .pc_ind {
    width: 12px;
    height: 12px;
    border-radius: 0;
    flex-shrink: 0
}

.tm_pg .pc_col.pos .pc_ind {
    background: #11A665
}

.tm_pg .pc_col.neg .pc_ind {
    background: #7D370B
}

.tm_pg .pc_item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #11a66524
}

.tm_pg .pc_item:last-child {
    border-bottom: none
}

.tm_pg .pc_item .pc_mk {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px
}

.tm_pg .pc_col.pos .pc_mk {
    background: #11a66526
}

.tm_pg .pc_col.neg .pc_mk {
    background: #7d370b1f
}

.tm_pg .pc_item p {
    font-size: 14px;
    line-height: 1.75;
    color: #1b2c1e;
    margin: 0
}

.tm_pg .grad_band {
    height: 4px;
    background: linear-gradient(to right, #11A665, #DBEDFF, #7D370B);
    margin: 0
}

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

    .tm_pg .intro_txt h1 {
        font-size: 36px
    }

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

    .tm_pg .img_wrap img {
        height: 380px
    }
}

@media (max-width: 768px) {
    .tm_pg .intro_sec {
        padding: 48px 24px
    }

    .tm_pg .ppl_sec {
        padding: 48px 24px
    }

    .tm_pg .frm_wrap {
        padding: 24px
    }

    .tm_pg .stat_row {
        flex-direction: column;
        gap: 12px
    }

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

    .tm_pg .pros_cons {
        grid-template-columns: 1fr;
        padding: 24px
    }

    .tm_pg .intro_txt h1 {
        font-size: 36px
    }
}

@media (max-width: 480px) {
    .tm_pg .intro_sec {
        padding: 48px 12px
    }

    .tm_pg .ppl_sec {
        padding: 48px 12px
    }

    .tm_pg .pros_cons {
        padding: 12px
    }

    .tm_pg .frm_wrap {
        padding: 12px
    }

    .tm_pg .intro_txt h1 {
        font-size: 24px
    }

    .tm_pg .ppl_hd h2 {
        font-size: 24px
    }
}

.lnch {
    display: block;
    width: 100%;
    overflow-x: hidden
}

.lnch *,
.lnch ::before,
.lnch ::after {
    box-sizing: border-box
}

.lnch ::selection {
    background: #11A665;
    color: #fff;
    font-weight: 700
}

.lnch .grad_line {
    height: 2px;
    background: linear-gradient(90deg, transparent, #11A665, transparent);
    border: none;
    margin: 0
}

.lnch .t_blk {
    position: relative;
    padding: 96px 24px;
    background: linear-gradient(180deg, #DBEDFF 0%, #dbedff00 100%);
    background-size: 400% 400%;
    animation: gradshift 8s cubic-bezier(0.4, 0, 0.2, 1) infinite alternate;
    overflow: hidden
}

@keyframes gradshift {
    0% {
        background-position: 0 0
    }

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

.lnch .t_blk::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #11A665, #7D370B, #DBEDFF)
}

.lnch .t_blk_inner {
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 48px
}

.lnch .t_text {
    flex: 1 1 0
}

.lnch .eyebrow {
    display: inline-block;
    font-size: 14px;
    line-height: 1.75;
    letter-spacing: .08em;
    color: #7D370B;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 12px
}

.lnch .t_h1 {
    font-size: 70px;
    line-height: 1.1;
    letter-spacing: -.03em;
    color: #1b2a1e;
    margin: 0 0 12px
}

.lnch .t_h1 .acc {
    color: #11A665
}

.lnch .t_img_wrap {
    flex: 0 0 420px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: -1px 8px 36px 0 #11a66524;
    animation: fadeimg 1.1s cubic-bezier(0.0, 0, 0.2, 1) both
}

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

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

.lnch .t_img_wrap img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    filter: blur(0);
    transition: filter .22s cubic-bezier(0.4, 0, 0.2, 1)
}

.lnch .t_img_wrap img[data-loading] {
    filter: blur(8px)
}

.lnch .nums_sec {
    background: #fff;
    padding: 48px 24px
}

.lnch .nums_inner {
    max-width: 1500px;
    margin: 0 auto
}

.lnch .nums_label {
    font-size: 14px;
    line-height: 1.75;
    color: #7D370B;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    text-align: center;
    margin-bottom: 24px
}

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

.lnch .num_card {
    border: 2px solid #DBEDFF;
    border-radius: 10px;
    padding: 24px;
    text-align: center;
    box-shadow: -1px 2px 5px 0 #dbedff0d;
    transition: box-shadow .22s cubic-bezier(0.4, 0, 0.2, 1), border-color .22s cubic-bezier(0.4, 0, 0.2, 1)
}

.lnch .num_card:hover {
    box-shadow: -1px 5px 14px 0 #11a6651c;
    border-color: #11A665
}

.lnch .num_big {
    font-size: 70px;
    line-height: 1.1;
    font-weight: 800;
    color: #11A665;
    letter-spacing: -.03em;
    display: block
}

.lnch .num_desc {
    font-size: 14px;
    line-height: 1.75;
    color: #2c2c2c;
    margin-top: 4px
}

.lnch .slide_l {
    animation: slidel .7s cubic-bezier(0.0, 0, 0.2, 1) both
}

.lnch .slide_r {
    animation: slider .7s cubic-bezier(0.0, 0, 0.2, 1) both
}

@keyframes slidel {
    from {
        opacity: 0;
        transform: translateX(-48px)
    }

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

@keyframes slider {
    from {
        opacity: 0;
        transform: translateX(48px)
    }

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

.lnch .slide_l:nth-child(1) {
    animation-delay: .05s
}

.lnch .slide_r:nth-child(2) {
    animation-delay: .12s
}

.lnch .slide_l:nth-child(3) {
    animation-delay: .19s
}

.lnch .slide_r:nth-child(4) {
    animation-delay: .26s
}

.lnch .exp_sec {
    background: linear-gradient(180deg, #DBEDFF 0%, #dbedff00 100%);
    padding: 96px 24px
}

.lnch .exp_inner {
    max-width: 1500px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start
}

.lnch .exp_txt {
    padding: 0
}

.lnch .shape_anchor {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #11A665;
    border-radius: 0;
    margin-bottom: 12px;
    vertical-align: middle
}

.lnch .exp_h2 {
    font-size: 36px;
    line-height: 1.1;
    letter-spacing: -.02em;
    color: #1b2a1e;
    margin: 0 0 24px
}

.lnch .exp_h2 .acc {
    color: #7D370B;
    font-weight: 800
}

.lnch .exp_p_lead {
    font-size: 24px;
    line-height: 1.75;
    color: #1b2a1e;
    margin: 0 0 12px
}

.lnch .exp_p {
    font-size: 14px;
    line-height: 1.75;
    color: #2c2c2c;
    margin: 0 0 12px
}

.lnch .exp_quotes {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.lnch .q_card {
    border: 2px dashed #11A665;
    border-radius: 6px;
    padding: 24px;
    background: #fff;
    box-shadow: -1px 5px 14px 0 #11a6651c;
    transition: transform .25s cubic-bezier(0.4, 0, 0.2, 1)
}

.lnch .q_card:hover {
    transform: translateY(-4px)
}

.lnch .q_text {
    font-size: 14px;
    line-height: 1.75;
    color: #1b2a1e;
    margin: 0 0 12px;
    font-style: italic
}

.lnch .q_author {
    font-size: 14px;
    line-height: 1.1;
    font-weight: 700;
    color: #11A665
}

.lnch .q_role {
    font-size: 14px;
    line-height: 1.75;
    color: #555
}

.lnch .appr_sec {
    background: #1b2a1e;
    padding: 96px 24px
}

.lnch .appr_inner {
    max-width: 1500px;
    margin: 0 auto
}

.lnch .appr_top {
    text-align: center;
    margin-bottom: 48px
}

.lnch .appr_h2 {
    font-size: 36px;
    line-height: 1.1;
    letter-spacing: -.02em;
    color: #DBEDFF;
    margin: 0 0 12px
}

.lnch .appr_h2 .acc {
    color: #11A665;
    font-weight: 800
}

.lnch .appr_sub {
    font-size: 14px;
    line-height: 1.75;
    color: #a8c4b0;
    max-width: 600px;
    margin: 0 auto
}

.lnch .appr_steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px
}

.lnch .step_item {
    border: 2px solid #dbedff26;
    border-radius: 10px;
    padding: 24px;
    transition: border-color .28s cubic-bezier(0.4, 0, 0.2, 1), background .28s cubic-bezier(0.4, 0, 0.2, 1)
}

.lnch .step_item:hover {
    border-color: #11A665;
    background: #11a66512
}

.lnch .step_num {
    font-size: 36px;
    line-height: 1.1;
    font-weight: 800;
    color: #11A665;
    margin-bottom: 12px
}

.lnch .step_h {
    font-size: 24px;
    line-height: 1.1;
    color: #DBEDFF;
    margin: 0 0 12px
}

.lnch .step_p {
    font-size: 14px;
    line-height: 1.75;
    color: #a8c4b0;
    margin: 0
}

.lnch .avail_sec {
    background: #fff;
    padding: 48px 24px
}

.lnch .avail_inner {
    max-width: 1500px;
    margin: 0 auto
}

.lnch .avail_head {
    margin-bottom: 48px
}

.lnch .avail_h2 {
    font-size: 36px;
    line-height: 1.1;
    letter-spacing: -.02em;
    color: #1b2a1e;
    margin: 0 0 12px
}

.lnch .avail_h2 .acc {
    color: #11A665;
    font-weight: 800
}

.lnch .avail_p {
    font-size: 14px;
    line-height: 1.75;
    color: #2c2c2c;
    max-width: 560px
}

.lnch .avail_cols {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 48px;
    align-items: start
}

.lnch .avail_img_wrap {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: -1px 8px 36px 0 #11a66524
}

.lnch .avail_img_wrap img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block
}

.lnch .avail_list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px
}

.lnch .avail_list li {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    border-radius: 6px;
    border: 2px solid #DBEDFF;
    transition: border-color .22s cubic-bezier(0.4, 0, 0.2, 1)
}

.lnch .avail_list li:hover {
    border-color: #11A665
}

.lnch .av_dot {
    flex: 0 0 8px;
    width: 8px;
    height: 8px;
    background: #11A665;
    border-radius: 0;
    margin-top: 6px
}

.lnch .av_label {
    font-size: 14px;
    line-height: 1.75;
    color: #1b2a1e;
    font-weight: 700
}

.lnch .av_desc {
    font-size: 14px;
    line-height: 1.75;
    color: #555
}

.lnch .ppl_sec {
    background: linear-gradient(180deg, #DBEDFF 0%, #dbedff00 100%);
    padding: 96px 24px
}

.lnch .ppl_inner {
    max-width: 1500px;
    margin: 0 auto
}

.lnch .ppl_h2 {
    font-size: 36px;
    line-height: 1.1;
    letter-spacing: -.02em;
    color: #1b2a1e;
    margin: 0 0 12px;
    text-align: center
}

.lnch .ppl_h2 .acc {
    color: #7D370B;
    font-weight: 800
}

.lnch .ppl_sub {
    font-size: 14px;
    line-height: 1.75;
    color: #2c2c2c;
    text-align: center;
    margin: 0 auto 48px;
    max-width: 600px
}

.lnch .ppl_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px
}

.lnch .person_card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: -1px 5px 14px 0 #dbedff1c;
    transition: box-shadow .25s cubic-bezier(0.4, 0, 0.2, 1), transform .25s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid #DBEDFF
}

.lnch .person_card:hover {
    box-shadow: -1px 8px 36px 0 #11a66524;
    transform: translateY(-4px)
}

.lnch .person_img_wrap {
    overflow: hidden;
    height: 220px
}

.lnch .person_img_wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
    transition: transform .28s cubic-bezier(0.4, 0, 0.2, 1)
}

.lnch .person_card:hover .person_img_wrap img {
    transform: scale(1.04)
}

.lnch .person_info {
    padding: 24px
}

.lnch .person_name {
    font-size: 24px;
    line-height: 1.1;
    color: #1b2a1e;
    font-weight: 700;
    margin: 0 0 4px
}

.lnch .person_role {
    font-size: 14px;
    line-height: 1.75;
    color: #11A665;
    font-weight: 700;
    margin: 0 0 12px
}

.lnch .person_bio {
    font-size: 14px;
    line-height: 1.75;
    color: #2c2c2c;
    margin: 0
}

.lnch .rep_sec {
    background: #fff;
    padding: 96px 24px 48px
}

.lnch .rep_inner {
    max-width: 1500px;
    margin: 0 auto
}

.lnch .rep_h2 {
    font-size: 36px;
    line-height: 1.1;
    letter-spacing: -.02em;
    color: #1b2a1e;
    margin: 0 0 12px
}

.lnch .rep_h2 .acc {
    color: #11A665;
    font-weight: 800
}

.lnch .rep_layout {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 48px;
    align-items: start;
    margin-top: 48px
}

.lnch .rep_left {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.lnch .rep_badge {
    border: 2px solid #DBEDFF;
    border-radius: 10px;
    padding: 24px;
    background: linear-gradient(180deg, #DBEDFF 0%, #dbedff00 100%);
    box-shadow: -1px 2px 5px 0 #dbedff0d
}

.lnch .rep_badge_title {
    font-size: 24px;
    line-height: 1.1;
    font-weight: 800;
    color: #11A665;
    margin: 0 0 4px
}

.lnch .rep_badge_desc {
    font-size: 14px;
    line-height: 1.75;
    color: #2c2c2c;
    margin: 0
}

.lnch .rep_right {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.lnch .rep_p_lead {
    font-size: 24px;
    line-height: 1.75;
    color: #1b2a1e;
    margin: 0
}

.lnch .rep_p {
    font-size: 14px;
    line-height: 1.75;
    color: #2c2c2c;
    margin: 0
}

.lnch .rep_refs {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.lnch .rep_ref {
    border-left: 0;
    border-top: 2px solid #DBEDFF;
    padding: 12px 0 0
}

.lnch .rep_ref_name {
    font-size: 14px;
    line-height: 1.1;
    font-weight: 700;
    color: #7D370B
}

.lnch .rep_ref_ctx {
    font-size: 14px;
    line-height: 1.75;
    color: #2c2c2c
}

.lnch .slide_head_wrap {
    position: relative;
    display: inline-block;
    overflow: hidden;
    height: 1.1em;
    vertical-align: bottom
}

.lnch .slide_head_wrap .sh_main,
.lnch .slide_head_wrap .sh_alt {
    display: block;
    transition: transform .24s cubic-bezier(0.4, 0, 0.2, 1), opacity .24s cubic-bezier(0.4, 0, 0.2, 1)
}

.lnch .slide_head_wrap .sh_alt {
    position: absolute;
    top: 0;
    left: 0;
    transform: translateY(100%);
    opacity: 0;
    color: #7D370B;
    white-space: nowrap
}

.lnch .slide_head_wrap:hover .sh_main {
    transform: translateY(-100%);
    opacity: 0
}

.lnch .slide_head_wrap:hover .sh_alt {
    transform: translateY(0);
    opacity: 1
}

@media (max-width: 1024px) {
    .lnch .t_blk_inner {
        flex-direction: column;
        gap: 24px
    }

    .lnch .t_img_wrap {
        flex: 0 0 auto;
        width: 100%
    }

    .lnch .nums_grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .lnch .exp_inner {
        grid-template-columns: 1fr
    }

    .lnch .appr_steps {
        grid-template-columns: 1fr 1fr
    }

    .lnch .avail_cols {
        grid-template-columns: 1fr
    }

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

    .lnch .rep_layout {
        grid-template-columns: 1fr
    }

    .lnch .t_h1 {
        font-size: 36px
    }
}

@media (max-width: 768px) {
    .lnch .nums_grid {
        grid-template-columns: 1fr 1fr
    }

    .lnch .appr_steps {
        grid-template-columns: 1fr
    }

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

    .lnch .t_h1 {
        font-size: 36px
    }

    .lnch .num_big {
        font-size: 36px
    }
}

@media (max-width: 480px) {
    .lnch .nums_grid {
        grid-template-columns: 1fr
    }

    .lnch .t_blk {
        padding: 48px 12px
    }

    .lnch .exp_sec,
    .lnch .appr_sec,
    .lnch .ppl_sec,
    .lnch .rep_sec {
        padding: 48px 12px
    }

    .lnch .avail_sec {
        padding: 48px 12px
    }
}

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

.abt .pg_wrap {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 24px
}

.abt ::selection {
    background: #1a3a2a;
    color: #DBEDFF;
    font-weight: 700
}

.abt .accent_word {
    color: #11A665;
    font-weight: 700
}

.abt .geo_dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 0;
    background: #11A665;
    margin-right: 12px;
    vertical-align: middle
}

.abt .geo_sq {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 0;
    background: #7D370B;
    margin-right: 12px;
    vertical-align: middle
}

.abt .s1 {
    position: relative;
    padding: 96px 24px 48px;
    background: #DBEDFF;
    overflow: hidden
}

.abt .s1::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 0% 0%, #11a66514 0%, transparent 60%), radial-gradient(ellipse at 100% 100%, #7d370b0f 0%, transparent 55%);
    pointer-events: none
}

.abt .s1_dots {
    position: absolute;
    top: 24px;
    right: 48px;
    display: flex;
    flex-direction: row;
    gap: 12px;
    pointer-events: none
}

.abt .s1_dots span {
    display: block;
    border-radius: 0;
    background: #11a6652e
}

.abt .s1_dots .d1 {
    width: 18px;
    height: 18px
}

.abt .s1_dots .d2 {
    width: 10px;
    height: 10px;
    margin-top: 4px
}

.abt .s1_dots .d3 {
    width: 6px;
    height: 6px;
    margin-top: 8px
}

.abt .s1_inner {
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    gap: 48px;
    align-items: flex-end
}

.abt .s1_text {
    flex: 1 1 55%
}

.abt .s1_tag {
    display: inline-block;
    font-size: 14px;
    line-height: 1.75;
    color: #7D370B;
    border: 2px solid #7D370B;
    border-radius: 4px;
    padding: 4px 12px;
    margin-bottom: 24px;
    letter-spacing: .06em;
    font-weight: 600
}

.abt .s1_h1 {
    font-size: 70px;
    line-height: 1.1;
    letter-spacing: -.03em;
    color: #0d2b1a;
    margin: 0 0 24px
}

.abt .s1_h1 .ul_kw {
    text-decoration: underline;
    text-decoration-color: #11A665;
    text-decoration-thickness: 4px;
    text-underline-offset: 6px
}

.abt .s1_lead {
    font-size: 24px;
    line-height: 1.75;
    color: #1a3a2a;
    margin: 0 0 24px;
    max-width: 560px
}

.abt .s1_sub {
    font-size: 14px;
    line-height: 1.75;
    color: #2d4a38;
    margin: 0
}

.abt .s1_img_col {
    flex: 1 1 40%;
    position: relative
}

.abt .s1_img_wrap {
    border-radius: 6px;
    overflow: hidden;
    box-shadow: -1px 8px 36px 0 #dbedff24;
    position: relative
}

.abt .s1_img_wrap img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
    filter: contrast(1.04) saturate(1.06);
    transition: transform .26s cubic-bezier(0.4, 0, 0.2, 1)
}

.abt .s1_img_wrap:hover img {
    transform: scale(1.025)
}

.abt .s1_metric {
    position: absolute;
    bottom: -24px;
    left: -24px;
    background: #fff;
    border: 2px solid #11A665;
    border-radius: 6px;
    padding: 12px 24px;
    box-shadow: -1px 5px 14px 0 #11a6651c;
    display: flex;
    flex-direction: column;
    gap: 4px
}

.abt .s1_metric .m_num {
    font-size: 36px;
    line-height: 1.1;
    color: #0d2b1a;
    font-weight: 700;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px
}

.abt .s1_metric .m_arrow {
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 12px solid #11A665;
    vertical-align: middle
}

.abt .s1_metric .m_label {
    font-size: 14px;
    line-height: 1.75;
    color: #2d4a38
}

.abt .s1_divider {
    width: 100%;
    height: 48px;
    position: relative;
    background: #fff;
    margin-top: 48px
}

.abt .s1_divider svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 48px
}

.abt .s2 {
    padding: 96px 24px 48px;
    background: #fff;
    position: relative
}

.abt .s2_inner {
    max-width: 1500px;
    margin: 0 auto
}

.abt .s2_top {
    display: flex;
    flex-direction: row;
    gap: 48px;
    align-items: flex-start;
    margin-bottom: 48px
}

.abt .s2_left {
    flex: 1 1 50%;
    text-align: left
}

.abt .s2_right {
    flex: 1 1 50%
}

.abt .s2_label {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 12px
}

.abt .s2_label span {
    font-size: 14px;
    line-height: 1.75;
    color: #7D370B;
    font-weight: 600;
    letter-spacing: .05em
}

.abt .s2_h2 {
    font-size: 36px;
    line-height: 1.1;
    letter-spacing: -.02em;
    color: #0d2b1a;
    margin: 0 0 24px
}

.abt .s2_intro {
    font-size: 24px;
    line-height: 1.75;
    color: #1a3a2a;
    margin: 0 0 24px
}

.abt .s2_body {
    font-size: 14px;
    line-height: 1.75;
    color: #2d4a38;
    margin: 0 0 24px
}

.abt .s2_body:last-child {
    margin-bottom: 0
}

.abt .s2_img_wrap {
    border-radius: 6px;
    overflow: hidden;
    box-shadow: -1px 5px 14px 0 #dbedff1c
}

.abt .s2_img_wrap img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    display: block
}

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

.abt .val_card {
    background: #DBEDFF;
    border-radius: 6px;
    padding: 24px;
    border: 2px solid transparent;
    box-shadow: -1px 2px 5px 0 #dbedff0d;
    transition: border-color .22s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .25s cubic-bezier(0.0, 0, 0.2, 1)
}

.abt .val_card:hover {
    border-color: #11A665;
    box-shadow: -1px 5px 14px 0 #11a6651c
}

.abt .val_icon {
    width: 36px;
    height: 36px;
    margin-bottom: 12px
}

.abt .val_h {
    font-size: 14px;
    line-height: 1.75;
    color: #0d2b1a;
    font-weight: 700;
    margin: 0 0 4px
}

.abt .val_p {
    font-size: 14px;
    line-height: 1.75;
    color: #2d4a38;
    margin: 0
}

.abt .s2_divider {
    width: 100%;
    height: 48px;
    position: relative;
    background: #DBEDFF;
    margin-top: 48px
}

.abt .s2_divider svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 48px
}

.abt .s3 {
    padding: 96px 24px;
    background: #DBEDFF;
    position: relative
}

.abt .s3::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, #dbedff00 60%, #11a66512 100%);
    pointer-events: none
}

.abt .s3_dots {
    position: absolute;
    bottom: 48px;
    left: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    pointer-events: none
}

.abt .s3_dots span {
    display: block;
    border-radius: 0;
    background: #7d370b26
}

.abt .s3_dots .e1 {
    width: 20px;
    height: 20px
}

.abt .s3_dots .e2 {
    width: 12px;
    height: 12px
}

.abt .s3_dots .e3 {
    width: 7px;
    height: 7px
}

.abt .s3_inner {
    max-width: 1500px;
    margin: 0 auto;
    position: relative;
    z-index: 1
}

.abt .s3_head {
    text-align: center;
    margin-bottom: 48px
}

.abt .s3_label {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 12px
}

.abt .s3_label span {
    font-size: 14px;
    line-height: 1.75;
    color: #7D370B;
    font-weight: 600;
    letter-spacing: .05em
}

.abt .s3_h2 {
    font-size: 36px;
    line-height: 1.1;
    letter-spacing: -.02em;
    color: #0d2b1a;
    margin: 0 0 12px
}

.abt .s3_sub {
    font-size: 14px;
    line-height: 1.75;
    color: #2d4a38;
    max-width: 600px;
    margin: 0 auto
}

.abt .team_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px
}

.abt .team_card {
    background: #fff;
    border-radius: 6px;
    padding: 24px;
    box-shadow: -1px 2px 5px 0 #dbedff0d;
    border: 2px solid transparent;
    transition: border-color .24s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .22s cubic-bezier(0.0, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    gap: 12px
}

.abt .team_card:hover {
    border-color: #11A665;
    box-shadow: -1px 8px 36px 0 #11a66524
}

.abt .team_avatar {
    width: 56px;
    height: 56px;
    border-radius: 4px;
    background: linear-gradient(to bottom, #DBEDFF, #b8d8f8);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.abt .team_avatar svg {
    width: 28px;
    height: 28px
}

.abt .team_name {
    font-size: 14px;
    line-height: 1.75;
    color: #0d2b1a;
    font-weight: 700;
    margin: 0
}

.abt .team_role {
    font-size: 14px;
    line-height: 1.75;
    color: #11A665;
    font-weight: 600;
    margin: 0
}

.abt .team_bio {
    font-size: 14px;
    line-height: 1.75;
    color: #2d4a38;
    margin: 0
}

.abt .contact_strip {
    background: #0d2b1a;
    border-radius: 6px;
    padding: 48px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    box-shadow: -1px 8px 36px 0 #11a66524
}

.abt .cs_left {
    flex: 1 1 auto
}

.abt .cs_h {
    font-size: 24px;
    line-height: 1.1;
    color: #DBEDFF;
    margin: 0 0 12px;
    font-weight: 700
}

.abt .cs_items {
    display: flex;
    flex-direction: row;
    gap: 24px;
    flex-wrap: wrap
}

.abt .cs_item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px
}

.abt .cs_item svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px
}

.abt .cs_item a {
    font-size: 14px;
    line-height: 1.75;
    color: #DBEDFF;
    text-decoration: none;
    transition: color .2s cubic-bezier(0.4, 0, 0.2, 1)
}

.abt .cs_item a:hover {
    color: #11A665
}

.abt .cs_item span {
    font-size: 14px;
    line-height: 1.75;
    color: #DBEDFF
}

.abt .cs_btn {
    flex-shrink: 0;
    display: inline-block;
    font-size: 14px;
    line-height: 1.75;
    color: #0d2b1a;
    background: #11A665;
    border: 3px solid #11A665;
    border-radius: 4px;
    padding: 12px 24px;
    font-weight: 700;
    text-decoration: none;
    transition: transform .22s cubic-bezier(0.4, 0, 0.2, 1), background .2s cubic-bezier(0.4, 0, 0.2, 1), color .2s cubic-bezier(0.4, 0, 0.2, 1)
}

.abt .cs_btn:hover {
    transform: scale(1.04);
    background: transparent;
    color: #11A665
}

@keyframes abt_reveal {
    from {
        opacity: 0;
        transform: scale(0.97)
    }

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

.abt .s1_text,
.abt .s1_img_col,
.abt .s2_left,
.abt .s2_right,
.abt .s3_head {
    animation: abt_reveal .26s cubic-bezier(0.4, 0, 0.2, 1) both
}

.abt .s1_img_col {
    animation-delay: .08s
}

.abt .s2_right {
    animation-delay: .06s
}

.abt .s3_head {
    animation-delay: .04s
}

@media (max-width: 1024px) {
    .abt .s1_h1 {
        font-size: 36px
    }

    .abt .s1_inner {
        flex-direction: column
    }

    .abt .s1_img_col {
        width: 100%
    }

    .abt .s1_metric {
        bottom: -12px;
        left: 12px
    }

    .abt .s2_top {
        flex-direction: column
    }

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

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

    .abt .contact_strip {
        flex-direction: column;
        align-items: flex-start
    }
}

@media (max-width: 768px) {
    .abt .s1 {
        padding: 48px 12px 24px
    }

    .abt .s2 {
        padding: 48px 12px 24px
    }

    .abt .s3 {
        padding: 48px 12px
    }

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

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

    .abt .contact_strip {
        padding: 24px
    }

    .abt .cs_items {
        flex-direction: column;
        gap: 12px
    }
}

@media (max-width: 480px) {
    .abt .s1_h1 {
        font-size: 24px
    }

    .abt .s2_h2,
    .abt .s3_h2 {
        font-size: 24px
    }

    .abt .s1_lead,
    .abt .s2_intro {
        font-size: 14px
    }

    .abt .s1_metric .m_num {
        font-size: 24px
    }
}

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

.succ_page .succ_wrap {
    max-width: 600px;
    width: 100%;
    text-align: center;
    padding: 48px;
    border: 2px solid #DBEDFF;
    border-radius: 10px;
    box-shadow: -1px 8px 36px 0 #dbedff24
}

.succ_page .succ_icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center
}

.succ_page .succ_icon svg {
    width: 64px;
    height: 64px
}

.succ_page .succ_title {
    font-size: 36px;
    line-height: 1.1;
    letter-spacing: -.02em;
    color: #1b1b1b;
    margin: 0 0 12px
}

.succ_page .succ_title span {
    color: #11A665;
    font-weight: 800
}

.succ_page .succ_txt {
    font-size: 14px;
    line-height: 1.75;
    color: #3a3a3a;
    margin: 0 0 48px
}

.succ_page .succ_divider {
    width: 48px;
    height: 3px;
    background: #DBEDFF;
    border-radius: 4px;
    margin: 0 auto 48px
}

.succ_page .succ_info {
    background: #f4faff;
    border-radius: 6px;
    padding: 24px;
    margin-bottom: 48px;
    text-align: left
}

.succ_page .succ_info_label {
    font-size: 14px;
    line-height: 1.1;
    font-weight: 700;
    color: #7D370B;
    margin: 0 0 12px;
    letter-spacing: .04em;
    text-transform: uppercase
}

.succ_page .succ_info_txt {
    font-size: 14px;
    line-height: 1.75;
    color: #3a3a3a;
    margin: 0
}

.succ_page .succ_btn {
    display: inline-block;
    font-size: 14px;
    line-height: 1.1;
    font-weight: 700;
    color: #11A665;
    background: transparent;
    border: 2px solid #11A665;
    border-radius: 6px;
    padding: 12px 48px;
    text-decoration: none;
    cursor: pointer;
    transition: background .22s cubic-bezier(0.4, 0, 0.2, 1), color .22s cubic-bezier(0.4, 0, 0.2, 1), transform .2s cubic-bezier(0.0, 0, 0.2, 1)
}

.succ_page .succ_btn:hover {
    background: #11A665;
    color: #fff;
    transform: scale(1.04)
}

.succ_page .succ_btn:focus {
    outline: 2px solid #7D370B;
    outline-offset: 3px
}

.succ_page .succ_btn:active {
    box-shadow: inset -1px 2px 5px 0 #11a6652e;
    transform: scale(1.00)
}

@media (max-width: 480px) {
    .succ_page {
        padding: 48px 12px
    }

    .succ_page .succ_wrap {
        padding: 24px
    }

    .succ_page .succ_title {
        font-size: 24px
    }
}