* {
    box-sizing: border-box
}

body {
    margin: 0;
    min-height: 100dvh;
    overflow-x: hidden;
    font-family: "Oxygen", sans-serif
}

.sitehead {
    position: relative;
    background: #fff;
    box-shadow: 1px 6px 18px 1px #5345c214;
    z-index: 100
}

.sitehead-strip {
    background: linear-gradient(90deg, #5345C2 0%, #6a5ed4 100%);
    padding: 4px 0
}

.sitehead-strip-inner {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 16px
}

.striplocate {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #FAFBE9;
    font-family: "Oxygen", sans-serif;
    font-size: 14px;
    line-height: 1.4
}

.striplocate .pi {
    font-size: 14px;
    color: #F55B00
}

.sitehead-body {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: stretch;
    min-height: 88px
}

.branddeck {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 32px 16px 0;
    border-top: 2px solid #5345C2;
    border-bottom: 2px solid #5345C2;
    flex-shrink: 0
}

.branddeck-divider {
    width: 1px;
    background: linear-gradient(180deg, transparent 0%, #5345C2 30%, #5345C2 70%, transparent 100%);
    align-self: stretch;
    flex-shrink: 0
}

.brandlogobox {
    background: #FAFBE9;
    border-radius: 8px;
    padding: 8px;
    box-shadow: 1px 3px 6px 1px #5345c20f;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px
}

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

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

.brandnametext {
    font-family: "Nunito", sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #5345C2;
    line-height: 1.2;
    letter-spacing: -.5px
}

.brandtagline {
    font-family: "Oxygen", sans-serif;
    font-size: 14px;
    color: #F55B00;
    line-height: 1.4;
    font-weight: 400
}

.navpod {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 16px 0 16px 32px
}

.navmenu {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0
}

.navmenu li {
    position: relative
}

.navmenu li a {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 16px;
    font-family: "Oxygen", sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #2a2060;
    text-decoration: none;
    border-radius: 8px;
    line-height: 1.4;
    transition: background-color .6s cubic-bezier(0.25, 0.46, 0.45, 0.94), color .5s ease;
    min-height: 44px
}

.navmenu li a:hover {
    background-color: #FAFBE9;
    color: #5345C2
}

.navmenu li a:focus {
    outline: none;
    border-bottom: 4px solid #5345C2
}

.navmenu li a .pi {
    font-size: 14px;
    color: #5345C2
}

.navitem-hasub>a::after {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    border-right: 2px solid #5345C2;
    border-bottom: 2px solid #5345C2;
    transform: rotate(45deg);
    margin-left: 4px;
    margin-top: -3px;
    transition: transform .5s ease
}

.navitem-hasub:hover>a::after {
    transform: rotate(-135deg);
    margin-top: 3px
}

.submenudeck {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    min-width: 240px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 1px 9px 44px 1px #5345c224;
    border-top: 3px solid #5345C2;
    padding: 8px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 200
}

.navitem-hasub:hover .submenudeck,
.submenudeck:hover {
    opacity: 1;
    pointer-events: auto
}

.submenudeck ul {
    list-style: none;
    margin: 0;
    padding: 0
}

.submenudeck ul li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    font-family: "Oxygen", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #2a2060;
    text-decoration: none;
    border-radius: 8px;
    line-height: 1.4;
    min-height: 44px;
    transition: background-color .6s ease, color .5s ease
}

.submenudeck ul li a:hover {
    background-color: #FAFBE9;
    color: #5345C2
}

.submenudeck ul li a:focus {
    outline: none;
    border-bottom: 4px solid #5345C2
}

.submenudeck ul li a .pi {
    color: #F55B00;
    font-size: 14px
}

.sitefooter {
    background: #2a2060;
    overflow: hidden
}

.footertop {
    max-width: 1024px;
    margin: 0 auto;
    padding: 64px 32px 32px;
    display: flex;
    align-items: flex-start;
    gap: 64px
}

.footerbranddeck {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px
}

.footerlogobox {
    background: #FAFBE9;
    border-radius: 8px;
    padding: 8px;
    box-shadow: 1px 3px 6px 1px #5345c20f;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px
}

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

.footerbrandname {
    font-family: "Nunito", sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #FAFBE9;
    line-height: 1.2;
    letter-spacing: -.5px
}

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

.footercontactheading {
    font-family: "Nunito", sans-serif;
    font-size: 19px;
    font-weight: 700;
    color: #F55B00;
    line-height: 1.4;
    letter-spacing: -.3px;
    text-transform: uppercase
}

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

.footercontactitem .pi {
    font-size: 16px;
    color: #5345C2;
    margin-top: 2px;
    flex-shrink: 0
}

.footercontacttext {
    font-family: "Oxygen", sans-serif;
    font-size: 16px;
    color: #FAFBE9;
    line-height: 1.6
}

.footercontacttext a {
    color: #FAFBE9;
    text-decoration: none;
    transition: color .55s ease
}

.footercontacttext a:hover {
    color: #F55B00
}

.footercontacttext a:focus {
    outline: none;
    border-bottom: 4px solid #F55B00
}

.footermid {
    border-top: 1px solid #fafbe91f;
    max-width: 1024px;
    margin: 0 auto;
    padding: 32px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center
}

.footermidlink {
    font-family: "Oxygen", sans-serif;
    font-size: 14px;
    color: #fafbe9a6;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 8px;
    line-height: 1.4;
    transition: color .6s cubic-bezier(0.25, 0.46, 0.45, 0.94), background-color .55s ease;
    min-height: 44px;
    display: inline-flex;
    align-items: center
}

.footermidlink:hover {
    color: #FAFBE9;
    background-color: #5345c240
}

.footermidlink:focus {
    outline: none;
    border-bottom: 4px solid #F55B00
}

.footerbottom {
    background: #0000002e;
    padding: 16px 32px
}

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

.footercopytext {
    font-family: "Oxygen", sans-serif;
    font-size: 14px;
    color: #fafbe980;
    line-height: 1.4
}

.footerlogoanchor {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: #FAFBE9;
    border-radius: 8px;
    box-shadow: 1px 3px 6px 1px #5345c20f;
    flex-shrink: 0
}

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

.cookiepopup {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 340px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 1px 9px 44px 1px #5345c224;
    border-top: 3px solid #5345C2;
    padding: 16px;
    z-index: 1500;
    display: none;
    transform: translateX(calc(100% + 64px));
    transition: transform .6s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.cookiepopup.showing {
    transform: translateX(0)
}

.cookiepopuptop {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 16px
}

.cookiepopuptop .pi {
    font-size: 19px;
    color: #5345C2;
    flex-shrink: 0;
    margin-top: 2px
}

.cookiemsg {
    font-family: "Oxygen", sans-serif;
    font-size: 14px;
    color: #2a2060;
    line-height: 1.6
}

.cookiemsg a {
    color: #5345C2;
    text-decoration: underline
}

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

.cookiebtnaccept {
    font-family: "Oxygen", sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #5345C2;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    text-decoration: underline;
    text-transform: uppercase;
    line-height: 1.4;
    transition: color .55s ease
}

.cookiebtnaccept:hover {
    color: #F55B00
}

.cookiebtnaccept:focus {
    outline: none;
    border-bottom: 4px solid #5345C2
}

.cookiebtndecline {
    font-family: "Oxygen", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #888;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    text-decoration: underline;
    text-transform: uppercase;
    line-height: 1.4;
    transition: color .55s ease
}

.cookiebtndecline:hover {
    color: #2a2060
}

.cookiebtndecline:focus {
    outline: none;
    border-bottom: 4px solid #5345C2
}

.prefdrawtab {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1400;
    display: none
}

.prefdrawbtn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #5345C2;
    color: #FAFBE9;
    border: none;
    border-radius: 0 8px 8px 0;
    padding: 8px 12px;
    font-family: "Oxygen", sans-serif;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    line-height: 1.4;
    box-shadow: 1px 6px 18px 1px #5345c214;
    transition: background-color .55s ease;
    writing-mode: vertical-rl;
    min-height: 44px
}

.prefdrawbtn:hover {
    background-color: #F55B00
}

.prefdrawbtn:focus {
    outline: none;
    border-bottom: 4px solid #FAFBE9
}

.prefdrawbtn .pi {
    font-size: 14px
}

.legal-area {
    max-width: 1024px;
    margin: 0 auto;
    padding: 64px 32px;
    color: #2a2a35
}

.legal-area h1 {
    font-size: 46px;
    line-height: 1.2;
    letter-spacing: -.02em;
    margin-bottom: 32px;
    margin-top: 0;
    color: #1b1730
}

.legal-area h2 {
    font-size: 33px;
    line-height: 1.2;
    letter-spacing: -.015em;
    margin-top: 64px;
    margin-bottom: 16px;
    color: #1b1730
}

.legal-area h3 {
    font-size: 24px;
    line-height: 1.4;
    letter-spacing: -.01em;
    margin-top: 32px;
    margin-bottom: 16px;
    color: #1b1730
}

.legal-area h4 {
    font-size: 19px;
    line-height: 1.4;
    letter-spacing: -.005em;
    margin-top: 32px;
    margin-bottom: 8px;
    color: #1b1730
}

.legal-area h5 {
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: 0;
    margin-top: 16px;
    margin-bottom: 8px;
    color: #1b1730;
    font-weight: 700
}

.legal-area h6 {
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: .02em;
    text-transform: uppercase;
    margin-top: 16px;
    margin-bottom: 8px;
    color: #5345C2;
    font-weight: 700
}

.legal-area p {
    font-size: 16px;
    line-height: 1.9;
    margin-top: 0;
    margin-bottom: 16px;
    color: #2a2a35
}

.legal-area ul {
    margin-top: 0;
    margin-bottom: 16px;
    padding-left: 32px;
    list-style: none
}

.legal-area ol {
    margin-top: 0;
    margin-bottom: 16px;
    padding-left: 32px;
    list-style: decimal
}

.legal-area ul li {
    font-size: 16px;
    line-height: 1.9;
    color: #2a2a35;
    margin-bottom: 8px;
    padding-left: 16px;
    position: relative
}

.legal-area ul li::before {
    content: "";
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 48px;
    background-color: #5345C2;
    position: absolute;
    left: -4px;
    top: 11px
}

.legal-area ol li {
    font-size: 16px;
    line-height: 1.9;
    color: #2a2a35;
    margin-bottom: 8px;
    padding-left: 8px
}

.legal-area ol li::marker {
    color: #5345C2;
    font-weight: 700
}

.legal-area em,
.legal-area i {
    font-style: italic;
    color: #3d3460
}

.legal-area a {
    color: #5345C2;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    transition: color .6s cubic-bezier(0.25, 0.46, 0.45, 0.94), text-decoration-color .5s ease;
    text-decoration-color: #5345c266
}

.legal-area a:hover {
    color: #F55B00;
    text-decoration-color: #f55b0080
}

.legal-area a:visited {
    color: #3d3460;
    text-decoration-color: #3d34604d
}

.legal-area hr {
    border: none;
    border-top: 1px solid #5345c226;
    margin-top: 32px;
    margin-bottom: 32px;
    height: 0
}

.legal-area div {
    font-size: 16px;
    line-height: 1.6
}

.legal-area div.notice,
.legal-area div[class*="notice"] {
    background-color: #FAFBE9;
    border-radius: 8px;
    padding: 16px 32px;
    margin-bottom: 16px;
    box-shadow: 1px 3px 6px 1px #5345c20f
}

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

.consult .pageinner {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 32px
}

.consult .titlesplit {
    display: flex;
    flex-direction: row;
    min-height: 0;
    position: relative
}

.consult .titlesplit .leftzone {
    flex: 0 0 60%;
    background: #5345C2;
    padding: 64px 32px 64px 64px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.consult .titlesplit .leftzone .circledeco {
    position: absolute;
    border-radius: 48px;
    background: #ffffff0d;
    pointer-events: none
}

.consult .titlesplit .leftzone .circle1 {
    width: 220px;
    height: 220px;
    top: -60px;
    left: -60px;
    border-radius: 50%
}

.consult .titlesplit .leftzone .circle2 {
    width: 140px;
    height: 140px;
    bottom: 32px;
    right: 64px;
    border-radius: 50%;
    background: #f55b001f
}

.consult .titlesplit .leftzone .circle3 {
    width: 80px;
    height: 80px;
    top: 50%;
    right: 32px;
    border-radius: 50%;
    background: #ffffff12
}

.consult .titlesplit .sublabel {
    font-size: 14px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #fafbe9b3;
    margin-bottom: 16px;
    font-weight: 600
}

.consult .titlesplit .maintitle {
    font-size: 62px;
    line-height: 1.2;
    letter-spacing: -.03em;
    color: #FAFBE9;
    margin: 0;
    font-weight: 800
}

.consult .titlesplit .rightzone {
    flex: 0 0 40%;
    background: #F55B00;
    padding: 64px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden
}

.consult .titlesplit .rightzone .circle4 {
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: #5345c226;
    top: -40px;
    right: -40px;
    pointer-events: none
}

.consult .titlesplit .rightzone .circle5 {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #fafbe914;
    bottom: 16px;
    left: 16px;
    pointer-events: none
}

.consult .titlesplit .imgwrap {
    width: 100%;
    max-width: 280px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    box-shadow: 1px 9px 44px 1px #5345c224
}

.consult .titlesplit .imgwrap img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    transition: filter .6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: saturate(0.5) sepia(0.3) hue-rotate(20deg)
}

.consult .titlesplit .imgwrap:hover img {
    filter: saturate(1) sepia(0) hue-rotate(0deg)
}

.consult .titlesplit .imgwrap .imgoverlay {
    position: absolute;
    inset: 0;
    background: #5345c259;
    border-radius: 8px;
    transition: opacity .7s ease;
    pointer-events: none
}

.consult .titlesplit .imgwrap:hover .imgoverlay {
    opacity: 0
}

@keyframes splitopen {
    0% {
        clip-path: inset(0 50% 0 50%);
        opacity: .4
    }

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

.consult .titlesplit .leftzone {
    animation: splitopen .7s cubic-bezier(0.25, 0.46, 0.45, 0.94) both
}

.consult .titlesplit .rightzone {
    animation: splitopen .65s cubic-bezier(0.25, 0.46, 0.45, 0.94) .1s both
}

.consult .diag1 {
    width: 100%;
    height: 48px;
    background: #FAFBE9;
    clip-path: polygon(0 0, 100% 40%, 100% 100%, 0 100%);
    margin-top: -2px
}

.consult .aboutrow {
    background: #FAFBE9;
    padding: 64px 0 32px
}

.consult .aboutrow .innerrow {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    flex-direction: row;
    gap: 64px;
    align-items: flex-start
}

.consult .aboutrow .leftcol {
    flex: 0 0 60%
}

.consult .aboutrow .rightcol {
    flex: 1;
    border: 2px dashed #5345C2;
    border-radius: 8px;
    padding: 32px;
    background: #fff;
    box-shadow: 1px 3px 6px 1px #5345c20f
}

.consult .accentline {
    width: 40px;
    height: 3px;
    background: #F55B00;
    border-radius: 8px;
    margin-bottom: 16px
}

.consult .aboutrow .sectionlabel {
    font-size: 14px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #F55B00;
    font-weight: 700;
    margin-bottom: 8px
}

.consult .aboutrow .sectionhead {
    font-size: 33px;
    line-height: 1.2;
    letter-spacing: -.02em;
    color: #1a1010;
    font-weight: 800;
    margin: 0 0 16px
}

.consult .aboutrow .firstpara {
    font-size: 16px;
    line-height: 1.6;
    color: #2a2020;
    padding: 16px;
    background: #5345c20d;
    border-left: 3px solid #5345C2;
    border-radius: 0 8px 8px 0;
    margin-bottom: 16px;
    border-top: 1px solid #5345c21a;
    border-bottom: 1px solid #5345c21a
}

.consult .aboutrow .bodypara {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 0
}

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

.consult .aboutrow .featurelist li {
    font-size: 16px;
    line-height: 1.4;
    color: #2a2020;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 8px;
    padding: 8px 0
}

.consult .aboutrow .featurelist li:nth-child(odd) {
    color: #5345C2;
    font-weight: 600
}

.consult .aboutrow .featurelist li:nth-child(even) {
    color: #333
}

.consult .aboutrow .featurelist .iconmark {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-top: 2px
}

.consult .aboutrow .featurelist li:nth-child(odd) .iconmark circle {
    fill: #5345C2
}

.consult .aboutrow .featurelist li:nth-child(even) .iconmark circle {
    fill: #F55B00
}

.consult .diag2 {
    width: 100%;
    height: 48px;
    background: #fff;
    clip-path: polygon(0 40%, 100% 0, 100% 100%, 0 100%);
    background: #FAFBE9;
    margin-bottom: -2px
}

.consult .diag2b {
    width: 100%;
    height: 48px;
    background: #fff;
    clip-path: polygon(0 0, 100% 40%, 100% 100%, 0 100%);
    margin-top: -2px
}

.consult .rankedblock {
    background: #fff;
    padding: 64px 0
}

.consult .rankedblock .innerrow {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 32px
}

.consult .rankedblock .toprow {
    display: flex;
    flex-direction: row;
    gap: 64px;
    align-items: flex-start;
    margin-bottom: 64px
}

.consult .rankedblock .topmeta {
    flex: 0 0 40%
}

.consult .rankedblock .topdesc {
    flex: 1;
    padding-top: 8px
}

.consult .rankedblock .sectionlabel {
    font-size: 14px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #5345C2;
    font-weight: 700;
    margin-bottom: 8px
}

.consult .rankedblock .rankhead {
    font-size: 33px;
    line-height: 1.2;
    letter-spacing: -.02em;
    color: #1a1010;
    font-weight: 800;
    margin: 0
}

.consult .rankedblock .descpara {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin: 0
}

.consult .rankedblock .quotephrase {
    font-size: 19px;
    line-height: 1.4;
    color: #5345C2;
    font-weight: 600;
    margin-top: 16px;
    position: relative;
    padding: 0 8px
}

.consult .rankedblock .quotephrase::before,
.consult .rankedblock .quotephrase::after {
    content: "";
    display: inline-block;
    width: 12px;
    height: 12px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M0 6c0-3.3 2-5.5 5-6L6 1.5C4.5 2 3.5 3 3.5 4.5H5V9H0V6zm7 0c0-3.3 2-5.5 5-6L13 1.5C11.5 2 10.5 3 10.5 4.5H12V9H7V6z' fill='%23F55B00'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    vertical-align: middle;
    margin: 0 4px
}

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

.consult .rankeditem {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    padding: 16px;
    border-radius: 8px;
    background: #FAFBE9;
    box-shadow: 1px 3px 6px 1px #5345c20f;
    transition: box-shadow .55s ease, background .6s ease
}

.consult .rankeditem:hover {
    box-shadow: 1px 6px 18px 1px #5345c214;
    background: #fff
}

.consult .ranknum {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: #5345C2;
    color: #FAFBE9;
    font-size: 19px;
    font-weight: 800;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    letter-spacing: -.02em
}

.consult .ranknum.secondary {
    background: #F55B00
}

.consult .rankmeta {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.consult .rankname {
    font-size: 16px;
    font-weight: 700;
    color: #1a1010;
    line-height: 1.2
}

.consult .rankbartail {
    height: 6px;
    background: #5345c21a;
    border-radius: 8px;
    overflow: hidden;
    width: 100%
}

.consult .rankbar {
    height: 100%;
    border-radius: 8px;
    background: #5345C2;
    transition: width .7s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.consult .rankeditem:nth-child(even) .rankbar {
    background: #F55B00
}

.consult .rankpct {
    font-size: 14px;
    color: #888;
    white-space: nowrap;
    flex-shrink: 0;
    font-weight: 600
}

.consult .stepsblock {
    background: #5345C2;
    padding: 64px 0;
    position: relative
}

.consult .stepsblock .innerrow {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 32px
}

.consult .stepsblock .stepstop {
    margin-bottom: 64px;
    text-align: center
}

.consult .stepsblock .sectionlabel {
    font-size: 14px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #fafbe999;
    font-weight: 700;
    margin-bottom: 8px
}

.consult .stepsblock .stepshead {
    font-size: 33px;
    line-height: 1.2;
    letter-spacing: -.02em;
    color: #FAFBE9;
    font-weight: 800;
    margin: 0
}

.consult .stepsblock .accentline {
    margin: 16px auto 0
}

.consult .threecols {
    display: flex;
    flex-direction: row;
    gap: 32px;
    align-items: flex-end
}

.consult .stepcol {
    flex: 1;
    border-radius: 8px;
    background: #fafbe912;
    border: 1px solid #fafbe926;
    padding: 32px;
    transition: background .65s ease, box-shadow .55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
    gap: 16px
}

.consult .stepcol:hover {
    background: #fafbe921;
    box-shadow: 1px 6px 18px 1px #f55b0014
}

.consult .stepcol.tall {
    padding-top: 64px
}

.consult .stepcol.taller {
    padding-top: 96px
}

.consult .stepcol .stepnum {
    font-size: 46px;
    font-weight: 800;
    letter-spacing: -.04em;
    line-height: 1.2;
    color: #fafbe92e
}

.consult .stepcol .stepicon {
    width: 44px;
    height: 44px
}

.consult .stepcol .steptitle {
    font-size: 19px;
    font-weight: 700;
    color: #FAFBE9;
    line-height: 1.4;
    margin: 0
}

.consult .stepcol .steptext {
    font-size: 14px;
    line-height: 1.6;
    color: #fafbe9bf;
    margin: 0
}

.consult .stepcol .steplink {
    font-size: 14px;
    font-weight: 700;
    color: #F55B00;
    text-transform: uppercase;
    letter-spacing: .08em;
    text-decoration: none;
    border-bottom: 1px solid #f55b004d;
    padding-bottom: 2px;
    transition: border-color .5s ease, color .5s ease;
    align-self: flex-start
}

.consult .stepcol .steplink:hover {
    border-color: #F55B00;
    color: #FAFBE9
}

.consult .diag3 {
    width: 100%;
    height: 48px;
    background: #fff;
    clip-path: polygon(0 0, 100% 40%, 100% 100%, 0 100%)
}

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

    .consult .titlesplit .leftzone {
        flex: none;
        padding: 64px 32px
    }

    .consult .titlesplit .rightzone {
        flex: none;
        padding: 32px
    }

    .consult .titlesplit .maintitle {
        font-size: 33px
    }

    .consult .aboutrow .innerrow {
        flex-direction: column;
        gap: 32px
    }

    .consult .aboutrow .leftcol {
        flex: none
    }

    .consult .rankedblock .toprow {
        flex-direction: column;
        gap: 32px
    }

    .consult .rankedblock .topmeta {
        flex: none
    }

    .consult .threecols {
        flex-direction: column;
        align-items: stretch
    }

    .consult .stepcol.tall,
    .consult .stepcol.taller {
        padding-top: 32px
    }
}

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

.contus .pagewrap {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 16px
}

.contus .titleblock {
    position: relative;
    background: linear-gradient(to bottom, transparent 0%, #5345C2 100%);
    padding: 64px 16px 48px
}

.contus .titleblock .cornerline-tl {
    position: absolute;
    top: 24px;
    left: 24px;
    width: 48px;
    height: 48px;
    border-top: 2px solid #5345c266;
    border-left: 2px solid #5345c266;
    border-radius: 8px 0 0 0;
    pointer-events: none
}

.contus .titleblock .cornerline-br {
    position: absolute;
    bottom: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    border-bottom: 2px solid #f55b0066;
    border-right: 2px solid #f55b0066;
    border-radius: 0 0 8px 0;
    pointer-events: none
}

.contus .titleblock .titlewrap {
    max-width: 1024px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 32px
}

.contus .titleblock .titleleft {
    flex: 1
}

.contus .titleblock .pretag {
    display: inline-block;
    font-size: 14px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #FAFBE9;
    background: #f55b0040;
    border: 1px solid #f55b0080;
    border-radius: 48px;
    padding: 4px 16px;
    margin-bottom: 16px
}

.contus .titleblock .maintitle {
    font-size: 46px;
    line-height: 1.2;
    letter-spacing: -.02em;
    color: #FAFBE9;
    margin: 0 0 16px
}

.contus .titleblock .maintitle .gradword {
    background: linear-gradient(135deg, #F55B00 0%, #FAFBE9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.contus .titleblock .titledesc {
    font-size: 16px;
    line-height: 1.6;
    color: #fafbe9d1;
    margin: 0;
    max-width: 480px
}

.contus .titleblock .imgside {
    flex-shrink: 0;
    width: 280px;
    position: relative
}

.contus .titleblock .imgside .imgframe {
    width: 280px;
    height: 220px;
    border-radius: 8px;
    overflow: hidden;
    position: relative
}

.contus .titleblock .imgside .imgframe img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: blur(0px);
    transition: filter .6s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.contus .titleblock .imgside .imgframe::after {
    content: '';
    position: absolute;
    inset: 0;
    background: #5345c261;
    border-radius: 8px;
    transition: background .7s ease;
    pointer-events: none
}

.contus .titleblock .imgside .imgframe:hover::after {
    background: #5345c214
}

.contus .titleblock .imgside .imgframe .edgeblur {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 60% at 50% 50%, transparent 40%, #5345c28c 100%);
    pointer-events: none;
    border-radius: 8px
}

.contus .svgdivider {
    width: 100%;
    overflow: hidden;
    line-height: 0;
    background: #5345C2
}

.contus .svgdivider svg {
    display: block;
    width: 100%
}

.contus .formarea {
    background: #FAFBE9;
    padding: 64px 16px;
    position: relative
}

.contus .formarea::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom, #5345c212, transparent);
    pointer-events: none
}

.contus .formarea .formgrid {
    max-width: 1024px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    gap: 64px;
    align-items: flex-start
}

.contus .formarea .formleftcol {
    flex: 1;
    min-width: 0
}

.contus .formarea .formrightcol {
    flex-shrink: 0;
    width: 300px
}

.contus .formarea .formtopline {
    width: 40px;
    height: 3px;
    background: #F55B00;
    border-radius: 8px;
    margin-bottom: 16px
}

.contus .formarea .formheading {
    font-size: 33px;
    line-height: 1.2;
    letter-spacing: -.02em;
    color: #1e1a3c;
    margin: 0 0 8px
}

.contus .formarea .formheading .underlineword {
    position: relative;
    display: inline-block
}

.contus .formarea .formheading .underlineword::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    right: 0;
    height: 3px;
    background: #5345C2;
    border-radius: 8px
}

.contus .formarea .formdesc {
    font-size: 16px;
    line-height: 1.6;
    color: #3a3560;
    margin: 0 0 32px;
    padding: 12px 16px;
    background: #5345c20f;
    border-left: 3px solid #5345C2;
    border-radius: 0 8px 8px 0;
    border-top: 1px solid #5345c21f;
    border-bottom: 1px solid #5345c21f
}

.contus .formarea .editform {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.contus .formarea .fieldgroup {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.contus .formarea .fieldlabel {
    font-size: 14px;
    line-height: 1.4;
    color: #1e1a3c;
    letter-spacing: .04em;
    text-transform: uppercase;
    font-weight: 600
}

.contus .formarea .fieldinput {
    width: 100%;
    font-size: 16px;
    line-height: 1.6;
    color: #1e1a3c;
    background: #fff;
    border: 1px solid #5345c240;
    border-radius: 8px;
    padding: 12px 16px;
    outline: none;
    box-sizing: border-box;
    transition: border-color .55s ease, box-shadow .55s ease;
    box-shadow: 1px 3px 6px 1px #5345c20f
}

.contus .formarea .fieldinput::placeholder {
    color: #5345c259;
    transition: opacity .6s ease
}

.contus .formarea .fieldinput:focus::placeholder {
    opacity: 0
}

.contus .formarea .fieldinput:focus {
    border-color: #5345C2;
    box-shadow: 1px 6px 18px 1px #5345c214
}

.contus .formarea .radiogroup {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.contus .formarea .radiolabel {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    line-height: 1.4;
    color: #1e1a3c;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid #5345c22e;
    background: #fff;
    transition: background .5s ease, border-color .5s ease
}

.contus .formarea .radiolabel:hover {
    background: #5345c20f;
    border-color: #5345c266
}

.contus .formarea .radiolabel input[type="radio"] {
    accent-color: #5345C2;
    width: 18px;
    height: 18px;
    flex-shrink: 0
}

.contus .formarea .privacyrow {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 8px;
    padding: 8px 0
}

.contus .formarea .privacyrow input[type="checkbox"] {
    accent-color: #5345C2;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px
}

.contus .formarea .privacytext {
    font-size: 14px;
    line-height: 1.6;
    color: #3a3560
}

.contus .formarea .privacytext a {
    color: #5345C2;
    text-decoration: underline;
    text-decoration-color: #5345c266;
    transition: text-decoration-color .55s ease
}

.contus .formarea .privacytext a:hover {
    text-decoration-color: #5345C2
}

.contus .formarea .submitbtn {
    display: inline-block;
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #FAFBE9;
    background: #5345C2;
    border: none;
    border-radius: 8px;
    padding: 16px 32px;
    cursor: pointer;
    font-weight: 700;
    box-shadow: 1px 6px 18px 1px #5345c214;
    transition: background .6s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow .6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    align-self: flex-start
}

.contus .formarea .submitbtn:hover {
    background: #F55B00;
    box-shadow: 1px 9px 44px 1px #f55b0024
}

.contus .formarea .submitbtn:focus {
    outline: 3px solid #F55B00;
    outline-offset: 2px
}

.contus .formarea .submitbtn:active {
    background: #3d31a8
}

.contus .formarea .contactsidebox {
    background: #fff;
    border-radius: 8px;
    border: 1px solid #5345c224;
    box-shadow: 1px 6px 18px 1px #5345c214;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 32px
}

.contus .formarea .sideboxtopline {
    width: 32px;
    height: 3px;
    background: #F55B00;
    border-radius: 8px;
    margin-bottom: -16px
}

.contus .formarea .sideboxheading {
    font-size: 19px;
    line-height: 1.4;
    color: #1e1a3c;
    letter-spacing: -.01em;
    margin: 0
}

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

.contus .formarea .contactitemlist li {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    line-height: 1.6;
    color: #3a3560
}

.contus .formarea .contactitemlist li:nth-child(odd) {
    padding: 8px;
    background: #5345c20a;
    border-radius: 8px
}

.contus .formarea .contactitemlist li:nth-child(even) {
    padding: 8px;
    background: #f55b000a;
    border-radius: 8px
}

.contus .formarea .contacticonwrap {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    background: #5345C2;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center
}

.contus .formarea .contacticonwrap i {
    color: #FAFBE9;
    font-size: 14px
}

.contus .formarea .contactitemtext {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.contus .formarea .contactitemlabel {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: #1e1a3c80;
    line-height: 1.2
}

.contus .formarea .contactitemval {
    font-size: 14px;
    line-height: 1.4;
    color: #1e1a3c;
    word-break: break-word
}

.contus .formarea .contactitemval a {
    color: #5345C2;
    text-decoration: none;
    transition: color .55s ease
}

.contus .formarea .contactitemval a:hover {
    color: #F55B00
}

.contus .svgdivider2 {
    width: 100%;
    overflow: hidden;
    line-height: 0;
    background: #FAFBE9
}

.contus .svgdivider2 svg {
    display: block;
    width: 100%
}

.contus .glossarea {
    background: #fff;
    padding: 64px 16px;
    position: relative
}

.contus .glossarea::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, #f55b000d, transparent);
    pointer-events: none
}

.contus .glossarea .glosswrap {
    max-width: 1024px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    gap: 64px;
    align-items: flex-start
}

.contus .glossarea .glossleft {
    flex-shrink: 0;
    width: 320px
}

.contus .glossarea .glossright {
    flex: 1;
    min-width: 0
}

.contus .glossarea .glosstopline {
    width: 40px;
    height: 3px;
    background: #5345C2;
    border-radius: 8px;
    margin-bottom: 16px
}

.contus .glossarea .glossheading {
    font-size: 33px;
    line-height: 1.2;
    letter-spacing: -.02em;
    color: #1e1a3c;
    margin: 0 0 16px
}

.contus .glossarea .glossdesc {
    font-size: 16px;
    line-height: 1.6;
    color: #3a3560;
    margin: 0
}

.contus .glossarea .deflist {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.contus .glossarea .defitem {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 16px;
    align-items: baseline;
    padding: 16px;
    border-radius: 8px;
    transition: background .6s ease
}

.contus .glossarea .defitem:nth-child(odd) {
    background: #5345c20d;
    border: 1px solid #5345c21a
}

.contus .glossarea .defitem:nth-child(even) {
    background: #f55b000a;
    border: 1px solid #f55b001a
}

.contus .glossarea .defitem:hover {
    background: #5345c217
}

.contus .glossarea .defterm {
    font-size: 14px;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: #5345C2;
    font-weight: 700
}

.contus .glossarea .defval {
    font-size: 16px;
    line-height: 1.6;
    color: #1e1a3c
}

.contus .glossarea .dotsdeco {
    position: absolute;
    right: 32px;
    bottom: 32px;
    display: grid;
    grid-template-columns: repeat(6, auto);
    gap: 8px;
    pointer-events: none;
    opacity: .22
}

.contus .glossarea .dotsdeco span {
    display: block;
    border-radius: 48px;
    background: #5345C2
}

@keyframes gentleshake {

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

    15% {
        transform: translateX(-3px)
    }

    30% {
        transform: translateX(3px)
    }

    45% {
        transform: translateX(-2px)
    }

    60% {
        transform: translateX(2px)
    }

    75% {
        transform: translateX(-1px)
    }
}

.contus .formarea .submitbtn {
    animation: gentleshake 4.5s 3s ease infinite
}

.contus .formarea .submitbtn:hover {
    animation: none
}

@media (max-width: 720px) {
    .contus .titleblock .titlewrap {
        flex-direction: column
    }

    .contus .titleblock .imgside {
        width: 100%
    }

    .contus .titleblock .imgside .imgframe {
        width: 100%
    }

    .contus .titleblock .maintitle {
        font-size: 33px
    }

    .contus .formarea .formgrid {
        flex-direction: column;
        gap: 32px
    }

    .contus .formarea .formrightcol {
        width: 100%
    }

    .contus .glossarea .glosswrap {
        flex-direction: column;
        gap: 32px
    }

    .contus .glossarea .glossleft {
        width: 100%
    }

    .contus .glossarea .defitem {
        grid-template-columns: 1fr;
        gap: 4px
    }
}

.baze {
    max-width: 1024px;
    margin: 0 auto;
    overflow-x: clip
}

.baze .divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 0
}

.baze .divider span {
    display: block;
    width: 48px;
    height: 1px;
    background: #5345C2;
    opacity: .3
}

.baze .divider svg {
    flex-shrink: 0
}

.baze .titlblk {
    padding: 64px 32px 48px;
    text-align: center;
    border-bottom: 2px solid #F55B00;
    position: relative
}

.baze .titlblk::before {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: #5345C2;
    margin: 0 auto 32px
}

.baze .titlimg {
    width: 100%;
    max-width: 680px;
    height: 260px;
    object-fit: cover;
    border-radius: 8px;
    margin: 0 auto 32px;
    display: block;
    transition: opacity .6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 1px 6px 18px 1px #5345c214
}

.baze .titlimg:hover {
    opacity: .88
}

.baze .titlimgwrap {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 680px
}

.baze .titlimgwrap::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #5345c238;
    border-radius: 8px;
    transition: opacity .7s ease;
    pointer-events: none
}

.baze .titlimgwrap:hover::after {
    opacity: 0
}

.baze .titlh1 {
    font-size: 62px;
    line-height: 1.2;
    letter-spacing: -.03em;
    color: #1a1200;
    color: #110e2d;
    margin: 0 0 16px
}

.baze .titlpunct {
    color: #F55B00
}

.baze .titlsub {
    font-size: 19px;
    line-height: 1.6;
    color: #2c2a3e;
    max-width: 560px;
    margin: 0 auto
}

.baze .titlani {
    display: inline-block
}

.baze .titlani span {
    display: inline-block;
    opacity: 0;
    animation: charfade .05s ease forwards
}

@keyframes charfade {
    to {
        opacity: 1
    }
}

.baze .titlblk {
    animation: bgtone 15s linear infinite
}

@keyframes bgtone {
    0% {
        background: #FAFBE9
    }

    50% {
        background: #f0f1f7
    }

    100% {
        background: #FAFBE9
    }
}

.baze .numsec {
    padding: 64px 32px;
    background: #110e2d
}

.baze .numseclabel {
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #F55B00;
    margin: 0 0 32px
}

.baze .numrow {
    display: flex;
    flex-direction: row;
    gap: 32px;
    flex-wrap: wrap
}

.baze .numcard {
    flex: 1 1 180px;
    border-top: 2px solid #f55b0066;
    padding: 32px 16px 32px 0
}

.baze .numval {
    font-size: 46px;
    line-height: 1.2;
    letter-spacing: -.02em;
    color: #FAFBE9;
    margin: 0 0 8px
}

.baze .numval em {
    font-style: normal;
    color: #F55B00
}

.baze .numdesc {
    font-size: 14px;
    line-height: 1.6;
    color: #a8a5bf;
    margin: 0
}

.baze .expsec {
    padding: 64px 32px;
    background: #FAFBE9
}

.baze .exptopline {
    display: block;
    width: 40px;
    height: 3px;
    background: #5345C2;
    margin-bottom: 16px
}

.baze .exph2 {
    font-size: 33px;
    line-height: 1.2;
    letter-spacing: -.02em;
    color: #110e2d;
    margin: 0 0 32px;
    max-width: 480px
}

.baze .expgrid {
    display: flex;
    flex-direction: row;
    gap: 32px;
    align-items: flex-start;
    flex-wrap: wrap
}

.baze .exptextcol {
    flex: 1 1 320px
}

.baze .expfirstp {
    font-size: 16px;
    line-height: 1.6;
    color: #110e2d;
    margin: 0 0 16px;
    padding: 16px;
    background: #fff;
    border-left: 3px solid #5345C2;
    border-top: 1px solid #5345c22e;
    border-radius: 8px;
    box-shadow: 1px 3px 6px 1px #5345c20f
}

.baze .expp {
    font-size: 16px;
    line-height: 1.6;
    color: #2c2a3e;
    margin: 0 0 16px
}

.baze .expimgcol {
    flex: 0 0 300px
}

.baze .expimgwrap {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 1px 9px 44px 1px #5345c224
}

.baze .expimgwrap::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #f55b0040;
    transition: opacity .65s ease;
    pointer-events: none
}

.baze .expimgwrap:hover::after {
    opacity: 0
}

.baze .expimg {
    width: 300px;
    height: 380px;
    object-fit: cover;
    display: block;
    transition: transform .7s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.baze .expimgwrap:hover .expimg {
    transform: scale(1.03)
}

.baze .expquote {
    margin: 32px 0 0;
    padding: 0
}

.baze .expquotetxt {
    font-size: 24px;
    line-height: 1.4;
    color: #5345C2;
    font-style: italic
}

.baze .expquotetxt::before {
    content: '\201C';
    font-size: 33px;
    line-height: 1;
    color: #F55B00;
    display: inline;
    margin-right: 4px
}

.baze .expquotetxt::after {
    content: '\201D';
    font-size: 33px;
    line-height: 1;
    color: #F55B00;
    display: inline;
    margin-left: 4px
}

.baze .hesitsec {
    padding: 48px 32px;
    background: #fff;
    background-image: radial-gradient(ellipse 80% 60% at 85% 40%, #f55b0012 0%, #f55b0000 70%), radial-gradient(ellipse 50% 40% at 90% 80%, #5345c20f 0%, transparent 65%)
}

.baze .hesittopline {
    display: block;
    width: 40px;
    height: 3px;
    background: #F55B00;
    margin-bottom: 16px
}

.baze .hesith2 {
    font-size: 33px;
    line-height: 1.2;
    letter-spacing: -.02em;
    color: #110e2d;
    margin: 0 0 32px
}

.baze .hesitdual {
    display: flex;
    flex-direction: row;
    gap: 32px;
    flex-wrap: wrap
}

.baze .hesitside {
    flex: 1 1 280px;
    padding: 32px;
    border-radius: 8px
}

.baze .hesitside.doubt {
    background: #FAFBE9;
    border-top: 3px solid #F55B00;
    box-shadow: 1px 6px 18px 1px #f55b0014
}

.baze .hesitside.answer {
    background: #110e2d;
    border-top: 3px solid #5345C2;
    box-shadow: 1px 9px 44px 1px #5345c224
}

.baze .hesitsideh {
    font-size: 19px;
    line-height: 1.4;
    letter-spacing: -.01em;
    margin: 0 0 16px
}

.baze .hesitside.doubt .hesitsideh {
    color: #F55B00
}

.baze .hesitside.answer .hesitsideh {
    color: #FAFBE9
}

.baze .hesitsidep {
    font-size: 16px;
    line-height: 1.6;
    margin: 0
}

.baze .hesitside.doubt .hesitsidep {
    color: #2c2a3e
}

.baze .hesitside.answer .hesitsidep {
    color: #c8c5e0
}

.baze .hesitsidep+.hesitsidep {
    margin-top: 16px
}

.baze .peopsec {
    padding: 64px 32px;
    background: #5345C2
}

.baze .peoptopline {
    display: block;
    width: 40px;
    height: 3px;
    background: #F55B00;
    margin-bottom: 16px
}

.baze .peoph2 {
    font-size: 33px;
    line-height: 1.2;
    letter-spacing: -.02em;
    color: #FAFBE9;
    margin: 0 0 32px
}

.baze .peoplrow {
    display: flex;
    flex-direction: row;
    gap: 32px;
    flex-wrap: wrap
}

.baze .peopcard {
    flex: 1 1 260px;
    background: #fafbe912;
    border-radius: 8px;
    padding: 32px;
    border: 1px solid #fafbe926;
    transition: background .55s ease
}

.baze .peopcard:hover {
    background: #fafbe921
}

.baze .peopiconwrap {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f55b0033;
    border-radius: 8px
}

.baze .peoph4 {
    font-size: 19px;
    line-height: 1.4;
    color: #FAFBE9;
    margin: 0 0 8px
}

.baze .peoprole {
    font-size: 14px;
    line-height: 1.4;
    color: #F55B00;
    margin: 0 0 16px;
    letter-spacing: .05em;
    text-transform: uppercase
}

.baze .peop p {
    font-size: 16px;
    line-height: 1.6;
    color: #c8c5e0;
    margin: 0
}

.baze .peopimgcol {
    flex: 0 0 280px;
    display: flex;
    flex-direction: column;
    gap: 16px
}

.baze .peopimgwrap {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 1px 6px 18px 1px #5345c214
}

.baze .peopimgwrap::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #5345c259;
    transition: opacity .6s ease;
    pointer-events: none
}

.baze .peopimgwrap:hover::after {
    opacity: 0
}

.baze .peopimg {
    width: 280px;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform .7s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.baze .peopimgwrap:hover .peopimg {
    transform: scale(1.04)
}

.baze .condsec {
    padding: 64px 32px;
    background: #FAFBE9
}

.baze .condtopline {
    display: block;
    width: 40px;
    height: 3px;
    background: #5345C2;
    margin-bottom: 16px
}

.baze .condh2 {
    font-size: 33px;
    line-height: 1.2;
    letter-spacing: -.02em;
    color: #110e2d;
    margin: 0 0 8px
}

.baze .condlead {
    font-size: 16px;
    line-height: 1.6;
    color: #2c2a3e;
    max-width: 520px;
    margin: 0 0 32px
}

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

.baze .condlist li {
    font-size: 16px;
    line-height: 1.6;
    color: #110e2d;
    padding: 16px;
    border-radius: 8px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px
}

.baze .condlist li:nth-child(odd) {
    background: #fff;
    border: 1px solid #5345c21f
}

.baze .condlist li:nth-child(even) {
    background: #f0eefb;
    border: 1px solid #5345c22e
}

.baze .condicon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    margin-top: 2px
}

.baze .condnotetxt {
    font-size: 16px;
    line-height: 1.6;
    color: #2c2a3e;
    padding: 16px;
    background: #fff;
    border-radius: 8px;
    border-top: 2px solid #F55B00;
    border-right: 1px solid #f55b001f;
    border-bottom: 1px solid #f55b001f;
    border-left: 1px solid #f55b001f;
    box-shadow: 1px 3px 6px 1px #f55b000f;
    margin: 0
}

.baze .bracketwrap {
    position: relative;
    padding: 0 32px
}

.baze .bracketwrap::before,
.baze .bracketwrap::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 8px;
    border-radius: 0
}

.baze .bracketwrap::before {
    left: 0;
    border-left: 3px solid #5345c240;
    border-top: 3px solid #5345c240;
    border-bottom: 3px solid #5345c240;
    border-radius: 8px 0 0 8px
}

.baze .bracketwrap::after {
    right: 0;
    border-right: 3px solid #5345c240;
    border-top: 3px solid #5345c240;
    border-bottom: 3px solid #5345c240;
    border-radius: 0 8px 8px 0
}

.baze .bigline {
    font-size: 46px;
    line-height: 1.2;
    letter-spacing: -.02em;
    color: #5345C2;
    margin: 0 0 8px;
    display: block
}

.baze .textlink {
    color: #5345C2;
    text-decoration: underline;
    text-decoration-color: #5345c24d;
    transition: text-decoration-color .55s ease, color .55s ease
}

.baze .textlink:hover {
    color: #F55B00;
    text-decoration-color: #F55B00
}

.baze .btnprimary {
    display: inline-block;
    padding: 16px 32px;
    background: #5345C2;
    color: #fff;
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: .1em;
    text-transform: uppercase;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 1px 6px 18px 1px #5345c214;
    transition: background .55s ease, box-shadow .55s ease
}

.baze .btnprimary:hover {
    background: #3d30a8;
    box-shadow: 1px 9px 44px 1px #5345c224
}

.baze .btnprimary:focus {
    outline: 3px solid #F55B00;
    outline-offset: 2px
}

@media (max-width: 700px) {
    .baze .titlh1 {
        font-size: 33px
    }

    .baze .titlimg {
        height: 180px
    }

    .baze .expgrid {
        flex-direction: column
    }

    .baze .expimgcol {
        flex: 0 0 auto
    }

    .baze .expimg {
        width: 100%;
        height: 220px
    }

    .baze .hesitdual {
        flex-direction: column
    }

    .baze .peoplrow {
        flex-direction: column
    }

    .baze .peopimgcol {
        flex: 0 0 auto
    }

    .baze .peopimg {
        width: 100%;
        height: 180px
    }

    .baze .numval {
        font-size: 33px
    }
}

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

.lrnprog .pgwrap {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 32px
}

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

    100% {
        background-position: 0 60px
    }
}

@keyframes blobfloat {

    0%,
    100% {
        transform: translateY(0px) scale(1)
    }

    50% {
        transform: translateY(-18px) scale(1.04)
    }
}

@keyframes fadeinup {
    0% {
        opacity: 0;
        transform: translateY(28px)
    }

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

.lrnprog .titlewrap {
    position: relative;
    background: linear-gradient(135deg, #5345C2 0%, #3a2fa8 55%, #F55B00 140%);
    padding: 64px 0;
    overflow: hidden
}

.lrnprog .titlewrap::before {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(to bottom, transparent 0px, transparent 28px, #ffffff06 28px, #ffffff06 30px);
    background-size: 100% 30px;
    animation: scandrift 6s linear infinite;
    pointer-events: none
}

.lrnprog .titlevignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 80% at 60% 50%, transparent 30%, #140a3c61 100%);
    pointer-events: none
}

.lrnprog .titleblob1 {
    position: absolute;
    width: 320px;
    height: 220px;
    background: #f55b0038;
    border-radius: 48px;
    filter: blur(54px);
    top: -40px;
    right: 80px;
    animation: blobfloat 7s ease infinite;
    pointer-events: none
}

.lrnprog .titleblob2 {
    position: absolute;
    width: 200px;
    height: 200px;
    background: #5345c24d;
    border-radius: 48px;
    filter: blur(48px);
    bottom: -30px;
    left: 60px;
    animation: blobfloat 9s ease infinite reverse;
    pointer-events: none
}

.lrnprog .titleinner {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 64px
}

.lrnprog .titletext {
    flex: 1 1 0;
    padding: 32px 0;
    animation: fadeinup .8s cubic-bezier(0.25, 0.46, 0.45, 0.94) both
}

.lrnprog .titlebadge {
    display: inline-block;
    background: #f55b002e;
    border: 1px solid #f55b0080;
    color: #ffd4b8;
    font-size: 14px;
    letter-spacing: .08em;
    padding: 4px 16px;
    border-radius: 8px;
    margin-bottom: 16px;
    text-transform: uppercase
}

.lrnprog .titleh1 {
    font-size: 62px;
    line-height: 1.2;
    color: #fff;
    letter-spacing: -.03em;
    margin: 0 0 16px
}

.lrnprog .titleh1 span {
    color: #ffb580
}

.lrnprog .titledivide {
    width: 48px;
    height: 3px;
    background: #F55B00;
    border-radius: 8px;
    margin: 16px 0 24px
}

.lrnprog .titledesc {
    font-size: 19px;
    line-height: 1.6;
    color: #ffffffd1;
    max-width: 480px;
    margin: 0 0 32px
}

.lrnprog .titleactions {
    display: flex;
    flex-direction: row;
    gap: 16px;
    flex-wrap: wrap
}

.lrnprog .btnprimary {
    display: inline-block;
    background: #F55B00;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background-color .6s ease, box-shadow .5s ease;
    box-shadow: 1px 6px 18px 1px #f55b0014
}

.lrnprog .btnprimary:hover {
    background: #d44d00;
    box-shadow: 1px 9px 44px 1px #f55b0024
}

.lrnprog .btnoutline {
    display: inline-block;
    background: transparent;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 15px 32px;
    border-radius: 8px;
    text-decoration: none;
    border: 2px solid #fff6;
    cursor: pointer;
    transition: border-color .6s ease, color .5s ease
}

.lrnprog .btnoutline:hover {
    border-color: #fff;
    color: #fff
}

.lrnprog .titleimgzone {
    flex: 0 0 340px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: fadeinup 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) .2s both
}

.lrnprog .titleimgframe {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    width: 320px;
    height: 260px;
    box-shadow: 1px 9px 44px 1px #5345c224
}

.lrnprog .titleimgframe img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .7s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.lrnprog .titleimgoverlay {
    position: absolute;
    inset: 0;
    background: #5345c261;
    transition: background .7s ease;
    pointer-events: none
}

.lrnprog .titleimgframe:hover .titleimgoverlay {
    background: #5345c214
}

.lrnprog .titleimgframe:hover img {
    transform: scale(1.04)
}

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

.lrnprog .dividerline .dline {
    flex: 1;
    height: 1px;
    background: #e2e0f4;
    max-width: 200px
}

.lrnprog .dividerline .dcross {
    width: 16px;
    height: 16px;
    position: relative;
    flex-shrink: 0
}

.lrnprog .dividerline .dcross::before,
.lrnprog .dividerline .dcross::after {
    content: "";
    position: absolute;
    background: #5345C2;
    border-radius: 8px
}

.lrnprog .dividerline .dcross::before {
    width: 2px;
    height: 16px;
    left: 7px;
    top: 0
}

.lrnprog .dividerline .dcross::after {
    width: 16px;
    height: 2px;
    left: 0;
    top: 7px
}

.lrnprog .progdetail {
    background: #FAFBE9;
    padding: 64px 0;
    position: relative
}

.lrnprog .progdetail::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 85% 40%, #f55b000f 0%, transparent 70%);
    pointer-events: none
}

.lrnprog .progdetailinner {
    display: flex;
    flex-direction: row;
    gap: 64px;
    align-items: flex-start
}

.lrnprog .progdetailleft {
    flex: 0 0 300px
}

.lrnprog .secaccentline {
    width: 32px;
    height: 3px;
    background: #5345C2;
    border-radius: 8px;
    margin-bottom: 16px
}

.lrnprog .secheading {
    font-size: 33px;
    line-height: 1.2;
    letter-spacing: -.02em;
    color: #1b1540;
    margin: 0 0 16px
}

.lrnprog .secdesc {
    font-size: 16px;
    line-height: 1.6;
    color: #3d3a5c;
    margin: 0 0 24px
}

.lrnprog .quotemark {
    font-size: 62px;
    line-height: 1;
    color: #5345C2;
    opacity: .18;
    font-style: normal;
    display: block;
    margin-bottom: 8px;
    letter-spacing: -.04em
}

.lrnprog .quoteblock {
    border-left: 3px solid #5345C2;
    border-top: 1px solid #5345c233;
    padding: 16px 16px 16px 24px;
    border-radius: 8px;
    background: #5345c20d
}

.lrnprog .quoteblock p {
    font-size: 16px;
    line-height: 1.6;
    color: #2e2a55;
    margin: 0;
    font-style: italic
}

.lrnprog .progdetailright {
    flex: 1 1 0
}

.lrnprog .firstpara {
    font-size: 16px;
    line-height: 1.6;
    color: #1b1540;
    padding: 16px;
    background: #5345c20f;
    border-radius: 8px;
    margin: 0 0 16px;
    border-top: 2px solid #5345C2
}

.lrnprog .bodypara {
    font-size: 16px;
    line-height: 1.6;
    color: #3d3a5c;
    margin: 0 0 16px
}

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

.lrnprog .modulelist li {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    border-radius: 8px;
    font-size: 16px;
    line-height: 1.4;
    color: #1b1540;
    transition: box-shadow .55s ease
}

.lrnprog .modulelist li:nth-child(odd) {
    background: #5345c20f
}

.lrnprog .modulelist li:nth-child(even) {
    background: #f55b000d
}

.lrnprog .modulelist li:hover {
    box-shadow: 1px 6px 18px 1px #5345c214
}

.lrnprog .modnum {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: #5345C2;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center
}

.lrnprog .modulelist li:nth-child(even) .modnum {
    background: #F55B00
}

.lrnprog .stepscols {
    background: #fff;
    padding: 64px 0;
    position: relative
}

.lrnprog .stepscols::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 70% at 75% 30%, #5345c20d 0%, transparent 65%);
    pointer-events: none
}

.lrnprog .stepshead {
    text-align: center;
    margin-bottom: 48px
}

.lrnprog .stepshead .secaccentline {
    margin: 0 auto 16px
}

.lrnprog .stepshead .secheading {
    font-size: 33px;
    margin: 0 auto 16px;
    max-width: 560px
}

.lrnprog .stepshead .secdesc {
    max-width: 520px;
    margin: 0 auto
}

.lrnprog .threecolgrid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
    align-items: end
}

.lrnprog .stepcardA {
    border-radius: 8px;
    overflow: hidden;
    background: #FAFBE9;
    box-shadow: 1px 3px 6px 1px #5345c20f;
    transition: box-shadow .65s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform .6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding-bottom: 0
}

.lrnprog .stepcardA:hover {
    box-shadow: 1px 9px 44px 1px #5345c224;
    transform: translateY(-4px)
}

.lrnprog .stepcardB {
    border-radius: 8px;
    overflow: hidden;
    background: #5345C2;
    box-shadow: 1px 6px 18px 1px #5345c214;
    transition: box-shadow .65s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform .6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    margin-bottom: 32px
}

.lrnprog .stepcardB:hover {
    box-shadow: 1px 9px 44px 1px #5345c224;
    transform: translateY(-4px)
}

.lrnprog .stepcardC {
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    border: 2px solid #F55B00;
    box-shadow: 1px 3px 6px 1px #f55b000f;
    transition: box-shadow .65s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform .6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    margin-bottom: 64px
}

.lrnprog .stepcardC:hover {
    box-shadow: 1px 9px 44px 1px #f55b0024;
    transform: translateY(-4px)
}

.lrnprog .cardimgwrap {
    width: 100%;
    height: 180px;
    overflow: hidden;
    position: relative
}

.lrnprog .cardimgwrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .7s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.lrnprog .cardimgoverlay {
    position: absolute;
    inset: 0;
    background: #5345c259;
    transition: background .7s ease;
    pointer-events: none
}

.lrnprog .cardimgwrap:hover .cardimgoverlay {
    background: #5345c214
}

.lrnprog .cardimgwrap:hover img {
    transform: scale(1.05)
}

.lrnprog .stepcardA .cardtextpad,
.lrnprog .stepcardC .cardtextpad {
    padding: 24px
}

.lrnprog .stepcardB .cardtextpad {
    padding: 24px
}

.lrnprog .cardlabel {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #F55B00;
    margin: 0 0 8px
}

.lrnprog .stepcardB .cardlabel {
    color: #ffc8a0e6
}

.lrnprog .cardh4 {
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: -.01em;
    color: #1b1540;
    margin: 0 0 8px
}

.lrnprog .stepcardB .cardh4 {
    color: #fff
}

.lrnprog .cardp {
    font-size: 16px;
    line-height: 1.6;
    color: #3d3a5c;
    margin: 0
}

.lrnprog .stepcardB .cardp {
    color: #ffffffc7
}

.lrnprog .cardh4wrap {
    position: relative;
    overflow: hidden;
    display: inline-block;
    vertical-align: top;
    width: 100%
}

.lrnprog .cardh4wrap .h4main {
    display: block;
    transition: transform .55s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity .5s ease
}

.lrnprog .cardh4wrap .h4alt {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transform: translateY(100%);
    opacity: 0;
    transition: transform .55s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity .5s ease;
    color: #5345C2;
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: -.01em;
    font-weight: 700
}

.lrnprog .stepcardB .cardh4wrap .h4alt {
    color: #ffb580
}

.lrnprog .stepcardC .cardh4wrap .h4alt {
    color: #F55B00
}

.lrnprog .stepcardA:hover .h4main,
.lrnprog .stepcardB:hover .h4main,
.lrnprog .stepcardC:hover .h4main {
    transform: translateY(-100%);
    opacity: 0
}

.lrnprog .stepcardA:hover .h4alt,
.lrnprog .stepcardB:hover .h4alt,
.lrnprog .stepcardC:hover .h4alt {
    transform: translateY(0);
    opacity: 1
}

.lrnprog .ctatextblock {
    background: #1b1540;
    padding: 64px 0;
    position: relative;
    overflow: hidden
}

.lrnprog .ctatextblock::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 55% 65% at 80% 55%, #f55b001a 0%, transparent 65%);
    pointer-events: none
}

.lrnprog .ctatextblock::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 40% 50% at 10% 20%, #5345c22e 0%, transparent 60%);
    pointer-events: none
}

.lrnprog .ctavignet {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 80% at 50% 50%, transparent 40%, #0503198c 100%);
    pointer-events: none
}

.lrnprog .ctainner {
    position: relative;
    display: flex;
    flex-direction: row;
    gap: 64px;
    align-items: center
}

.lrnprog .ctaleft {
    flex: 1 1 0
}

.lrnprog .ctabadge {
    display: inline-block;
    background: #f55b0026;
    border: 1px solid #f55b0066;
    color: #ffb580;
    font-size: 14px;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 4px 16px;
    border-radius: 8px;
    margin-bottom: 16px
}

.lrnprog .ctah2 {
    font-size: 46px;
    line-height: 1.2;
    letter-spacing: -.025em;
    color: #fff;
    margin: 0 0 16px
}

.lrnprog .ctah2 span {
    color: #ffb580
}

.lrnprog .ctasecline {
    width: 32px;
    height: 3px;
    background: #F55B00;
    border-radius: 8px;
    margin: 0 0 24px
}

.lrnprog .ctabody {
    font-size: 16px;
    line-height: 1.6;
    color: #ffffffbf;
    margin: 0 0 32px
}

.lrnprog .ctabtnrow {
    display: flex;
    flex-direction: row;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center
}

.lrnprog .btnctaprimary {
    display: inline-block;
    background: #F55B00;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background-color .6s ease, box-shadow .55s ease;
    box-shadow: 1px 6px 18px 1px #f55b0014
}

.lrnprog .btnctaprimary:hover {
    background: #d44d00;
    box-shadow: 1px 9px 44px 1px #f55b0024
}

.lrnprog .ctasideinfo {
    font-size: 14px;
    color: #ffffff80;
    margin: 0
}

.lrnprog .ctaright {
    flex: 0 0 320px;
    display: flex;
    flex-direction: column;
    gap: 16px
}

.lrnprog .ctastatcard {
    background: #ffffff0f;
    border: 1px solid #ffffff1a;
    border-radius: 8px;
    padding: 16px 24px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    transition: background .55s ease, border-color .55s ease
}

.lrnprog .ctastatcard:hover {
    background: #ffffff1a;
    border-color: #f55b0066
}

.lrnprog .ctastaticon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: #5345c24d;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center
}

.lrnprog .ctastaticon i {
    color: #b8b0ff;
    font-size: 19px
}

.lrnprog .ctastatcard:nth-child(2) .ctastaticon {
    background: #f55b0033
}

.lrnprog .ctastatcard:nth-child(2) .ctastaticon i {
    color: #ffb580
}

.lrnprog .ctastatcard:nth-child(3) .ctastaticon {
    background: #fafbe91a
}

.lrnprog .ctastatcard:nth-child(3) .ctastaticon i {
    color: #e8e9c0
}

.lrnprog .ctastattext h6 {
    font-size: 16px;
    line-height: 1.4;
    color: #fff;
    margin: 0 0 4px
}

.lrnprog .ctastattext p {
    font-size: 14px;
    line-height: 1.4;
    color: #ffffff8c;
    margin: 0
}

@media (max-width: 768px) {
    .lrnprog .titleinner {
        flex-direction: column;
        gap: 32px
    }

    .lrnprog .titleimgzone {
        flex: 0 0 auto;
        width: 100%
    }

    .lrnprog .titleimgframe {
        width: 100%
    }

    .lrnprog .titleh1 {
        font-size: 33px
    }

    .lrnprog .progdetailinner {
        flex-direction: column;
        gap: 32px
    }

    .lrnprog .progdetailleft {
        flex: 0 0 auto;
        width: 100%
    }

    .lrnprog .threecolgrid {
        grid-template-columns: 1fr
    }

    .lrnprog .stepcardB,
    .lrnprog .stepcardC {
        margin-bottom: 0
    }

    .lrnprog .ctainner {
        flex-direction: column;
        gap: 32px
    }

    .lrnprog .ctaright {
        flex: 0 0 auto;
        width: 100%
    }

    .lrnprog .ctah2 {
        font-size: 33px
    }
}

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

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

.aboutus .au-container {
    max-width: 1024px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 32px;
    padding-right: 32px
}

.aboutus .split-screen {
    display: flex;
    flex-direction: row;
    min-height: 520px;
    position: relative
}

.aboutus .split-left {
    background: #5345C2;
    flex: 1 1 52%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 64px 48px 64px 32px;
    position: relative;
    overflow: hidden
}

.aboutus .split-left-shape1 {
    position: absolute;
    top: -32px;
    right: -32px;
    width: 160px;
    height: 160px;
    border: 2px solid #fafbe92e;
    border-radius: 8px;
    transform: rotate(22deg);
    pointer-events: none
}

.aboutus .split-left-shape2 {
    position: absolute;
    bottom: 32px;
    left: 16px;
    width: 80px;
    height: 80px;
    border: 2px solid #f55b0047;
    border-radius: 48px;
    pointer-events: none
}

.aboutus .split-right {
    background: #FAFBE9;
    flex: 1 1 48%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 64px 32px 64px 48px;
    position: relative;
    overflow: hidden
}

.aboutus .split-right-shape {
    position: absolute;
    bottom: -24px;
    right: -24px;
    width: 120px;
    height: 120px;
    background: #5345c212;
    border-radius: 48px;
    pointer-events: none
}

.aboutus .split-tagline {
    font-size: 14px;
    letter-spacing: .08em;
    color: #fafbe9b3;
    text-transform: uppercase;
    margin-bottom: 16px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px
}

.aboutus .split-tagline-dash {
    display: inline-block;
    width: 24px;
    height: 2px;
    background: #F55B00
}

.aboutus .split-h1 {
    font-size: 62px;
    line-height: 1.2;
    letter-spacing: -.03em;
    color: #FAFBE9;
    margin: 0 0 16px
}

.aboutus .split-h1 .accented-word {
    color: #F55B00
}

.aboutus .split-sub {
    font-size: 16px;
    line-height: 1.6;
    color: #fafbe9d1;
    max-width: 360px;
    margin: 0
}

.aboutus .split-right-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: #5345C2;
    margin-bottom: 16px
}

.aboutus .split-right-para {
    font-size: 16px;
    line-height: 1.6;
    color: #1e1b3a;
    margin: 0 0 16px
}

.aboutus .split-right-para.first-para {
    background: #5345c20f;
    border-left: 3px solid #5345C2;
    border-top: 1px solid #5345c226;
    border-bottom: 1px solid #5345c226;
    border-right: 1px solid #5345c226;
    border-radius: 8px;
    padding: 16px
}

.aboutus .split-year-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid #5345c233;
    border-radius: 8px;
    padding: 8px 16px;
    margin-top: 8px
}

.aboutus .split-year-num {
    font-size: 33px;
    line-height: 1.2;
    font-weight: 700;
    color: #5345C2;
    letter-spacing: -.02em
}

.aboutus .split-year-caption {
    font-size: 14px;
    color: #5345C2;
    opacity: .7
}

.aboutus .approach-band {
    background: #2d2560;
    padding: 64px 0;
    position: relative;
    overflow: hidden
}

.aboutus .approach-band-stripes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    background-image: repeating-linear-gradient(90deg, #ffffff06 0px, #ffffff06 1px, transparent 1px, transparent 32px)
}

.aboutus .approach-inner {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    flex-direction: row;
    gap: 64px;
    align-items: center;
    position: relative
}

.aboutus .approach-img-col {
    flex: 0 0 380px
}

.aboutus .approach-img-frame {
    border: 3px solid #f55b0066;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 1px 9px 44px 1px #5345c224;
    position: relative
}

.aboutus .approach-img-frame img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: filter .6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: saturate(0.7) brightness(0.88)
}

.aboutus .approach-img-frame:hover img {
    filter: saturate(1) brightness(1)
}

.aboutus .approach-text-col {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    gap: 16px
}

.aboutus .approach-heading-line {
    width: 32px;
    height: 3px;
    background: #F55B00;
    border-radius: 8px;
    margin-bottom: 8px
}

.aboutus .approach-h2 {
    font-size: 33px;
    line-height: 1.2;
    letter-spacing: -.02em;
    color: #FAFBE9;
    margin: 0 0 8px
}

.aboutus .approach-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #fafbe9c7;
    margin: 0 0 16px
}

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

.aboutus .checklist li {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    font-size: 16px;
    line-height: 1.6;
    padding: 8px 16px;
    border-radius: 8px
}

.aboutus .checklist li:nth-child(odd) {
    background: #fafbe90f;
    color: #FAFBE9
}

.aboutus .checklist li:nth-child(even) {
    background: #f55b001a;
    color: #fafbe9e6
}

.aboutus .check-svg {
    flex-shrink: 0;
    margin-top: 2px
}

.aboutus .values-band {
    background: #fff;
    padding: 64px 0;
    position: relative
}

.aboutus .values-band-curve {
    display: block;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    margin-top: -1px
}

.aboutus .values-inner {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 32px
}

.aboutus .values-top-row {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 32px;
    margin-bottom: 48px
}

.aboutus .values-heading-block {
    flex: 1 1 0
}

.aboutus .values-heading-line {
    width: 32px;
    height: 3px;
    background: #5345C2;
    border-radius: 8px;
    margin-bottom: 8px
}

.aboutus .values-h2 {
    font-size: 33px;
    line-height: 1.2;
    letter-spacing: -.02em;
    color: #1e1b3a;
    margin: 0
}

.aboutus .values-lead {
    flex: 0 0 340px;
    font-size: 16px;
    line-height: 1.6;
    color: #3a3560;
    margin: 0
}

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

.aboutus .val-card {
    border-radius: 8px;
    padding: 32px 24px;
    box-shadow: 1px 6px 18px 1px #5345c214;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: box-shadow .55s ease, transform .55s ease
}

.aboutus .val-card:hover {
    box-shadow: 1px 9px 44px 1px #5345c224;
    transform: translateY(-4px)
}

.aboutus .val-card:nth-child(1) {
    background: #FAFBE9;
    margin-top: 0
}

.aboutus .val-card:nth-child(2) {
    background: #5345C2;
    margin-top: 32px
}

.aboutus .val-card:nth-child(3) {
    background: #fff7f2;
    margin-top: 0
}

.aboutus .val-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px
}

.aboutus .val-card:nth-child(1) .val-card-icon {
    background: #5345c21a
}

.aboutus .val-card:nth-child(2) .val-card-icon {
    background: #fafbe926
}

.aboutus .val-card:nth-child(3) .val-card-icon {
    background: #f55b001a
}

.aboutus .val-card-h {
    font-size: 19px;
    line-height: 1.4;
    letter-spacing: -.01em;
    margin: 0 0 4px
}

.aboutus .val-card:nth-child(1) .val-card-h,
.aboutus .val-card:nth-child(3) .val-card-h {
    color: #1e1b3a
}

.aboutus .val-card:nth-child(2) .val-card-h {
    color: #FAFBE9
}

.aboutus .val-card-p {
    font-size: 14px;
    line-height: 1.6;
    margin: 0
}

.aboutus .val-card:nth-child(1) .val-card-p,
.aboutus .val-card:nth-child(3) .val-card-p {
    color: #3a3560
}

.aboutus .val-card:nth-child(2) .val-card-p {
    color: #fafbe9cc
}

.aboutus .val-quote {
    margin: 48px 0 0;
    padding: 32px;
    background: #FAFBE9;
    border-radius: 8px;
    border: 1px solid #5345c21f;
    display: flex;
    flex-direction: row;
    gap: 32px;
    align-items: center
}

.aboutus .val-quote-mark {
    font-size: 62px;
    line-height: 1;
    color: #5345C2;
    flex-shrink: 0;
    font-style: normal;
    opacity: .4;
    margin-top: -8px
}

.aboutus .val-quote-body {
    flex: 1 1 0
}

.aboutus .val-quote-text {
    font-size: 19px;
    line-height: 1.6;
    color: #1e1b3a;
    font-style: italic;
    margin: 0 0 8px
}

.aboutus .val-quote-attr {
    font-size: 14px;
    color: #5345C2;
    opacity: .75
}

.aboutus .val-images-row {
    display: flex;
    flex-direction: row;
    gap: 16px;
    margin-top: 48px
}

.aboutus .val-img-frame {
    flex: 1 1 0;
    border-radius: 8px;
    overflow: hidden;
    border: 3px solid #5345c22e;
    box-shadow: 1px 3px 6px 1px #5345c20f;
    position: relative
}

.aboutus .val-img-frame img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: filter .7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: saturate(0.65) brightness(0.9)
}

.aboutus .val-img-frame:hover img {
    filter: saturate(1) brightness(1)
}

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

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

.aboutus .anim-col1 {
    animation: colReveal .6s ease .05s both
}

.aboutus .anim-col2 {
    animation: colReveal .6s ease .22s both
}

.aboutus .anim-col3 {
    animation: colReveal .6s ease .39s both
}

.aboutus .anim-col4 {
    animation: colReveal .6s ease .56s both
}

@keyframes imgPan {
    0% {
        object-position: 0 50%
    }

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

.aboutus .approach-img-frame img {
    animation: imgPan 18s linear infinite alternate
}

@media (max-width: 768px) {
    .aboutus .split-screen {
        flex-direction: column
    }

    .aboutus .split-left,
    .aboutus .split-right {
        padding: 32px 16px;
        flex: unset
    }

    .aboutus .split-h1 {
        font-size: 33px
    }

    .aboutus .approach-inner {
        flex-direction: column;
        gap: 32px
    }

    .aboutus .approach-img-col {
        flex: unset;
        width: 100%
    }

    .aboutus .values-top-row {
        flex-direction: column;
        gap: 16px
    }

    .aboutus .values-lead {
        flex: unset
    }

    .aboutus .values-grid {
        grid-template-columns: 1fr
    }

    .aboutus .val-card:nth-child(2) {
        margin-top: 0
    }

    .aboutus .val-quote {
        flex-direction: column;
        gap: 16px
    }

    .aboutus .val-images-row {
        flex-direction: column
    }
}

.successPage {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 64px 16px;
    background: #FAFBE9
}

.successPage .successCard {
    background: #fff;
    border-radius: 8px;
    box-shadow: 1px 6px 18px 1px #5345c214;
    padding: 64px 32px;
    max-width: 480px;
    width: 100%;
    text-align: center
}

.successPage .successCard .successIconWrap {
    width: 72px;
    height: 72px;
    border-radius: 48px;
    background: #FAFBE9;
    border: 2px solid #5345C2;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px
}

.successPage .successCard .successIconWrap svg {
    display: block
}

.successPage .successCard .successHeading {
    font-size: 33px;
    line-height: 1.2;
    letter-spacing: -.02em;
    color: #1b1628;
    margin: 0 0 16px
}

.successPage .successCard .successText {
    font-size: 16px;
    line-height: 1.6;
    color: #3a3550;
    margin: 0 0 32px
}

.successPage .successCard .successDivider {
    width: 40px;
    height: 2px;
    background: #F55B00;
    margin: 0 auto 32px;
    border-radius: 8px
}

.successPage .successCard .successHomeLink {
    display: inline-block;
    background: #5345C2;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 16px 32px;
    border-radius: 8px;
    border: 2px solid #5345C2;
    transition: background .6s cubic-bezier(0.25, 0.46, 0.45, 0.94), color .6s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color .5s ease
}

.successPage .successCard .successHomeLink:hover,
.successPage .successCard .successHomeLink:focus {
    background: #fff;
    color: #5345C2;
    border-color: #5345C2;
    outline: none
}

.successPage .successCard .successFootnote {
    font-size: 14px;
    line-height: 1.6;
    color: #7a6e99;
    margin: 32px 0 0
}

.successPage .successCard .successFootnote a {
    color: #5345C2;
    text-decoration: underline;
    text-decoration-color: transparent;
    transition: text-decoration-color .55s ease
}

.successPage .successCard .successFootnote a:hover {
    text-decoration-color: #5345C2
}