* {
    box-sizing: border-box
}

body {
    margin: 0;
    overflow-x: hidden;
    min-height: 100vh
}

.utbar {
    background: #546670;
    padding: 8px 40px
}

.utbar-inner {
    max-width: 1024px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px
}

.utbar-contact {
    display: flex;
    align-items: center;
    gap: 24px
}

.utbar-link {
    font-family: 'Public Sans', sans-serif;
    font-size: 14px;
    line-height: 1.45;
    letter-spacing: .01em;
    color: #EBE7DB;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color .5s cubic-bezier(0.22, 1, 0.36, 1)
}

.utbar-link:hover,
.utbar-link:focus {
    color: #fff
}

.utbar-link:focus {
    outline: 2px solid #EBE7DB;
    outline-offset: 2px;
    border-radius: 4px
}

.utbar-link i {
    font-size: 14px
}

.utbar-tagline {
    font-family: 'Public Sans', sans-serif;
    font-size: 14px;
    line-height: 1.45;
    letter-spacing: .02em;
    color: #8AA5A7
}

.brandrow {
    background: #fff;
    border-bottom: 1px solid #EBE7DB;
    padding: 24px 40px
}

.brandrow-inner {
    max-width: 1024px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center
}

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

.logobox {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: #EBE7DB;
    border: 1px solid #8AA5A7;
    box-shadow: 0 3px 6px 0 #54667014;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 4px
}

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

.brandname {
    font-family: 'Red Hat Display', sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: .01em;
    color: #546670
}

.brandname span {
    display: block;
    font-size: 14px;
    font-weight: 400;
    color: #8AA5A7;
    letter-spacing: .02em;
    line-height: 1.45
}

.navrow {
    background: #EBE7DB;
    border-bottom: 2px solid #8AA5A7;
    padding: 0 40px
}

.navrow-inner {
    max-width: 1024px;
    margin: 0 auto;
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0
}

.navitem {
    font-family: 'Public Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.45;
    letter-spacing: .02em;
    color: #546670;
    text-decoration: none;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    transition: color .45s cubic-bezier(0.22, 1, 0.36, 1), background-color .45s cubic-bezier(0.22, 1, 0.36, 1);
    border-radius: 0;
    min-height: 44px;
    white-space: nowrap
}

.navitem::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: #546670;
    transform: scaleX(0);
    transition: transform .5s cubic-bezier(0.22, 1, 0.36, 1);
    transform-origin: left center
}

.navitem:hover,
.navitem:focus {
    color: #2c3a40;
    background: #54667014
}

.navitem:hover::after,
.navitem:focus::after {
    transform: scaleX(1)
}

.navitem:focus {
    outline: 2px solid #546670;
    outline-offset: -2px
}

.navitem i {
    font-size: 14px;
    flex-shrink: 0
}

.sitefooter {
    background: #546670;
    padding: 80px 40px 40px
}

.sitefooter-inner {
    max-width: 1024px;
    margin: 0 auto
}

.sitefooter-top {
    display: flex;
    align-items: flex-start;
    gap: 80px;
    padding-bottom: 40px;
    border-bottom: 1px solid #8aa5a74d
}

.sitefooter-brand {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px
}

.footerlogobox {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: #EBE7DB;
    border: 1px solid #8AA5A7;
    box-shadow: 0 3px 6px 0 #54667014;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    flex-shrink: 0
}

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

.footerbrandname {
    font-family: 'Red Hat Display', sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: .01em;
    color: #EBE7DB
}

.footerdesc {
    font-family: 'Public Sans', sans-serif;
    font-size: 14px;
    line-height: 1.65;
    letter-spacing: .01em;
    color: #8AA5A7;
    max-width: 260px
}

.sitefooter-cols {
    flex: 1;
    display: flex;
    gap: 40px;
    flex-wrap: wrap
}

.footercol {
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-width: 160px
}

.footercol-heading {
    font-family: 'Red Hat Display', sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: .02em;
    color: #EBE7DB;
    text-transform: uppercase
}

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

.footernavlink {
    font-family: 'Public Sans', sans-serif;
    font-size: 14px;
    line-height: 1.65;
    letter-spacing: .01em;
    color: #8AA5A7;
    text-decoration: none;
    transition: color .5s cubic-bezier(0.22, 1, 0.36, 1)
}

.footernavlink:hover,
.footernavlink:focus {
    color: #EBE7DB
}

.footernavlink:focus {
    outline: 2px solid #8AA5A7;
    outline-offset: 2px;
    border-radius: 4px
}

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

.footercontactitem {
    font-family: 'Public Sans', sans-serif;
    font-size: 14px;
    line-height: 1.65;
    letter-spacing: .01em;
    color: #8AA5A7;
    text-decoration: none;
    transition: color .5s cubic-bezier(0.22, 1, 0.36, 1);
    display: flex;
    align-items: flex-start;
    gap: 8px
}

.footercontactitem:hover,
.footercontactitem:focus {
    color: #EBE7DB
}

.footercontactitem:focus {
    outline: 2px solid #8AA5A7;
    outline-offset: 2px;
    border-radius: 4px
}

.footercontactitem i {
    font-size: 14px;
    flex-shrink: 0;
    margin-top: 4px
}

.footeraddress {
    font-family: 'Public Sans', sans-serif;
    font-size: 14px;
    line-height: 1.65;
    letter-spacing: .01em;
    color: #8AA5A7;
    display: flex;
    align-items: flex-start;
    gap: 8px
}

.footeraddress i {
    font-size: 14px;
    flex-shrink: 0;
    margin-top: 4px
}

.sitefooter-bottom {
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px
}

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

.footerlegallink {
    font-family: 'Public Sans', sans-serif;
    font-size: 14px;
    line-height: 1.45;
    letter-spacing: .01em;
    color: #8AA5A7;
    text-decoration: none;
    transition: color .45s ease-in-out
}

.footerlegallink:hover,
.footerlegallink:focus {
    color: #EBE7DB
}

.footerlegallink:focus {
    outline: 2px solid #8AA5A7;
    outline-offset: 2px;
    border-radius: 4px
}

.footercopy {
    font-family: 'Public Sans', sans-serif;
    font-size: 14px;
    line-height: 1.45;
    letter-spacing: .01em;
    color: #8AA5A7
}

@media (max-width: 768px) {
    .utbar {
        padding: 8px 16px
    }

    .utbar-tagline {
        display: none
    }

    .brandrow {
        padding: 16px
    }

    .navrow {
        padding: 0 16px
    }

    .navitem {
        padding: 16px;
        font-size: 14px
    }

    .sitefooter {
        padding: 40px 16px 24px
    }

    .sitefooter-top {
        flex-direction: column;
        gap: 40px
    }

    .sitefooter-bottom {
        flex-direction: column;
        align-items: flex-start
    }
}

@media (max-width: 480px) {
    .utbar-contact {
        gap: 16px
    }

    .navrow-inner {
        justify-content: flex-start
    }

    .navitem {
        padding: 12px 16px
    }

    .sitefooter-cols {
        flex-direction: column
    }
}

.legal-section {
    max-width: 1024px;
    margin: 0 auto;
    padding: 80px 40px;
    color: #2c3a3f
}

.legal-section h1 {
    font-size: 50px;
    line-height: 1.2;
    letter-spacing: .01em;
    color: #546670;
    margin-bottom: 40px;
    margin-top: 0;
    padding-bottom: 24px;
    border-bottom: 2px solid #EBE7DB
}

.legal-section h2 {
    font-size: 20px;
    line-height: 1.45;
    letter-spacing: .02em;
    color: #546670;
    margin-top: 80px;
    margin-bottom: 24px;
    text-transform: uppercase
}

.legal-section h3 {
    font-size: 20px;
    line-height: 1.45;
    letter-spacing: .01em;
    color: #3d5259;
    margin-top: 40px;
    margin-bottom: 16px
}

.legal-section h4 {
    font-size: 14px;
    line-height: 1.45;
    letter-spacing: .02em;
    color: #546670;
    text-transform: uppercase;
    margin-top: 40px;
    margin-bottom: 16px
}

.legal-section h5 {
    font-size: 14px;
    line-height: 1.45;
    letter-spacing: .02em;
    color: #8AA5A7;
    margin-top: 24px;
    margin-bottom: 8px
}

.legal-section h6 {
    font-size: 14px;
    line-height: 1.65;
    letter-spacing: .02em;
    color: #8AA5A7;
    margin-top: 16px;
    margin-bottom: 8px
}

.legal-section div {
    font-size: 14px;
    line-height: 1.65;
    letter-spacing: .01em;
    color: #2c3a3f;
    margin-bottom: 16px;
    padding: 24px;
    background-color: #f5f3ee;
    border-radius: 8px;
    box-shadow: inset 0 2px 6px 0 #54667014
}

.legal-section p {
    font-size: 14px;
    line-height: 1.65;
    letter-spacing: .01em;
    color: #2c3a3f;
    margin-bottom: 16px
}

.legal-section strong,
.legal-section b {
    color: #546670;
    font-weight: 700;
    letter-spacing: .01em
}

.legal-section em,
.legal-section i {
    color: #546670;
    font-style: italic
}

.legal-section a {
    color: #546670;
    text-decoration: underline;
    text-decoration-color: #8AA5A7;
    text-underline-offset: 3px;
    transition: color .5s cubic-bezier(0.22, 1, 0.36, 1), text-decoration-color .6s ease-in-out
}

.legal-section a:hover {
    color: #8AA5A7;
    text-decoration-color: #546670
}

.legal-section ul,
.legal-section ol {
    font-size: 14px;
    line-height: 1.65;
    letter-spacing: .01em;
    color: #2c3a3f;
    padding-left: 24px;
    margin-bottom: 24px
}

.legal-section li {
    margin-bottom: 8px
}

.legal-section li::marker {
    color: #8AA5A7
}

@media (max-width: 768px) {
    .legal-section {
        padding: 40px 24px
    }

    .legal-section h1 {
        font-size: 50px
    }

    .legal-section h2 {
        margin-top: 40px
    }
}

@media (max-width: 480px) {
    .legal-section {
        padding: 24px 16px
    }

    .legal-section h1 {
        font-size: 20px;
        line-height: 1.45
    }

    .legal-section div {
        padding: 16px
    }
}

.ebd {
    background: #fff;
    color: #1a2a2e;
    max-width: 100%;
    overflow-x: hidden
}

.ebd .ebdContainer {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 24px
}

.ebd .ebdHero {
    position: relative;
    padding: 80px 24px;
    text-align: center;
    background: #546670;
    overflow: hidden
}

.ebd .ebdHeroImg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .18
}

.ebd .ebdHeroInner {
    position: relative;
    max-width: 1024px;
    margin: 0 auto
}

.ebd .ebdLabel {
    display: inline-block;
    font-size: 14px;
    line-height: 1.45;
    letter-spacing: .02em;
    color: #EBE7DB;
    background: #5466708c;
    border: 1px solid #ebe7db4d;
    border-radius: 4px;
    padding: 4px 16px;
    margin-bottom: 16px
}

.ebd .ebdHeroTitle {
    font-size: 50px;
    line-height: 1.2;
    letter-spacing: .01em;
    font-weight: 800;
    color: #fff;
    margin: 0 0 16px
}

.ebd .ebdHeroDesc {
    font-size: 20px;
    line-height: 1.65;
    color: #EBE7DB;
    max-width: 640px;
    margin: 0 auto 40px
}

.ebd .ebdMetaRow {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px
}

.ebd .ebdMetaItem {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    line-height: 1.45;
    color: #EBE7DB;
    letter-spacing: .01em
}

.ebd .ebdMetaIcon {
    width: 16px;
    height: 16px;
    flex-shrink: 0
}

.ebd .ebdMetaDot {
    width: 4px;
    height: 4px;
    border-radius: 44px;
    background: #ebe7db66;
    display: inline-block
}

.ebd .ebdHeroActions {
    display: flex;
    flex-direction: row;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap
}

.ebd .ebdBtnPrimary {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    line-height: 1.45;
    letter-spacing: .01em;
    font-weight: 700;
    color: #fff;
    background: #546670;
    border: 2px solid #546670;
    border-radius: 8px;
    padding: 16px 40px;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: color .5s cubic-bezier(0.22, 1, 0.36, 1), border-color .5s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 7px 14px 0 #54667014
}

.ebd .ebdBtnPrimary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to left, #8AA5A7, transparent);
    opacity: 0;
    transition: opacity .55s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none
}

.ebd .ebdBtnPrimary:hover::before {
    opacity: 1
}

.ebd .ebdBtnPrimary:hover {
    border-color: #8AA5A7
}

.ebd .ebdBtnPrimary:focus {
    outline: 3px solid #EBE7DB;
    outline-offset: 2px
}

.ebd .ebdBtnSecondary {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    line-height: 1.45;
    letter-spacing: .01em;
    font-weight: 600;
    color: #546670;
    background: #fff;
    border: 2px solid #8AA5A7;
    border-radius: 8px;
    padding: 16px 40px;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: color .45s ease-in-out, border-color .45s ease-in-out;
    box-shadow: 0 3px 6px 0 #8aa5a714
}

.ebd .ebdBtnSecondary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to left, #EBE7DB, transparent);
    opacity: 0;
    transition: opacity .5s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none
}

.ebd .ebdBtnSecondary:hover::before {
    opacity: 1
}

.ebd .ebdBtnSecondary:hover {
    border-color: #546670
}

.ebd .ebdBtnSecondary:focus {
    outline: 3px solid #546670;
    outline-offset: 2px
}

.ebd .ebdDivider {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 0
}

.ebd .ebdDividerLine {
    width: 80px;
    height: 2px;
    background: linear-gradient(to left, #8AA5A7, transparent);
    border-radius: 28px
}

.ebd .ebdDividerDots {
    display: flex;
    flex-direction: row;
    gap: 4px;
    align-items: center
}

.ebd .ebdDividerDot {
    width: 5px;
    height: 5px;
    border-radius: 44px;
    background: #8AA5A7
}

.ebd .ebdDividerDot.sm {
    width: 3px;
    height: 3px;
    background: #EBE7DB
}

.ebd .ebdBody {
    padding: 80px 24px;
    background: #fff
}

.ebd .ebdBodyGrid {
    max-width: 1024px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
    align-items: start
}

.ebd .ebdDescCol {
    min-width: 0
}

.ebd .ebdDescLabel {
    font-size: 14px;
    line-height: 1.45;
    letter-spacing: .02em;
    color: #8AA5A7;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase
}

.ebd .ebdDescText {
    font-size: 20px;
    line-height: 1.65;
    color: #2c3e44;
    letter-spacing: .01em
}

.ebd .ebdDescText p {
    margin: 0 0 16px
}

.ebd .ebdDescText h2 {
    font-size: 20px;
    line-height: 1.2;
    font-weight: 700;
    color: #546670;
    letter-spacing: .01em;
    margin: 24px 0 8px
}

.ebd .ebdDescText h3 {
    font-size: 20px;
    line-height: 1.45;
    font-weight: 600;
    color: #2c3e44;
    letter-spacing: .01em;
    margin: 16px 0 8px
}

.ebd .ebdDescText cite {
    font-style: italic;
    color: #8AA5A7
}

.ebd .ebdDescText em {
    color: #546670;
    font-style: normal;
    font-weight: 600
}

.ebd .ebdDescText ol {
    padding-left: 24px;
    margin: 0 0 16px
}

.ebd .ebdDescText ol li {
    margin-bottom: 8px;
    font-size: 20px;
    line-height: 1.65;
    color: #2c3e44
}

.ebd .ebdDescText dl {
    margin: 0 0 16px
}

.ebd .ebdDescText dt {
    font-weight: 700;
    color: #546670;
    font-size: 20px;
    line-height: 1.45;
    margin-top: 16px
}

.ebd .ebdDescText dd {
    margin: 4px 0 0 16px;
    font-size: 20px;
    line-height: 1.65;
    color: #2c3e44
}

.ebd .ebdDescText blockquote {
    border-top: 2px solid #8AA5A7;
    border-bottom: 2px solid #EBE7DB;
    padding: 16px 24px;
    margin: 24px 0;
    background: #f5f3ee;
    border-radius: 4px;
    color: #546670;
    font-size: 20px;
    line-height: 1.65
}

.ebd .ebdDescText figure {
    margin: 24px 0
}

.ebd .ebdDescText figcaption {
    font-size: 14px;
    color: #8AA5A7;
    margin-top: 8px;
    letter-spacing: .01em
}

.ebd .ebdCard {
    background: #EBE7DB;
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 8px 52px 0 #5466701f;
    position: sticky;
    top: 24px
}

.ebd .ebdCardPrice {
    font-size: 50px;
    line-height: 1.2;
    font-weight: 800;
    color: #546670;
    letter-spacing: .01em;
    margin-bottom: 4px
}

.ebd .ebdCardPriceNote {
    font-size: 14px;
    line-height: 1.45;
    color: #546670;
    letter-spacing: .01em;
    margin-bottom: 16px
}

.ebd .ebdCardMeta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #54667026
}

.ebd .ebdCardMetaRow {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    line-height: 1.45;
    color: #2c3e44
}

.ebd .ebdCardMetaRow svg {
    flex-shrink: 0;
    color: #546670
}

.ebd .ebdCardSeats {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    line-height: 1.45;
    color: #546670;
    font-weight: 600;
    margin-bottom: 16px
}

.ebd .ebdSeatsBar {
    flex: 1;
    height: 6px;
    background: #54667026;
    border-radius: 28px;
    overflow: hidden
}

.ebd .ebdSeatsBarFill {
    height: 100%;
    background: #546670;
    border-radius: 28px;
    width: 72%;
    transition: width .65s cubic-bezier(0.22, 1, 0.36, 1)
}

.ebd .ebdCardBtn {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    font-size: 14px;
    line-height: 1.45;
    letter-spacing: .01em;
    font-weight: 700;
    color: #fff;
    background: #546670;
    border: 2px solid #546670;
    border-radius: 8px;
    padding: 16px 24px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: border-color .5s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 7px 14px 0 #54667014
}

.ebd .ebdCardBtn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to left, #8AA5A7, transparent);
    opacity: 0;
    transition: opacity .55s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none
}

.ebd .ebdCardBtn:hover::before {
    opacity: 1
}

.ebd .ebdCardBtn:hover {
    border-color: #8AA5A7
}

.ebd .ebdCardBtn:focus {
    outline: 3px solid #546670;
    outline-offset: 2px
}

.ebd .ebdCardLikes {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    font-size: 14px;
    color: #8AA5A7;
    letter-spacing: .01em
}

.ebd .ebdDivider2 {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 8px 0
}

.ebd .ebdDivider2Line {
    flex: 1;
    max-width: 120px;
    height: 1px;
    background: linear-gradient(to left, #8AA5A7, transparent);
    border-radius: 28px
}

.ebd .ebdDivider2Tag {
    font-size: 14px;
    letter-spacing: .02em;
    color: #8AA5A7;
    font-weight: 600
}

.ebd .ebdProgram {
    padding: 80px 24px;
    background: #EBE7DB;
    position: relative
}

.ebd .ebdProgramBg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden
}

.ebd .ebdChevronPattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: .04
}

.ebd .ebdProgramInner {
    max-width: 1024px;
    margin: 0 auto;
    position: relative
}

.ebd .ebdProgramHead {
    text-align: center;
    margin-bottom: 40px
}

.ebd .ebdProgramTitle {
    font-size: 50px;
    line-height: 1.2;
    font-weight: 800;
    color: #546670;
    letter-spacing: .01em;
    margin: 0 0 16px
}

.ebd .ebdProgramSubtitle {
    font-size: 20px;
    line-height: 1.65;
    color: #2c3e44;
    max-width: 560px;
    margin: 0 auto
}

.ebd .ebdProgramContent {
    background: #fff;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 8px 52px 0 #5466701f
}

.ebd .ebdProgramContent p {
    font-size: 20px;
    line-height: 1.65;
    color: #2c3e44;
    margin: 0 0 16px;
    letter-spacing: .01em
}

.ebd .ebdProgramContent h2 {
    font-size: 20px;
    line-height: 1.2;
    font-weight: 700;
    color: #546670;
    letter-spacing: .01em;
    margin: 24px 0 8px
}

.ebd .ebdProgramContent h3 {
    font-size: 20px;
    line-height: 1.45;
    font-weight: 600;
    color: #2c3e44;
    letter-spacing: .01em;
    margin: 16px 0 8px
}

.ebd .ebdProgramContent strong {
    color: #546670;
    font-weight: 700
}

.ebd .ebdProgramContent ul {
    list-style: none;
    padding: 0;
    margin: 0 0 16px
}

.ebd .ebdProgramContent ul li {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 8px;
    font-size: 20px;
    line-height: 1.65;
    color: #2c3e44;
    margin-bottom: 8px;
    padding: 8px 16px;
    border-radius: 4px;
    border: 1px solid #5466701f;
    transition: background .45s ease-in-out, border-color .45s ease-in-out
}

.ebd .ebdProgramContent ul li:hover {
    background: #ebe7db80;
    border-color: #8AA5A7
}

.ebd .ebdProgramContent ul li::before {
    content: '';
    display: block;
    width: 16px;
    height: 16px;
    min-width: 16px;
    border: 2px solid #8AA5A7;
    border-radius: 4px;
    margin-top: 4px;
    background: #8aa5a726
}

.ebd .ebdProgramContent blockquote {
    border-top: 2px solid #8AA5A7;
    border-bottom: 2px solid #EBE7DB;
    padding: 16px 24px;
    margin: 24px 0;
    background: #f5f3ee;
    border-radius: 4px;
    color: #546670;
    font-size: 20px;
    line-height: 1.65
}

.ebd .ebdProgramContent figure {
    margin: 24px 0
}

.ebd .ebdProgramContent figcaption {
    font-size: 14px;
    color: #8AA5A7;
    margin-top: 8px
}

.ebd .ebdDotsRow {
    display: flex;
    flex-direction: row;
    gap: 4px;
    justify-content: center;
    margin: 16px 0
}

.ebd .ebdDot {
    width: 5px;
    height: 5px;
    border-radius: 44px;
    background: #8AA5A7
}

.ebd .ebdDot.muted {
    background: #8aa5a759
}

@media (max-width: 768px) {
    .ebd .ebdHeroTitle {
        font-size: 50px
    }

    .ebd .ebdBodyGrid {
        grid-template-columns: 1fr
    }

    .ebd .ebdCard {
        position: static
    }

    .ebd .ebdProgramTitle {
        font-size: 50px
    }

    .ebd .ebdProgramContent {
        padding: 24px
    }
}

@media (max-width: 480px) {
    .ebd .ebdHeroTitle {
        font-size: 50px
    }

    .ebd .ebdHero {
        padding: 80px 16px
    }

    .ebd .ebdBody {
        padding: 40px 16px
    }

    .ebd .ebdProgram {
        padding: 40px 16px
    }

    .ebd .ebdProgramTitle {
        font-size: 50px
    }
}

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

.lnch .pgwrap {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 24px
}

.lnch .titlebg {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(270deg, #8AA5A7, #546670, #EBE7DB, #8AA5A7);
    background-size: 400% 400%;
    animation: gradshift 9s ease-in-out infinite
}

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

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

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

.lnch .titlebg::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(#54667014 1px, transparent 1px), linear-gradient(90deg, #54667014 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none
}

.lnch .titleinner {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 24px
}

.lnch .titletext {
    flex: 1
}

.lnch .titletext .pretag {
    display: inline-block;
    font-size: 14px;
    line-height: 1.45;
    letter-spacing: .02em;
    color: #EBE7DB;
    background: #5466708c;
    border-radius: 4px;
    padding: 4px 16px;
    margin-bottom: 24px
}

.lnch .titletext .mainhead {
    font-size: 66px;
    line-height: 1.2;
    letter-spacing: .01em;
    font-weight: 800;
    color: #fff;
    margin: 0 0 24px
}

.lnch .titletext .subthesis {
    font-size: 20px;
    line-height: 1.65;
    letter-spacing: .01em;
    color: #EBE7DB;
    margin: 0 0 16px
}

.lnch .titletext .subthesis2 {
    font-size: 14px;
    line-height: 1.65;
    letter-spacing: .01em;
    color: #ebe7dbd1;
    margin: 0
}

.lnch .titleimgwrap {
    flex-shrink: 0;
    width: 340px;
    height: 360px;
    clip-path: polygon(12% 0%, 100% 0%, 88% 100%, 0% 100%);
    overflow: hidden;
    border-radius: 8px
}

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

.lnch .valuesec {
    background: #fff;
    padding: 80px 0;
    border-bottom: 1px solid #EBE7DB
}

.lnch .valuesec .sechead {
    font-size: 50px;
    line-height: 1.2;
    letter-spacing: .01em;
    font-weight: 700;
    color: #546670;
    margin: 0 0 40px;
    max-width: 600px
}

.lnch .valuesplit {
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: flex-start
}

.lnch .valueleft {
    flex: 1.1
}

.lnch .valueright {
    flex: .9;
    display: flex;
    flex-direction: column;
    gap: 16px
}

.lnch .valuepara {
    font-size: 20px;
    line-height: 1.65;
    letter-spacing: .01em;
    color: #2a3538;
    margin: 0 0 16px
}

.lnch .valuepara small {
    font-size: 14px;
    line-height: 1.65;
    color: #546670;
    display: block;
    margin-top: 8px
}

.lnch .valcard {
    background: #EBE7DB;
    border-radius: 8px;
    padding: 24px;
    border-top: 4px solid #546670;
    box-shadow: 0 3px 6px 0 #54667014;
    transition: box-shadow .5s cubic-bezier(0.22, 1, 0.36, 1), transform .5s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    overflow: hidden
}

.lnch .valcard::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 8px;
    border: 2px solid transparent;
    transition: border-color .6s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none
}

.lnch .valcard:hover::after {
    border-color: #546670
}

.lnch .valcard:hover {
    box-shadow: 0 7px 14px 0 #54667014;
    transform: translateY(-2px)
}

.lnch .valcard .cardlabel {
    font-size: 14px;
    line-height: 1.45;
    letter-spacing: .02em;
    color: #546670;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 0 8px
}

.lnch .valcard .cardtext {
    font-size: 14px;
    line-height: 1.65;
    color: #2a3538;
    margin: 0
}

.lnch .diamsep {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 8px 0
}

.lnch .diamshape {
    width: 10px;
    height: 10px;
    background: #8AA5A7;
    transform: rotate(45deg);
    flex-shrink: 0
}

.lnch .diamline {
    flex: 1;
    height: 1px;
    background: #EBE7DB;
    max-width: 80px
}

.lnch .aftersec {
    background: #EBE7DB;
    padding: 80px 0
}

.lnch .aftergrid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
    margin-top: 40px
}

.lnch .aftergrid .sharedtop {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    background: #546670;
    border-radius: 8px 8px 0 0;
    padding: 16px 24px
}

.lnch .aftergrid .sharedtop .stlabel {
    font-size: 14px;
    line-height: 1.45;
    letter-spacing: .02em;
    color: #EBE7DB;
    font-weight: 700;
    text-transform: uppercase
}

.lnch .aftergrid .sharedtop .stline {
    flex: 1;
    height: 1px;
    background: #ebe7db4d
}

.lnch .aftercol {
    background: #fff;
    border-radius: 0 0 8px 8px;
    padding: 24px;
    box-shadow: 0 3px 6px 0 #54667014;
    border: 1px solid #8aa5a740;
    border-top: none;
    position: relative;
    overflow: hidden;
    transition: box-shadow .55s cubic-bezier(0.22, 1, 0.36, 1)
}

.lnch .aftercol:hover {
    box-shadow: 0 8px 52px 0 #5466701f
}

.lnch .aftercol::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 0 0 8px 8px;
    border: 2px solid transparent;
    transition: border-color .65s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none
}

.lnch .aftercol:hover::before {
    border-color: #8AA5A7
}

.lnch .aftercol .colnum {
    font-size: 50px;
    line-height: 1.2;
    font-weight: 800;
    color: #EBE7DB;
    letter-spacing: .01em;
    margin: 0 0 8px
}

.lnch .aftercol .coltitle {
    font-size: 20px;
    line-height: 1.45;
    font-weight: 700;
    color: #546670;
    margin: 0 0 8px;
    letter-spacing: .01em
}

.lnch .aftercol .coldesc {
    font-size: 14px;
    line-height: 1.65;
    color: #2a3538;
    margin: 0
}

.lnch .aftersec .sechead {
    font-size: 50px;
    line-height: 1.2;
    letter-spacing: .01em;
    font-weight: 700;
    color: #546670;
    margin: 0
}

.lnch .aftersec .secsubhead {
    font-size: 14px;
    line-height: 1.65;
    color: #546670;
    margin: 8px 0 0
}

.lnch .afterimg {
    margin-top: 40px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 7px 14px 0 #54667014
}

.lnch .afterimg img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    object-position: center;
    display: block
}

.lnch .peoplesec {
    background: #fff;
    padding: 80px 0;
    border-top: 1px solid #EBE7DB
}

.lnch .peoplesec .sechead {
    font-size: 50px;
    line-height: 1.2;
    letter-spacing: .01em;
    font-weight: 700;
    color: #2a3538;
    margin: 0 0 8px
}

.lnch .peoplesec .secdesc {
    font-size: 14px;
    line-height: 1.65;
    color: #546670;
    margin: 0 0 40px
}

.lnch .peoplelist {
    display: flex;
    flex-direction: column;
    gap: 40px
}

.lnch .personrow {
    display: flex;
    flex-direction: row;
    gap: 24px;
    align-items: flex-start
}

.lnch .personrow.alt {
    flex-direction: row-reverse
}

.lnch .portraitwrap {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 7px 14px 0 #54667014
}

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

.lnch .personinfo {
    flex: 1
}

.lnch .personinfo .pname {
    font-size: 20px;
    line-height: 1.45;
    font-weight: 700;
    color: #546670;
    margin: 0 0 4px;
    letter-spacing: .01em
}

.lnch .personinfo .prole {
    font-size: 14px;
    line-height: 1.45;
    color: #8AA5A7;
    margin: 0 0 16px;
    letter-spacing: .02em;
    text-transform: uppercase;
    font-weight: 700
}

.lnch .personinfo .pbio {
    font-size: 14px;
    line-height: 1.65;
    color: #2a3538;
    margin: 0
}

.lnch .personinfo .pdivider {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    margin: 16px 0
}

.lnch .personinfo .pdivider .pdline {
    width: 32px;
    height: 1px;
    background: #EBE7DB
}

.lnch .personinfo .pdivider .pdtri {
    width: 0;
    height: 0;
    border-left: 5px solid #8AA5A7;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent
}

.lnch .investsec {
    background: #546670;
    padding: 80px 0
}

.lnch .investsec .sechead {
    font-size: 50px;
    line-height: 1.2;
    letter-spacing: .01em;
    font-weight: 700;
    color: #EBE7DB;
    margin: 0 0 8px
}

.lnch .investsec .secdesc {
    font-size: 14px;
    line-height: 1.65;
    color: #ebe7dbbf;
    margin: 0 0 40px
}

.lnch .investgrid {
    display: flex;
    flex-direction: row;
    gap: 24px
}

.lnch .investitem {
    flex: 1;
    background: #ffffff12;
    border-radius: 8px;
    padding: 24px;
    border: 1px solid #ebe7db2e;
    position: relative;
    overflow: hidden;
    transition: background .5s cubic-bezier(0.22, 1, 0.36, 1)
}

.lnch .investitem::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 8px;
    border: 2px solid transparent;
    transition: border-color .6s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none
}

.lnch .investitem:hover::after {
    border-color: #8AA5A7
}

.lnch .investitem:hover {
    background: #ffffff21
}

.lnch .investitem .itype {
    font-size: 14px;
    line-height: 1.45;
    letter-spacing: .02em;
    color: #8AA5A7;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 0 8px
}

.lnch .investitem .iprice {
    font-size: 50px;
    line-height: 1.2;
    font-weight: 800;
    color: #EBE7DB;
    letter-spacing: .01em;
    margin: 0 0 8px
}

.lnch .investitem .idesc {
    font-size: 14px;
    line-height: 1.65;
    color: #ebe7dbcc;
    margin: 0
}

.lnch .investitem .ifeatures {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.lnch .investitem .ifeatures li {
    font-size: 14px;
    line-height: 1.65;
    color: #ebe7dbd1;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 8px
}

.lnch .investitem .ifeatures li::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #8AA5A7;
    transform: rotate(45deg);
    flex-shrink: 0;
    margin-top: 6px
}

.lnch .investnote {
    margin-top: 24px;
    font-size: 14px;
    line-height: 1.65;
    color: #ebe7db99
}

.lnch .supportsec {
    background: #fff;
    padding: 80px 0;
    border-top: 1px solid #EBE7DB
}

.lnch .supportsec .sechead {
    font-size: 50px;
    line-height: 1.2;
    letter-spacing: .01em;
    font-weight: 700;
    color: #2a3538;
    margin: 0 0 8px
}

.lnch .supportsec .secdesc {
    font-size: 14px;
    line-height: 1.65;
    color: #546670;
    margin: 0 0 40px;
    max-width: 540px
}

.lnch .supportlayout {
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: flex-start
}

.lnch .supportleft {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px
}

.lnch .supportright {
    flex: 1
}

.lnch .expanditem {
    border-bottom: 1px solid #EBE7DB
}

.lnch .expanditem:first-child {
    border-top: 1px solid #EBE7DB
}

.lnch .expandtoggle {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    cursor: pointer;
    list-style: none;
    font-size: 14px;
    line-height: 1.45;
    font-weight: 700;
    color: #546670;
    letter-spacing: .01em;
    transition: color .45s cubic-bezier(0.22, 1, 0.36, 1)
}

.lnch .expandtoggle::-webkit-details-marker {
    display: none
}

.lnch .expandtoggle::after {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    border-right: 2px solid #8AA5A7;
    border-bottom: 2px solid #8AA5A7;
    transform: rotate(45deg);
    transition: transform .45s cubic-bezier(0.22, 1, 0.36, 1);
    flex-shrink: 0
}

.lnch details[open] .expandtoggle::after {
    transform: rotate(-135deg)
}

.lnch details[open] .expandtoggle {
    color: #2a3538
}

.lnch .expandbody {
    font-size: 14px;
    line-height: 1.65;
    color: #2a3538;
    padding: 0 0 16px
}

.lnch .supportimgwrap {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 7px 14px 0 #54667014;
    border: 1px solid #EBE7DB
}

.lnch .supportimgwrap img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    object-position: center;
    display: block
}

.lnch .supportquote {
    margin-top: 24px;
    padding: 16px 24px;
    background: #EBE7DB;
    border-radius: 8px;
    border-left: 3px solid #8AA5A7;
    border-top: 1px solid #8aa5a74d
}

.lnch .supportquote .sqtext {
    font-size: 14px;
    line-height: 1.65;
    color: #2a3538;
    font-style: italic;
    margin: 0 0 8px
}

.lnch .supportquote .sqauthor {
    font-size: 14px;
    line-height: 1.45;
    color: #546670;
    font-weight: 700;
    margin: 0
}

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

.lnch .curvediv svg {
    display: block;
    width: 100%
}

.lnch .dashedfeat {
    border: 2px dashed #8AA5A7;
    border-radius: 8px;
    padding: 24px;
    margin-top: 40px
}

@media (max-width: 768px) {
    .lnch .titleinner {
        flex-direction: column
    }

    .lnch .titleimgwrap {
        width: 100%;
        height: 220px;
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%)
    }

    .lnch .titletext .mainhead {
        font-size: 50px
    }

    .lnch .valuesplit {
        flex-direction: column
    }

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

    .lnch .aftergrid .sharedtop {
        grid-column: 1 / -1;
        border-radius: 8px 8px 0 0
    }

    .lnch .aftercol {
        border-radius: 0
    }

    .lnch .aftercol:last-child {
        border-radius: 0 0 8px 8px
    }

    .lnch .investgrid {
        flex-direction: column
    }

    .lnch .supportlayout {
        flex-direction: column
    }

    .lnch .personrow,
    .lnch .personrow.alt {
        flex-direction: column
    }
}

@media (max-width: 480px) {
    .lnch .titlebg {
        padding: 40px 0
    }

    .lnch .valuesec,
    .lnch .aftersec,
    .lnch .peoplesec,
    .lnch .investsec,
    .lnch .supportsec {
        padding: 40px 0
    }

    .lnch .titletext .mainhead {
        font-size: 50px
    }

    .lnch .valuesec .sechead,
    .lnch .aftersec .sechead,
    .lnch .peoplesec .sechead,
    .lnch .investsec .sechead,
    .lnch .supportsec .sechead {
        font-size: 50px
    }
}

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

.abut .circles-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    border-radius: 0
}

.abut .circles-bg span {
    position: absolute;
    border-radius: 44px;
    border: 2px solid #54667014
}

.abut .circles-bg span:nth-child(1) {
    width: 220px;
    height: 220px;
    top: -60px;
    right: 10%;
    border-radius: 50%
}

.abut .circles-bg span:nth-child(2) {
    width: 120px;
    height: 120px;
    bottom: 20px;
    right: 5%;
    border-radius: 50%;
    border-color: #8aa5a71a
}

.abut .circles-bg span:nth-child(3) {
    width: 80px;
    height: 80px;
    top: 40%;
    right: 18%;
    border-radius: 50%;
    border-color: #ebe7db66
}

.abut .titlesec {
    position: relative;
    max-width: 1024px;
    margin: 0 auto;
    padding: 80px 40px 40px;
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 40px;
    align-items: start
}

.abut .portraitcol {
    position: relative
}

.abut .portrait {
    width: 180px;
    height: 270px;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
    display: block;
    box-shadow: 0 7px 14px 0 #54667014;
    transition: border .5s cubic-bezier(0.22, 1, 0.36, 1);
    border: 2px solid transparent
}

.abut .portrait:hover {
    border-color: #546670
}

.abut .expertlabel {
    font-size: 14px;
    color: #546670;
    letter-spacing: .02em;
    margin-top: 8px;
    line-height: 1.45;
    text-align: center
}

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

.abut .tagline {
    font-size: 14px;
    color: #8AA5A7;
    letter-spacing: .02em;
    line-height: 1.45;
    text-transform: uppercase
}

.abut .titlesec h1 {
    font-size: 50px;
    line-height: 1.2;
    letter-spacing: .01em;
    color: #2a3438;
    font-weight: 700;
    margin: 0
}

.abut .titledesc {
    font-size: 20px;
    color: #546670;
    line-height: 1.45;
    letter-spacing: .01em;
    max-width: 520px
}

.abut .actionlinks {
    display: flex;
    flex-direction: row;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 8px
}

.abut .btnprimary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 24px;
    background: #546670;
    color: #fff;
    font-size: 14px;
    letter-spacing: .02em;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    line-height: 1.2;
    position: relative;
    overflow: hidden;
    box-shadow: 0 3px 6px 0 #54667014;
    transition: box-shadow .5s cubic-bezier(0.22, 1, 0.36, 1), color .45s ease-in-out
}

.abut .btnprimary::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 100%;
    background: #8AA5A7;
    transition: width .55s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 0
}

.abut .btnprimary:hover::before {
    width: 100%;
    left: 0;
    right: auto
}

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

.abut .btnprimary:hover {
    box-shadow: 0 7px 14px 0 #54667014
}

.abut .btnsecond {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 24px;
    background: transparent;
    color: #546670;
    font-size: 14px;
    letter-spacing: .02em;
    border: 1.5px solid #546670;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    line-height: 1.2;
    position: relative;
    overflow: hidden;
    transition: color .45s ease-in-out, border-color .45s ease-in-out
}

.abut .btnsecond::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 100%;
    background: #EBE7DB;
    transition: width .6s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 0
}

.abut .btnsecond:hover::before {
    width: 100%
}

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

.abut .divband {
    height: 4px;
    background: linear-gradient(to left, transparent, #8AA5A7);
    max-width: 1024px;
    margin: 0 auto
}

.abut .storysec {
    background: linear-gradient(to left, #fff, #EBE7DB);
    padding: 80px 40px
}

.abut .storywrap {
    max-width: 1024px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start
}

.abut .storyimg {
    position: relative
}

.abut .storyimg img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
    box-shadow: 0 8px 52px 0 #5466701f;
    transition: border .6s cubic-bezier(0.22, 1, 0.36, 1);
    border: 2px solid transparent
}

.abut .storyimg img:hover {
    border-color: #8AA5A7
}

.abut .abbrvmark {
    font-size: 66px;
    font-weight: 700;
    color: #5466700f;
    line-height: 1.2;
    letter-spacing: .01em;
    position: absolute;
    bottom: -24px;
    right: -16px;
    pointer-events: none;
    user-select: none
}

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

.abut .storytext h2 {
    font-size: 50px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: .01em;
    color: #2a3438;
    margin: 0
}

.abut .storytext p {
    font-size: 14px;
    line-height: 1.65;
    color: #3d4e54;
    letter-spacing: .01em;
    margin: 0
}

.abut .divband2 {
    height: 4px;
    background: linear-gradient(to left, transparent, #546670);
    max-width: 1024px;
    margin: 0 auto
}

.abut .featsec {
    padding: 80px 40px;
    background: #fff
}

.abut .featwrap {
    max-width: 1024px;
    margin: 0 auto
}

.abut .featsec h2 {
    font-size: 50px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: .01em;
    color: #2a3438;
    margin: 0 0 40px;
    max-width: 600px
}

.abut .featgrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px
}

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

.abut .featgrouplabel {
    font-size: 14px;
    font-weight: 700;
    color: #546670;
    letter-spacing: .02em;
    text-transform: uppercase;
    padding-bottom: 8px;
    border-bottom: 1.5px solid #EBE7DB
}

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

.abut .featlist li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 14px;
    line-height: 1.65;
    color: #3d4e54;
    letter-spacing: .01em
}

.abut .featlist li::before {
    content: "";
    display: block;
    width: 14px;
    height: 14px;
    min-width: 14px;
    border: 1.5px solid #8AA5A7;
    border-radius: 4px;
    margin-top: 3px;
    position: relative;
    background: transparent;
    box-shadow: inset 0 2px 4px 0 #8aa5a71a
}

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

.abut .featimgcol img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
    box-shadow: 0 3px 6px 0 #54667014;
    transition: border .55s cubic-bezier(0.22, 1, 0.36, 1);
    border: 2px solid transparent
}

.abut .featimgcol img:hover {
    border-color: #546670
}

.abut .divband3 {
    height: 4px;
    background: linear-gradient(to left, transparent, #EBE7DB);
    max-width: 1024px;
    margin: 0 auto
}

.abut .pullsec {
    background: linear-gradient(to left, #fff, #8aa5a71f);
    padding: 80px 40px
}

.abut .pullwrap {
    max-width: 1024px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 80px;
    align-items: start
}

.abut .pullquote {
    border-left: 4px solid #8AA5A7;
    border-top: 1.5px solid #EBE7DB;
    padding: 24px;
    border-radius: 4px;
    background: #fff;
    box-shadow: 0 8px 52px 0 #8aa5a71f;
    position: relative
}

.abut .pullquote blockquote {
    margin: 0;
    font-size: 20px;
    line-height: 1.45;
    color: #2a3438;
    letter-spacing: .01em;
    font-weight: 600
}

.abut .pullquote .attribution {
    margin-top: 16px;
    font-size: 14px;
    color: #8AA5A7;
    letter-spacing: .02em
}

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

.abut .pulldetail h3 {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    color: #2a3438;
    letter-spacing: .01em;
    margin: 0
}

.abut .pulldetail p {
    font-size: 14px;
    line-height: 1.65;
    color: #3d4e54;
    letter-spacing: .01em;
    margin: 0
}

.abut .metarow {
    display: flex;
    flex-direction: row;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 8px
}

.abut .metaitem {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.abut .metanum {
    font-size: 50px;
    font-weight: 700;
    line-height: 1.2;
    color: #546670;
    letter-spacing: .01em;
    animation: rotateIn .65s cubic-bezier(0.22, 1, 0.36, 1) both
}

@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(-6deg) translateY(12px)
    }

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

.abut .metalabel {
    font-size: 14px;
    color: #8AA5A7;
    letter-spacing: .02em;
    line-height: 1.45
}

.abut .pullimgwrap {
    position: relative
}

.abut .pullimgwrap img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
    box-shadow: 0 7px 14px 0 #54667014;
    transition: border .7s cubic-bezier(0.22, 1, 0.36, 1);
    border: 2px solid transparent
}

.abut .pullimgwrap img:hover {
    border-color: #546670
}

@media (max-width: 1024px) {
    .abut .titlesec {
        grid-template-columns: 140px 1fr;
        gap: 24px;
        padding: 40px 24px 24px
    }

    .abut .portrait {
        width: 140px;
        height: 210px
    }

    .abut .titlesec h1 {
        font-size: 50px
    }

    .abut .storywrap {
        gap: 40px;
        padding: 0
    }

    .abut .pullwrap {
        gap: 40px
    }
}

@media (max-width: 768px) {
    .abut .titlesec {
        grid-template-columns: 1fr;
        padding: 40px 16px 24px
    }

    .abut .portraitcol {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 16px
    }

    .abut .portrait {
        width: 100px;
        height: 150px
    }

    .abut .titlesec h1 {
        font-size: 50px
    }

    .abut .storysec {
        padding: 40px 16px
    }

    .abut .storywrap {
        grid-template-columns: 1fr;
        gap: 24px
    }

    .abut .featsec {
        padding: 40px 16px
    }

    .abut .featgrid {
        grid-template-columns: 1fr;
        gap: 24px
    }

    .abut .pullsec {
        padding: 40px 16px
    }

    .abut .pullwrap {
        grid-template-columns: 1fr;
        gap: 24px
    }

    .abut .metanum {
        font-size: 50px
    }
}

@media (max-width: 480px) {
    .abut .titlesec h1 {
        font-size: 50px
    }

    .abut .actionlinks {
        flex-direction: column
    }

    .abut .metarow {
        gap: 16px
    }
}

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

.ctus .split-reveal {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    max-width: 1024px;
    margin: 0 auto;
    padding: 80px 24px;
    gap: 40px
}

.ctus .imgcol {
    flex: 0 0 420px;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 7px 14px 0 #54667014
}

.ctus .imgcol img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: sepia(0.28) contrast(1.08) brightness(0.96) saturate(0.82);
    animation: slowzoom 9s cubic-bezier(0.22, 1, 0.36, 1) infinite alternate
}

@keyframes slowzoom {
    from {
        transform: scale(1)
    }

    to {
        transform: scale(1.06)
    }
}

.ctus .imgcol .decoborder {
    position: absolute;
    inset: 12px;
    border: 1.5px solid #8aa5a761;
    border-radius: 4px;
    pointer-events: none
}

.ctus .imgcol .blurspot {
    position: absolute;
    border-radius: 44px;
    pointer-events: none
}

.ctus .imgcol .blurspot.a {
    width: 180px;
    height: 120px;
    background: #8aa5a72e;
    filter: blur(32px);
    top: -24px;
    left: -24px
}

.ctus .imgcol .blurspot.b {
    width: 140px;
    height: 140px;
    background: #54667021;
    filter: blur(40px);
    bottom: -20px;
    right: -20px
}

.ctus .txtcol {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px
}

.ctus .txtcol .pagelabel {
    font-size: 14px;
    line-height: 1.2;
    letter-spacing: .14em;
    color: #8AA5A7;
    text-transform: uppercase;
    font-weight: 600
}

.ctus .txtcol .pagehed {
    font-size: 50px;
    line-height: 1.2;
    letter-spacing: .01em;
    color: #546670;
    font-weight: 800;
    margin: 0
}

.ctus .txtcol .pagehed .accentword {
    color: #8AA5A7;
    position: relative;
    display: inline-block
}

.ctus .txtcol .pagehed .accentword::after {
    content: '';
    display: block;
    height: 3px;
    background: linear-gradient(to left, #8AA5A7, transparent);
    border-radius: 4px;
    margin-top: 2px
}

.ctus .txtcol .subdesc {
    font-size: 20px;
    line-height: 1.45;
    letter-spacing: .01em;
    color: #546670;
    margin: 0
}

.ctus .contactstrip {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 16px;
    background: #EBE7DB;
    border-radius: 8px;
    border-left: 4px solid #8AA5A7;
    border-top: 1px solid #5466701f
}

.ctus .contactstrip .cline {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    line-height: 1.45;
    color: #546670;
    letter-spacing: .01em
}

.ctus .contactstrip .cline .cicon {
    flex: 0 0 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center
}

.ctus .contactstrip .cline .cicon svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: #546670;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round
}

.ctus .contactstrip .cline a {
    color: #546670;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color .5s cubic-bezier(0.22, 1, 0.36, 1)
}

.ctus .contactstrip .cline a:hover {
    color: #8AA5A7
}

.ctus .formsec {
    background: #EBE7DB;
    border-right: 6px solid #8AA5A7;
    position: relative
}

.ctus .formsec .forminner {
    max-width: 1024px;
    margin: 0 auto;
    padding: 80px 24px;
    display: flex;
    flex-direction: row;
    gap: 80px;
    align-items: flex-start
}

.ctus .formsec .formleft {
    flex: 0 0 260px;
    display: flex;
    flex-direction: column;
    gap: 24px
}

.ctus .formsec .formleft .formhed {
    font-size: 50px;
    line-height: 1.2;
    letter-spacing: .01em;
    color: #546670;
    font-weight: 800;
    margin: 0
}

.ctus .formsec .formleft .formdesc {
    font-size: 14px;
    line-height: 1.65;
    color: #546670;
    letter-spacing: .01em;
    margin: 0
}

.ctus .formsec .formleft .numblist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px
}

.ctus .formsec .formleft .numblist li {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px
}

.ctus .formsec .formleft .numblist li .nnum {
    font-size: 50px;
    line-height: 1;
    font-weight: 800;
    color: #54667024;
    letter-spacing: -.02em;
    flex: 0 0 auto;
    margin-top: -8px
}

.ctus .formsec .formleft .numblist li .ntxt {
    font-size: 14px;
    line-height: 1.65;
    color: #546670;
    letter-spacing: .01em;
    padding-top: 4px
}

.ctus .formsec .formright {
    flex: 1 1 0
}

.ctus .formsec .formright form {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.ctus .formsec .formright .fieldrow {
    display: flex;
    flex-direction: row;
    gap: 16px
}

.ctus .formsec .formright .fieldrow .fgroup {
    flex: 1 1 0
}

.ctus .formsec .formright .fgroup {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.ctus .formsec .formright .fgroup label {
    font-size: 14px;
    line-height: 1.2;
    letter-spacing: .02em;
    color: #546670;
    font-weight: 600
}

.ctus .formsec .formright .fgroup input[type="text"],
.ctus .formsec .formright .fgroup input[type="email"],
.ctus .formsec .formright .fgroup select {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #54667047;
    border-radius: 4px;
    background: #fff;
    font-size: 14px;
    line-height: 1.45;
    color: #546670;
    letter-spacing: .01em;
    box-shadow: inset 0 2px 6px 0 #5466700f;
    transition: border-color .5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow .5s cubic-bezier(0.22, 1, 0.36, 1);
    box-sizing: border-box;
    appearance: none;
    -webkit-appearance: none
}

.ctus .formsec .formright .fgroup input[type="text"]:focus,
.ctus .formsec .formright .fgroup input[type="email"]:focus,
.ctus .formsec .formright .fgroup select:focus {
    outline: none;
    border-color: #546670;
    box-shadow: inset 0 2px 6px 0 #54667014 0 0 0 3px #5466701a
}

.ctus .formsec .formright .fgroup input::placeholder {
    color: #54667073
}

.ctus .formsec .formright .fgroup .selectwrap {
    position: relative
}

.ctus .formsec .formright .fgroup .selectwrap::after {
    content: '';
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid #546670;
    pointer-events: none
}

.ctus .formsec .formright .fgroup select {
    cursor: pointer;
    padding-right: 36px
}

.ctus .formsec .formright .privacyrow {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px
}

.ctus .formsec .formright .privacyrow input[type="checkbox"] {
    flex: 0 0 18px;
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: #546670;
    cursor: pointer
}

.ctus .formsec .formright .privacyrow .privacytxt {
    font-size: 14px;
    line-height: 1.65;
    color: #546670;
    letter-spacing: .01em
}

.ctus .formsec .formright .privacyrow .privacytxt a {
    color: #546670;
    font-weight: 600;
    text-underline-offset: 3px;
    transition: color .45s ease-in-out
}

.ctus .formsec .formright .privacyrow .privacytxt a:hover {
    color: #8AA5A7
}

.ctus .formsec .formright .submitbtn {
    align-self: flex-start;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    padding: 16px 40px;
    background: #546670;
    color: #fff;
    font-size: 14px;
    line-height: 1.2;
    letter-spacing: .06em;
    font-weight: 700;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 3px 6px 0 #54667014;
    transition: box-shadow .6s cubic-bezier(0.22, 1, 0.36, 1), color .6s cubic-bezier(0.22, 1, 0.36, 1)
}

.ctus .formsec .formright .submitbtn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #8AA5A7 0%, transparent 100%);
    opacity: 0;
    transition: opacity .55s cubic-bezier(0.22, 1, 0.36, 1);
    border-radius: 4px
}

.ctus .formsec .formright .submitbtn:hover::before {
    opacity: 1
}

.ctus .formsec .formright .submitbtn:hover {
    box-shadow: 0 7px 14px 0 #54667014
}

.ctus .formsec .formright .submitbtn:focus {
    outline: 3px solid #8AA5A7;
    outline-offset: 3px
}

.ctus .formsec .formright .submitbtn .btnlabel {
    position: relative;
    z-index: 1
}

.ctus .formsec .formright .submitbtn svg {
    position: relative;
    z-index: 1;
    width: 16px;
    height: 16px;
    fill: none;
    stroke: #fff;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round
}

.ctus .formsec .trustbar {
    margin-top: 40px;
    padding: 24px;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #54667024;
    box-shadow: 0 3px 6px 0 #54667014;
    display: flex;
    flex-direction: column;
    gap: 16px
}

.ctus .formsec .trustbar .trusthed {
    font-size: 14px;
    line-height: 1.2;
    letter-spacing: .08em;
    color: #8AA5A7;
    font-weight: 700;
    text-transform: uppercase
}

.ctus .formsec .trustbar .trustlist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px
}

.ctus .formsec .trustbar .trustlist li {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    line-height: 1.65;
    color: #546670;
    letter-spacing: .01em
}

.ctus .formsec .trustbar .trustlist li .chkbox {
    flex: 0 0 18px;
    width: 18px;
    height: 18px;
    border-radius: 4px;
    border: 2px solid #8AA5A7;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px
}

.ctus .formsec .trustbar .trustlist li .chkbox svg {
    width: 10px;
    height: 10px;
    fill: none;
    stroke: #546670;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round
}

.ctus .formsec .trustbar .trustquote {
    font-size: 14px;
    line-height: 1.65;
    color: #546670;
    letter-spacing: .01em;
    border-top: 1px solid #5466701f;
    padding-top: 16px;
    font-style: italic
}

.ctus .formsec .trustbar .trustquote .quotename {
    display: block;
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    color: #546670;
    margin-top: 8px
}

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

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

.ctus .split-reveal .imgcol {
    animation: openreveal .9s cubic-bezier(0.22, 1, 0.36, 1) both
}

.ctus .split-reveal .txtcol {
    animation: openreveal 1.05s .15s cubic-bezier(0.22, 1, 0.36, 1) both
}

@media (max-width: 1024px) {
    .ctus .split-reveal {
        flex-direction: column;
        padding: 40px 24px
    }

    .ctus .imgcol {
        flex: 0 0 280px;
        height: 280px
    }

    .ctus .formsec .forminner {
        flex-direction: column;
        gap: 40px;
        padding: 40px 24px
    }

    .ctus .formsec .formleft {
        flex: 0 0 auto
    }
}

@media (max-width: 768px) {
    .ctus .txtcol .pagehed {
        font-size: 50px
    }

    .ctus .formsec .formright .fieldrow {
        flex-direction: column;
        gap: 16px
    }

    .ctus .formsec .formleft .formhed {
        font-size: 50px
    }
}

@media (max-width: 480px) {
    .ctus .split-reveal {
        padding: 40px 16px
    }

    .ctus .formsec .forminner {
        padding: 40px 16px
    }

    .ctus .txtcol .pagehed {
        font-size: 50px
    }

    .ctus .formsec .formleft .formhed {
        font-size: 50px
    }

    .ctus .formsec .formright .submitbtn {
        width: 100%;
        justify-content: center
    }
}

.consult {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 24px;
    overflow: hidden
}

.consult .pg-schema {
    display: none
}

.consult .titl-block {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    padding: 80px 0 40px;
    position: relative
}

.consult .titl-left {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 8px
}

.consult .titl-quote {
    font-size: 66px;
    line-height: 1.2;
    color: #EBE7DB;
    font-weight: 900;
    letter-spacing: .01em;
    user-select: none;
    display: block;
    margin-bottom: 16px
}

.consult .titl-label {
    font-size: 14px;
    line-height: 1.45;
    letter-spacing: .02em;
    color: #546670;
    text-transform: uppercase;
    border-top: 2px solid #8AA5A7;
    border-bottom: 1px solid #EBE7DB;
    padding: 8px 0
}

.consult .titl-right {
    padding-top: 40px
}

.consult .titl-h1 {
    font-size: 50px;
    line-height: 1.2;
    letter-spacing: .01em;
    color: #2a3a40;
    font-weight: 800;
    margin-bottom: 24px
}

.consult .titl-h1 .accent-term {
    background: #EBE7DB;
    color: #546670;
    padding: 0 8px;
    border-radius: 4px
}

.consult .titl-desc {
    font-size: 20px;
    line-height: 1.65;
    letter-spacing: .01em;
    color: #3d4f55;
    max-width: 520px
}

.consult .titl-img-wrap {
    margin-top: 24px;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 7px 14px 0 #54667014
}

.consult .titl-img-wrap img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: box-shadow .55s cubic-bezier(0.22, 1, 0.36, 1)
}

.consult .titl-img-wrap:hover img {
    box-shadow: 0 8px 52px 0 #5466701f
}

.consult .titl-img-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #ebe7db59, transparent 60%);
    pointer-events: none
}

.consult .divider-a {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px auto;
    gap: 16px
}

.consult .divider-a .div-line {
    height: 1px;
    width: 120px;
    background: linear-gradient(to right, #8AA5A7, transparent);
    border-radius: 44px
}

.consult .divider-a .div-line.rev {
    background: linear-gradient(to left, #8AA5A7, transparent)
}

.consult .divider-a .div-dot {
    width: 8px;
    height: 8px;
    border-radius: 44px;
    background: #546670
}

.consult .steps-block {
    display: grid;
    grid-template-columns: 1.1fr 1.9fr;
    gap: 40px;
    padding: 40px 0;
    background: #f5f2ec;
    border-radius: 8px;
    padding: 40px;
    position: relative
}

.consult .steps-block::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, #546670, #8AA5A7, transparent);
    border-radius: 8px 8px 0 0
}

.consult .steps-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.consult .steps-sidebar-h {
    font-size: 20px;
    line-height: 1.45;
    letter-spacing: .01em;
    color: #546670;
    font-weight: 700;
    padding-bottom: 16px;
    border-bottom: 1px solid #8AA5A7
}

.consult .icon-legend {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.consult .legend-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px
}

.consult .legend-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform .5s cubic-bezier(0.22, 1, 0.36, 1)
}

.consult .legend-icon:hover {
    transform: rotate(8deg)
}

.consult .legend-icon.col-a {
    background: #546670
}

.consult .legend-icon.col-b {
    background: #8AA5A7
}

.consult .legend-icon.col-c {
    background: #EBE7DB;
    border: 1px solid #8AA5A7
}

.consult .legend-icon svg {
    width: 16px;
    height: 16px
}

.consult .legend-txt {
    font-size: 14px;
    line-height: 1.45;
    letter-spacing: .01em;
    color: #3d4f55
}

.consult .legend-txt strong {
    color: #2a3a40;
    display: block;
    margin-bottom: 4px
}

.consult .steps-main {
    display: flex;
    flex-direction: column;
    gap: 24px
}

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

.consult .step-num {
    font-size: 50px;
    line-height: 1.2;
    font-weight: 900;
    color: #EBE7DB;
    letter-spacing: .01em;
    flex-shrink: 0;
    width: 56px;
    text-align: right;
    user-select: none
}

.consult .step-body {
    padding-top: 8px;
    border-top: 1px solid #EBE7DB;
    flex: 1
}

.consult .step-body h4 {
    font-size: 20px;
    line-height: 1.45;
    letter-spacing: .01em;
    color: #2a3a40;
    font-weight: 700;
    margin-bottom: 8px
}

.consult .step-body p {
    font-size: 14px;
    line-height: 1.65;
    letter-spacing: .01em;
    color: #3d4f55
}

.consult .divider-b {
    margin: 40px auto;
    height: 2px;
    background: linear-gradient(to right, transparent, #EBE7DB 30%, #8AA5A7 50%, #EBE7DB 70%, transparent);
    border-radius: 44px;
    max-width: 600px
}

.consult .experts-block {
    padding: 40px 0;
    background: linear-gradient(to bottom, #fff, #EBE7DB 100%);
    border-radius: 28px;
    padding: 40px;
    box-shadow: 0 3px 6px 0 #54667014
}

.consult .experts-h {
    font-size: 20px;
    line-height: 1.45;
    letter-spacing: .02em;
    color: #546670;
    font-weight: 700;
    margin-bottom: 24px;
    text-transform: uppercase
}

.consult .experts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px
}

.consult .expert-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px;
    align-items: start
}

.consult .expert-portrait {
    width: 88px;
    height: 112px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 6px 0 #8aa5a714;
    transition: box-shadow .6s cubic-bezier(0.22, 1, 0.36, 1);
    flex-shrink: 0
}

.consult .expert-portrait:hover {
    box-shadow: 0 8px 52px 0 #8aa5a71f
}

.consult .expert-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block
}

.consult .expert-info {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.consult .expert-name {
    font-size: 20px;
    line-height: 1.45;
    letter-spacing: .01em;
    color: #2a3a40;
    font-weight: 700
}

.consult .expert-role {
    font-size: 14px;
    line-height: 1.45;
    letter-spacing: .02em;
    color: #546670;
    font-weight: 600
}

.consult .expert-bio {
    font-size: 14px;
    line-height: 1.65;
    letter-spacing: .01em;
    color: #3d4f55
}

.consult .divider-c {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 40px 0
}

.consult .divider-c .dc-line {
    flex: 1;
    height: 1px;
    background: #EBE7DB;
    border-radius: 44px
}

.consult .divider-c .dc-badge {
    font-size: 14px;
    letter-spacing: .02em;
    color: #8AA5A7;
    padding: 4px 16px;
    border: 1px solid #EBE7DB;
    border-radius: 44px
}

.consult .contact-block {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    padding: 40px 0 80px;
    position: relative
}

.consult .contact-block::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 50%;
    background: #EBE7DB;
    border-radius: 8px 8px 0 0;
    z-index: 0
}

.consult .contact-block::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    bottom: 0;
    background: #fff;
    border-radius: 0 0 8px 8px;
    z-index: 0
}

.consult .contact-main {
    position: relative;
    z-index: 1;
    padding: 40px
}

.consult .contact-h {
    font-size: 50px;
    line-height: 1.2;
    letter-spacing: .01em;
    color: #2a3a40;
    font-weight: 800;
    margin-bottom: 16px
}

.consult .contact-sub {
    font-size: 20px;
    line-height: 1.65;
    letter-spacing: .01em;
    color: #3d4f55;
    margin-bottom: 24px
}

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

.consult .contact-details-list li {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    line-height: 1.45;
    letter-spacing: .01em;
    color: #3d4f55
}

.consult .contact-details-list li i {
    color: #546670;
    font-size: 20px;
    flex-shrink: 0
}

.consult .contact-details-list a {
    color: #546670;
    text-decoration: none;
    border-bottom: 1px solid #8AA5A7;
    transition: color .45s ease-in-out, border-color .45s ease-in-out
}

.consult .contact-details-list a:hover {
    color: #2a3a40;
    border-color: #546670
}

.consult .contact-cta-wrap {
    position: relative;
    z-index: 1;
    padding: 40px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center
}

.consult .cta-card {
    background: #546670;
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 7px 14px 0 #54667014;
    display: flex;
    flex-direction: column;
    gap: 16px
}

.consult .cta-card-h {
    font-size: 20px;
    line-height: 1.45;
    letter-spacing: .01em;
    color: #EBE7DB;
    font-weight: 700
}

.consult .cta-card-p {
    font-size: 14px;
    line-height: 1.65;
    letter-spacing: .01em;
    color: #c8d8da
}

.consult .btn-primary {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    background: #EBE7DB;
    color: #2a3a40;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .02em;
    padding: 16px 24px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: color .5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow .5s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 3px 6px 0 #54667014;
    align-self: flex-start
}

.consult .btn-primary::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #8AA5A7 0%, transparent 60%);
    opacity: 0;
    transition: opacity .55s cubic-bezier(0.22, 1, 0.36, 1);
    border-radius: 4px
}

.consult .btn-primary:hover::before {
    opacity: 1
}

.consult .btn-primary:hover {
    color: #2a3a40;
    box-shadow: 0 7px 14px 0 #54667014
}

.consult .btn-primary:focus {
    outline: 2px solid #546670;
    outline-offset: 3px
}

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

.consult .checklist li {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    line-height: 1.65;
    letter-spacing: .01em;
    color: #3d4f55
}

.consult .check-box {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    border: 2px solid #8AA5A7;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px
}

.consult .check-box svg {
    width: 10px;
    height: 10px
}

.consult .chevron-bg {
    position: relative
}

.consult .chevron-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(120deg, #5466700a 0px, #5466700a 1px, transparent 1px, transparent 12px);
    border-radius: 8px;
    pointer-events: none
}

@media (max-width: 768px) {
    .consult .titl-block {
        grid-template-columns: 1fr;
        padding: 40px 0 24px
    }

    .consult .titl-left {
        display: none
    }

    .consult .titl-h1 {
        font-size: 50px
    }

    .consult .steps-block {
        grid-template-columns: 1fr;
        padding: 24px
    }

    .consult .experts-grid {
        grid-template-columns: 1fr;
        gap: 24px
    }

    .consult .contact-block {
        grid-template-columns: 1fr
    }

    .consult .contact-block::before,
    .consult .contact-block::after {
        display: none
    }

    .consult .contact-main {
        padding: 24px 0
    }

    .consult .contact-cta-wrap {
        padding: 0
    }
}

@media (max-width: 480px) {
    .consult .titl-h1 {
        font-size: 50px
    }

    .consult .contact-h {
        font-size: 50px
    }

    .consult .step-num {
        font-size: 50px;
        width: 40px
    }
}

.edubiz {
    background: #fff;
    max-width: 100%;
    overflow-x: hidden
}

.edubiz .pg-inner {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 24px
}

.edubiz .hz-wrap {
    background: linear-gradient(to top, #EBE7DB, #fff);
    padding: 80px 24px 40px;
    position: relative
}

.edubiz .hz-inner {
    max-width: 1024px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 40px
}

.edubiz .hz-left {
    flex: 1 1 60%;
    position: relative;
    z-index: 1
}

.edubiz .hz-blob {
    position: absolute;
    border-radius: 44px;
    filter: blur(48px);
    pointer-events: none;
    z-index: 0
}

.edubiz .hz-blob.b1 {
    width: 260px;
    height: 200px;
    background: #54667021;
    top: -40px;
    left: -30px
}

.edubiz .hz-blob.b2 {
    width: 180px;
    height: 160px;
    background: #8aa5a71f;
    top: 20px;
    left: 120px
}

.edubiz .hz-tag {
    display: inline-block;
    font-size: 14px;
    line-height: 1.45;
    letter-spacing: .02em;
    color: #546670;
    border: 1.5px solid #8AA5A7;
    border-radius: 4px;
    padding: 4px 16px;
    margin-bottom: 24px;
    position: relative;
    z-index: 1
}

.edubiz .hz-heading {
    font-size: 66px;
    line-height: 1.2;
    letter-spacing: .01em;
    font-weight: 800;
    color: #1e2d33;
    margin: 0 0 24px;
    position: relative;
    z-index: 1
}

.edubiz .hz-sub {
    font-size: 20px;
    line-height: 1.45;
    letter-spacing: .01em;
    color: #546670;
    max-width: 440px;
    margin: 0;
    position: relative;
    z-index: 1
}

.edubiz .hz-right {
    flex: 0 0 280px;
    position: relative
}

.edubiz .hz-img-wrap {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 52px 0 #5466701f;
    position: relative
}

.edubiz .hz-img-wrap img {
    width: 280px;
    height: 320px;
    object-fit: cover;
    object-position: center;
    display: block;
    image-rendering: crisp-edges
}

.edubiz .hz-stat {
    position: absolute;
    bottom: -16px;
    left: -24px;
    background: #546670;
    color: #fff;
    border-radius: 8px;
    padding: 16px 24px;
    box-shadow: 0 7px 14px 0 #54667014
}

.edubiz .hz-stat-num {
    font-size: 50px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: .01em;
    display: block
}

.edubiz .hz-stat-label {
    font-size: 14px;
    line-height: 1.45;
    letter-spacing: .02em;
    opacity: .85
}

.edubiz .zz-divider {
    width: 100%;
    overflow: hidden;
    line-height: 0;
    margin: 0
}

.edubiz .zz-divider svg {
    display: block;
    width: 100%
}

.edubiz .prog-wrap {
    padding: 80px 24px;
    background: #fff
}

.edubiz .prog-inner {
    max-width: 1024px;
    margin: 0 auto
}

.edubiz .prog-header {
    margin-bottom: 40px
}

.edubiz .prog-header h2 {
    font-size: 50px;
    line-height: 1.2;
    letter-spacing: .01em;
    font-weight: 800;
    color: #1e2d33;
    margin: 0 0 8px
}

.edubiz .prog-header p {
    font-size: 20px;
    line-height: 1.45;
    color: #546670;
    margin: 0;
    letter-spacing: .01em
}

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

.edubiz .prog-card {
    border-radius: 8px;
    border: 1.5px solid #EBE7DB;
    background: #fff;
    box-shadow: 0 3px 6px 0 #54667014;
    display: flex;
    flex-direction: column;
    transition: box-shadow .5s cubic-bezier(0.22, 1, 0.36, 1), border-color .5s cubic-bezier(0.22, 1, 0.36, 1);
    overflow: hidden
}

.edubiz .prog-card:hover {
    box-shadow: 0 7px 14px 0 #54667014;
    border-color: #8AA5A7
}

.edubiz .card-img-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 8px 8px 0 0
}

.edubiz .card-img-wrap img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform .6s cubic-bezier(0.22, 1, 0.36, 1)
}

.edubiz .prog-card:hover .card-img-wrap img {
    transform: scale(1.04)
}

.edubiz .card-img-placeholder {
    width: 100%;
    height: 180px;
    background: linear-gradient(to right, #EBE7DB, #8AA5A7);
    display: flex;
    align-items: center;
    justify-content: center
}

.edubiz .card-img-placeholder svg {
    width: 48px;
    height: 48px;
    opacity: .5
}

.edubiz .card-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: #546670;
    color: #fff;
    font-size: 14px;
    line-height: 1.45;
    letter-spacing: .02em;
    border-radius: 4px;
    padding: 4px 8px
}

.edubiz .card-body {
    padding: 24px;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    gap: 16px
}

.edubiz .card-meta-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap
}

.edubiz .card-tag {
    font-size: 14px;
    line-height: 1.45;
    letter-spacing: .02em;
    color: #8AA5A7;
    border: 1px solid #8AA5A7;
    border-radius: 4px;
    padding: 2px 8px
}

.edubiz .card-level {
    font-size: 14px;
    line-height: 1.45;
    letter-spacing: .02em;
    color: #546670;
    background: #EBE7DB;
    border-radius: 4px;
    padding: 2px 8px
}

.edubiz .card-title {
    font-size: 20px;
    line-height: 1.45;
    letter-spacing: .01em;
    font-weight: 700;
    color: #1e2d33;
    margin: 0
}

.edubiz .card-desc {
    font-size: 14px;
    line-height: 1.65;
    letter-spacing: .01em;
    color: #546670;
    margin: 0
}

.edubiz .card-details {
    display: flex;
    flex-direction: row;
    gap: 16px;
    flex-wrap: wrap
}

.edubiz .card-detail-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    line-height: 1.45;
    color: #546670;
    letter-spacing: .01em
}

.edubiz .card-detail-item i {
    font-size: 14px;
    color: #8AA5A7
}

.edubiz .card-footer {
    padding: 16px 24px;
    border-top: 1px solid #EBE7DB;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 8px
}

.edubiz .card-price-block {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.edubiz .card-price {
    font-size: 20px;
    line-height: 1.2;
    font-weight: 800;
    color: #1e2d33;
    letter-spacing: .01em
}

.edubiz .card-price-note {
    font-size: 14px;
    line-height: 1.45;
    color: #8AA5A7;
    letter-spacing: .01em
}

.edubiz .card-seats {
    font-size: 14px;
    line-height: 1.45;
    color: #546670;
    letter-spacing: .01em
}

.edubiz .card-btn {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    line-height: 1.45;
    letter-spacing: .02em;
    font-weight: 700;
    color: #fff;
    background: #546670;
    border: none;
    border-radius: 4px;
    padding: 8px 16px;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: color .45s cubic-bezier(0.22, 1, 0.36, 1)
}

.edubiz .card-btn::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 100%;
    background: #1e2d33;
    border-radius: 4px;
    transition: width .55s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 0
}

.edubiz .card-btn:hover::before {
    width: 100%;
    left: 0;
    right: auto
}

.edubiz .card-btn span,
.edubiz .card-btn i {
    position: relative;
    z-index: 1
}

.edubiz .band-div {
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding: 16px 24px
}

.edubiz .band-line {
    width: 120px;
    height: 4px;
    background: linear-gradient(to left, #8AA5A7, transparent);
    border-radius: 28px
}

.edubiz .expert-wrap {
    background: linear-gradient(to top, #EBE7DB, #fff);
    padding: 80px 24px
}

.edubiz .expert-inner {
    max-width: 1024px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: flex-start
}

.edubiz .expert-sidebar {
    flex: 0 0 200px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center
}

.edubiz .expert-portrait {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 7px 14px 0 #54667014;
    border: 3px solid #8AA5A7
}

.edubiz .expert-portrait img {
    width: 160px;
    height: 160px;
    object-fit: cover;
    object-position: center;
    display: block
}

.edubiz .expert-name {
    font-size: 20px;
    line-height: 1.45;
    font-weight: 700;
    color: #1e2d33;
    letter-spacing: .01em;
    text-align: center;
    margin: 0
}

.edubiz .expert-role {
    font-size: 14px;
    line-height: 1.45;
    color: #8AA5A7;
    letter-spacing: .02em;
    text-align: center;
    margin: 0
}

.edubiz .expert-main {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    gap: 24px
}

.edubiz .expert-main h3 {
    font-size: 50px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: .01em;
    color: #1e2d33;
    margin: 0
}

.edubiz .expert-main p {
    font-size: 14px;
    line-height: 1.65;
    color: #546670;
    letter-spacing: .01em;
    margin: 0
}

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

.edubiz .expert-checklist li {
    font-size: 14px;
    line-height: 1.65;
    color: #546670;
    letter-spacing: .01em;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 8px
}

.edubiz .chk-box {
    width: 16px;
    height: 16px;
    border: 2px solid #8AA5A7;
    border-radius: 4px;
    flex-shrink: 0;
    margin-top: 2px;
    position: relative;
    background: #fff
}

.edubiz .chk-box::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 4px;
    width: 5px;
    height: 8px;
    border-right: 2px solid #546670;
    border-bottom: 2px solid #546670;
    transform: rotate(45deg)
}

.edubiz .metrics-wrap {
    background: #546670;
    padding: 40px 24px
}

.edubiz .metrics-inner {
    max-width: 1024px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    gap: 40px;
    justify-content: space-around;
    flex-wrap: wrap
}

.edubiz .metric-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px
}

.edubiz .metric-num {
    font-size: 50px;
    line-height: 1.2;
    font-weight: 800;
    color: #EBE7DB;
    letter-spacing: .01em
}

.edubiz .metric-label {
    font-size: 14px;
    line-height: 1.45;
    color: #8AA5A7;
    letter-spacing: .02em;
    text-align: center
}

.edubiz .visual-wrap {
    padding: 80px 24px;
    background: #fff
}

.edubiz .visual-inner {
    max-width: 1024px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: center
}

.edubiz .visual-img-col {
    flex: 0 0 420px;
    position: relative
}

.edubiz .visual-img-frame {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 52px 0 #8aa5a71f
}

.edubiz .visual-img-frame img {
    width: 420px;
    height: 300px;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform .65s cubic-bezier(0.22, 1, 0.36, 1)
}

.edubiz .visual-img-col:hover .visual-img-frame img {
    transform: scale(1.03)
}

.edubiz .visual-accent-bar {
    position: absolute;
    bottom: -8px;
    right: -8px;
    width: 80px;
    height: 80px;
    background: linear-gradient(to left, #8AA5A7, transparent);
    border-radius: 8px;
    pointer-events: none
}

.edubiz .visual-text-col {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    gap: 24px
}

.edubiz .visual-text-col h3 {
    font-size: 50px;
    line-height: 1.2;
    font-weight: 800;
    color: #1e2d33;
    letter-spacing: .01em;
    margin: 0
}

.edubiz .visual-text-col p {
    font-size: 14px;
    line-height: 1.65;
    color: #546670;
    letter-spacing: .01em;
    margin: 0
}

.edubiz .accent-link {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    line-height: 1.45;
    font-weight: 700;
    color: #546670;
    text-decoration: none;
    letter-spacing: .02em;
    border-bottom: 2px solid #8AA5A7;
    padding-bottom: 4px;
    transition: color .45s ease-in-out, border-color .45s ease-in-out
}

.edubiz .accent-link:hover {
    color: #1e2d33;
    border-color: #546670
}

@media (max-width: 1024px) {
    .edubiz .prog-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .edubiz .hz-heading {
        font-size: 50px
    }
}

@media (max-width: 768px) {
    .edubiz .hz-inner {
        flex-direction: column;
        align-items: flex-start
    }

    .edubiz .hz-right {
        flex: 0 0 auto;
        width: 100%
    }

    .edubiz .hz-img-wrap img {
        width: 100%;
        height: 240px
    }

    .edubiz .prog-grid {
        grid-template-columns: 1fr
    }

    .edubiz .expert-inner {
        flex-direction: column;
        align-items: center
    }

    .edubiz .visual-inner {
        flex-direction: column
    }

    .edubiz .visual-img-col {
        flex: 0 0 auto;
        width: 100%
    }

    .edubiz .visual-img-frame img {
        width: 100%;
        height: 220px
    }

    .edubiz .metrics-inner {
        gap: 24px
    }

    .edubiz .hz-stat {
        position: static;
        margin-top: 16px;
        display: inline-block
    }
}

@media (max-width: 480px) {
    .edubiz .hz-heading {
        font-size: 50px
    }

    .edubiz .hz-wrap {
        padding: 40px 16px 24px
    }

    .edubiz .prog-wrap,
    .edubiz .expert-wrap,
    .edubiz .visual-wrap {
        padding: 40px 16px
    }

    .edubiz .card-footer {
        flex-direction: column;
        align-items: flex-start
    }
}

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

.successPage .successCard {
    max-width: 1024px;
    width: 100%;
    background: #EBE7DB;
    border: 1px solid #8AA5A7;
    border-radius: 8px;
    box-shadow: 0 7px 14px 0 #54667014;
    padding: 80px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px
}

.successPage .successIcon {
    width: 64px;
    height: 64px;
    flex-shrink: 0
}

.successPage .successIcon circle {
    fill: none;
    stroke: #546670;
    stroke-width: 2.5
}

.successPage .successIcon polyline {
    fill: none;
    stroke: #546670;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round
}

.successPage .successHeading {
    font-size: 50px;
    line-height: 1.2;
    letter-spacing: .01em;
    color: #546670;
    font-weight: 700;
    margin: 0
}

.successPage .successSubtext {
    font-size: 20px;
    line-height: 1.45;
    letter-spacing: .01em;
    color: #546670;
    max-width: 560px;
    margin: 0
}

.successPage .successDivider {
    width: 80px;
    height: 2px;
    background: linear-gradient(to left, #8AA5A7, transparent);
    border-radius: 4px
}

.successPage .successNote {
    font-size: 14px;
    line-height: 1.65;
    letter-spacing: .02em;
    color: #546670;
    max-width: 480px;
    margin: 0
}

.successPage .successBackBtn {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    padding: 16px 40px;
    background: #546670;
    color: #fff;
    font-size: 14px;
    line-height: 1.2;
    letter-spacing: .02em;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 3px 6px 0 #54667014;
    position: relative;
    overflow: hidden;
    transition: color .5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow .6s ease-in-out
}

.successPage .successBackBtn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #8AA5A7 0%, transparent 100%);
    opacity: 0;
    transition: opacity .55s cubic-bezier(0.22, 1, 0.36, 1);
    border-radius: 4px
}

.successPage .successBackBtn:hover::before {
    opacity: 1
}

.successPage .successBackBtn:hover {
    box-shadow: 0 8px 52px 0 #5466701f
}

.successPage .successBackBtn:focus {
    outline: 2px solid #546670;
    outline-offset: 3px
}

.successPage .successBackBtn .btnArrow {
    display: inline-block;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    position: relative;
    z-index: 1
}

.successPage .successBackBtn .btnLabel {
    position: relative;
    z-index: 1
}

@media (max-width: 768px) {
    .successPage {
        padding: 40px 16px
    }

    .successPage .successCard {
        padding: 40px 24px;
        gap: 16px
    }

    .successPage .successHeading {
        font-size: 50px
    }

    .successPage .successSubtext {
        font-size: 20px
    }
}

@media (max-width: 480px) {
    .successPage .successHeading {
        font-size: 20px
    }

    .successPage .successCard {
        padding: 40px 16px
    }
}