html {
    box-sizing: border-box
}

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

body {
    margin: 0;
    scrollbar-gutter: stable;
    min-height: 100vh;
    font-family: 'Source Serif Pro', Georgia, serif
}

:focus-visible {
    outline: 2px solid #FF2D26;
    outline-offset: 3px;
    border-radius: 2px
}

.sitehead {
    position: relative;
    background-color: #161F2A;
    overflow: hidden
}

.sitehead::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #161F2A 0%, #1e2d40 55%, #161F2A 100%);
    pointer-events: none
}

.sitehead::after {
    content: '';
    position: absolute;
    top: -56px;
    right: -56px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: #c3d4fe0f;
    pointer-events: none
}

.topbar {
    position: relative;
    z-index: 2;
    border-bottom: 1px solid #c3d4fe1f;
    padding: 0 56px
}

.topbar-row {
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    padding: 8px 0
}

.topcontact {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap
}

.toplink {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #c3d4febf;
    text-decoration: none;
    font-size: 15px;
    line-height: 1.2;
    letter-spacing: .02em;
    transition: color .38s cubic-bezier(0.16, 1, 0.3, 1)
}

.toplink:hover {
    color: #C3D4FE
}

.toplink i {
    font-size: 17px;
    color: #FF2D26
}

.topaction {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #FF2D26;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: .04em;
    padding: 8px 16px;
    border-radius: 2px;
    min-height: 44px;
    transition: background-color .42s cubic-bezier(0.16, 1, 0.3, 1), box-shadow .42s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 2px 6px 0 #ff2d260f
}

.topaction:hover {
    background-color: #d42520;
    color: #fff;
    box-shadow: 0 4px 25px 0 #ff2d261a
}

.topaction i {
    font-size: 17px;
    transition: transform .45s cubic-bezier(0.16, 1, 0.3, 1)
}

.topaction:hover i {
    transform: translateX(3px)
}

.brandrow {
    position: relative;
    z-index: 2;
    padding: 32px 56px 56px
}

.brandrow-inner {
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap
}

.brandblock {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-left: 16px
}

.logobox {
    background-color: #fff;
    border-radius: 16px;
    padding: 8px;
    box-shadow: 0 4px 25px 0 #161f2a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    flex-shrink: 0
}

.logobox img {
    width: 54px;
    height: 54px;
    object-fit: contain;
    display: block;
    opacity: 0;
    transition: opacity .45s ease-in-out
}

.logobox img.loaded {
    opacity: 1
}

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

.brandname-text {
    font-size: 51px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -.02em;
    color: #fff;
    font-family: 'Source Serif Pro', Georgia, serif
}

.brandname-sub {
    font-size: 15px;
    line-height: 1.2;
    letter-spacing: .06em;
    color: #c3d4fea6;
    font-style: italic;
    text-transform: uppercase
}

.mainmenu {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end
}

.menuitem {
    display: inline-flex;
    align-items: center;
    color: #c3d4fecc;
    text-decoration: none;
    font-size: 15px;
    line-height: 1.2;
    letter-spacing: .03em;
    padding: 8px 16px;
    border-radius: 2px;
    min-height: 44px;
    position: relative;
    transition: color .38s cubic-bezier(0.16, 1, 0.3, 1), background-color .38s cubic-bezier(0.16, 1, 0.3, 1)
}

.menuitem::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 16px;
    right: 16px;
    height: 1px;
    background-color: #FF2D26;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .45s cubic-bezier(0.16, 1, 0.3, 1)
}

.menuitem:hover {
    color: #fff;
    background-color: #c3d4fe0f
}

.menuitem:hover::after {
    transform: scaleX(1)
}

.menuitem.active {
    color: #fff
}

.menuitem.active::after {
    transform: scaleX(1)
}

.accentbar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FF2D26 0%, #C3D4FE 60%, transparent 100%);
    z-index: 2
}

.sitefooter {
    background-color: #161F2A;
    padding: 56px 56px 32px
}

.footercard {
    max-width: 1500px;
    margin: 0 auto;
    background-color: #c3d4fe0d;
    border-radius: 24px;
    border: 1px solid #c3d4fe1a;
    padding: 56px;
    box-shadow: 0 10px 40px 0 #161f2a1a
}

.footertop {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 56px;
    flex-wrap: wrap;
    margin-bottom: 56px
}

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

.footerlogobox {
    background-color: #fff;
    border-radius: 16px;
    padding: 8px;
    box-shadow: 0 2px 6px 0 #161f2a0f;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px
}

.footerlogobox img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    display: block;
    opacity: 0;
    transition: opacity .45s ease-in-out
}

.footerlogobox img.loaded {
    opacity: 1
}

.footerbrandname {
    font-size: 51px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -.02em;
    color: #fff;
    font-family: 'Source Serif Pro', Georgia, serif
}

.footerdesc {
    font-size: 15px;
    line-height: 1.7;
    color: #c3d4fe99;
    max-width: 320px
}

.footercolumns {
    display: flex;
    gap: 56px;
    flex-wrap: wrap
}

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

.footercolab {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #c3d4fe73
}

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

.footernavlink {
    color: #c3d4febf;
    text-decoration: none;
    font-size: 15px;
    line-height: 1.7;
    letter-spacing: .02em;
    transition: color .4s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 44px
}

.footernavlink:hover {
    color: #C3D4FE
}

.footercontactitem {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #c3d4febf;
    text-decoration: none;
    font-size: 15px;
    line-height: 1.7;
    letter-spacing: .02em;
    transition: color .4s cubic-bezier(0.16, 1, 0.3, 1);
    min-height: 44px
}

.footercontactitem:hover {
    color: #C3D4FE
}

.footercontactitem i {
    color: #FF2D26;
    font-size: 17px;
    flex-shrink: 0
}

.footerdivider {
    border: none;
    border-top: 1px solid #c3d4fe1a;
    margin: 0 0 32px
}

.footerbottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px
}

.footercopy {
    font-size: 15px;
    line-height: 1.2;
    color: #c3d4fe66;
    letter-spacing: .02em
}

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

.footerlegallink {
    font-size: 15px;
    line-height: 1.2;
    color: #c3d4fe73;
    text-decoration: none;
    letter-spacing: .02em;
    transition: color .38s cubic-bezier(0.16, 1, 0.3, 1)
}

.footerlegallink:hover {
    color: #c3d4fecc
}

.cookiepop {
    display: none;
    position: fixed;
    top: 16px;
    right: 16px;
    width: 360px;
    max-width: calc(100vw - 32px);
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 40px 0 #161f2a1a;
    border: 1px solid #c3d4fe4d;
    z-index: 1000;
    transform: translateY(-120%);
    transition: transform .32s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden
}

.cookiepop.visible {
    transform: translateY(0)
}

.cookietop {
    background-color: #161F2A;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 8px
}

.cookietop i {
    color: #C3D4FE;
    font-size: 17px
}

.cookietoplab {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    font-family: 'Source Serif Pro', Georgia, serif;
    line-height: 1.2;
    flex: 1
}

.cookiebody {
    padding: 16px
}

.cookiedesc {
    font-size: 15px;
    line-height: 1.7;
    color: #161F2A;
    margin-bottom: 8px
}

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

.cookielist li {
    font-size: 15px;
    line-height: 1.2;
    color: #161f2ab3;
    display: flex;
    align-items: center;
    gap: 8px
}

.cookielist li i {
    color: #FF2D26;
    font-size: 15px;
    flex-shrink: 0
}

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

.cookiebtn {
    flex: 1;
    min-height: 44px;
    border: none;
    border-radius: 2px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .03em;
    cursor: pointer;
    font-family: 'Source Serif Pro', Georgia, serif;
    transition: background-color .4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow .4s cubic-bezier(0.16, 1, 0.3, 1)
}

.cookiebtn.accept {
    background-color: #FF2D26;
    color: #fff;
    box-shadow: 0 2px 6px 0 #ff2d260f
}

.cookiebtn.accept:hover {
    background-color: #d42520;
    box-shadow: 0 4px 25px 0 #ff2d261a
}

.cookiebtn.accept:active {
    box-shadow: inset 0 2px 6px 0 #ff2d2633
}

.cookiebtn.decline {
    background-color: #161f2a14;
    color: #161F2A
}

.cookiebtn.decline:hover {
    background-color: #161f2a24
}

.cookiebtn.decline:active {
    box-shadow: inset 0 2px 6px 0 #161f2a1a
}

.minipref {
    display: none;
    position: fixed;
    bottom: 16px;
    right: 16px;
    z-index: 999
}

.miniprefbtn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #161F2A;
    color: #C3D4FE;
    border: none;
    border-radius: 16px;
    padding: 8px 16px;
    font-size: 15px;
    cursor: pointer;
    font-family: 'Source Serif Pro', Georgia, serif;
    min-height: 44px;
    box-shadow: 0 4px 25px 0 #161f2a1a;
    transition: background-color .38s cubic-bezier(0.16, 1, 0.3, 1)
}

.miniprefbtn:hover {
    background-color: #1e2d40
}

.miniprefbtn i {
    font-size: 17px
}

@media (max-width: 1024px) {
    .topbar {
        padding: 0 32px
    }

    .brandrow {
        padding: 32px 32px 56px
    }

    .sitefooter {
        padding: 56px 32px 32px
    }

    .footercard {
        padding: 32px
    }
}

@media (max-width: 640px) {
    .topbar {
        padding: 0 16px
    }

    .brandrow {
        padding: 16px 16px 32px
    }

    .brandrow-inner {
        flex-direction: column;
        align-items: flex-start
    }

    .brandname-text {
        font-size: 51px
    }

    .mainmenu {
        justify-content: flex-start
    }

    .sitefooter {
        padding: 32px 16px 16px
    }

    .footercard {
        padding: 32px 16px
    }

    .footertop {
        flex-direction: column;
        gap: 32px;
        margin-bottom: 32px
    }

    .footercolumns {
        gap: 32px
    }

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

@media (max-width: 360px) {
    .topcontact {
        gap: 16px
    }

    .brandname-text {
        font-size: 51px
    }

    .footerbrandname {
        font-size: 51px
    }
}

.legal-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 56px 32px
}

.legal-container p {
    font-size: 17px;
    line-height: 1.7;
    color: #161F2A;
    margin-bottom: 16px
}

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

.legal-container li {
    font-size: 17px;
    line-height: 1.7;
    color: #161F2A;
    margin-bottom: 8px
}

.legal-container strong,
.legal-container b {
    font-weight: 700;
    color: #161F2A
}

.legal-container em,
.legal-container i {
    font-style: italic;
    color: #161F2A
}

.legal-container a {
    color: #FF2D26;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color .38s cubic-bezier(0.16, 1, 0.3, 1), opacity .42s ease-in-out
}

.legal-container a:hover {
    opacity: .75
}

.legal-container hr {
    border: none;
    border-top: 1px solid #C3D4FE;
    margin: 32px 0
}

.legal-container div {
    margin-bottom: 16px
}

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

    .legal-container p,
    .legal-container li {
        font-size: 15px
    }
}

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

.ctus .topbar {
    background: #161F2A;
    padding: 96px 32px;
    position: relative
}

.ctus .topbar::before {
    content: '';
    position: absolute;
    top: 16px;
    left: 16px;
    right: 16px;
    bottom: 16px;
    border: 1px solid #c3d4fe2e;
    border-radius: 2px;
    pointer-events: none
}

.ctus .topbar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    border-radius: 2px
}

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

.ctus .topaccent {
    display: inline-block;
    font-size: 15px;
    letter-spacing: .18em;
    color: #C3D4FE;
    text-transform: uppercase;
    margin-bottom: 32px
}

.ctus .toph1 {
    font-size: 68px;
    line-height: 1.2;
    color: #fff;
    letter-spacing: -.03em;
    font-style: italic;
    margin: 0 0 32px;
    max-width: 820px
}

.ctus .toph1 .tracked {
    letter-spacing: .06em;
    font-style: normal;
    color: #C3D4FE
}

.ctus .toptheses {
    display: flex;
    flex-direction: row;
    gap: 56px;
    flex-wrap: wrap;
    margin-top: 56px
}

.ctus .thesis {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1 1 200px
}

.ctus .thesis .tlabel {
    font-size: 15px;
    color: #c3d4fe99;
    letter-spacing: .08em;
    text-transform: uppercase
}

.ctus .thesis .tval {
    font-size: 17px;
    color: #fff;
    line-height: 1.7
}

.ctus .thesis .tval a {
    color: #C3D4FE;
    text-decoration: none;
    transition: color .38s cubic-bezier(0.16, 1, 0.3, 1)
}

.ctus .thesis .tval a:hover {
    color: #FF2D26;
    text-decoration: underline
}

.ctus .svgdiv {
    display: block;
    width: 100%;
    line-height: 0;
    background: #161F2A
}

.ctus .svgdiv svg {
    display: block;
    width: 100%
}

.ctus .formzone {
    background: #f4f6fb;
    padding: 96px 32px;
    position: relative
}

.ctus .formzone::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
    pointer-events: none
}

.ctus .forminner {
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    gap: 96px;
    align-items: flex-start;
    position: relative;
    z-index: 1
}

.ctus .formleft {
    flex: 0 0 340px;
    position: sticky;
    top: 32px
}

.ctus .formtag {
    font-size: 15px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: #FF2D26;
    margin-bottom: 16px
}

.ctus .formh2 {
    font-size: 51px;
    line-height: 1.2;
    letter-spacing: -.025em;
    color: #161F2A;
    font-style: italic;
    margin: 0 0 32px;
    position: relative;
    padding-left: 16px
}

.ctus .formh2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: linear-gradient(180deg, #FF2D26 0%, #C3D4FE 100%);
    border-radius: 2px
}

.ctus .formdesc {
    font-size: 17px;
    line-height: 1.7;
    color: #3a4660;
    margin-bottom: 32px
}

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

.ctus .citem {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 6px 0 #161f2a0f;
    transition: box-shadow .42s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden
}

.ctus .citem::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #FF2D26;
    border-radius: 2px 0 0 2px;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform .45s cubic-bezier(0.16, 1, 0.3, 1)
}

.ctus .citem:hover::after {
    transform: scaleY(1)
}

.ctus .citem:hover {
    box-shadow: 0 4px 25px 0 #161f2a1a
}

.ctus .cicon {
    width: 40px;
    height: 40px;
    background: #c3d4fe4d;
    border-radius: 16px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #161F2A;
    font-size: 17px
}

.ctus .citemtext {
    display: flex;
    flex-direction: column;
    gap: 0
}

.ctus .citemlabel {
    font-size: 15px;
    color: #161f2a80;
    letter-spacing: .06em
}

.ctus .citemval {
    font-size: 17px;
    color: #161F2A;
    line-height: 1.7
}

.ctus .citemval a {
    color: #161F2A;
    text-decoration: none;
    transition: color .38s ease-in-out
}

.ctus .citemval a:hover {
    color: #FF2D26
}

.ctus .formright {
    flex: 1 1 0
}

.ctus .formcard {
    background: #fff;
    border-radius: 24px;
    padding: 56px;
    box-shadow: 0 10px 40px 0 #161f2a1a;
    animation: expandin .55s cubic-bezier(0.16, 1, 0.3, 1) both
}

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

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

.ctus .frow {
    display: flex;
    flex-direction: row;
    gap: 32px;
    margin-bottom: 32px
}

.ctus .frow.full {
    flex-direction: column;
    gap: 0
}

.ctus .fgroup {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1 1 0
}

.ctus .flabel {
    font-size: 15px;
    color: #161F2A;
    letter-spacing: .04em
}

.ctus .finput {
    border: 1.5px solid #161f2a26;
    border-radius: 16px;
    padding: 16px;
    font-size: 17px;
    color: #161F2A;
    background: #f4f6fb;
    outline: none;
    transition: border-color .4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow .4s cubic-bezier(0.16, 1, 0.3, 1);
    width: 100%;
    box-sizing: border-box
}

.ctus .finput::placeholder {
    color: #161f2a59;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap
}

.ctus .finput:focus {
    border-color: #161F2A;
    box-shadow: 0 4px 25px 0 #161f2a1a;
    background: #fff
}

.ctus .fselect {
    border: 1.5px solid #161f2a26;
    border-radius: 16px;
    padding: 16px;
    font-size: 17px;
    color: #161F2A;
    background: #f4f6fb;
    outline: none;
    width: 100%;
    appearance: none;
    cursor: pointer;
    transition: border-color .4s cubic-bezier(0.16, 1, 0.3, 1)
}

.ctus .fselect:focus {
    border-color: #161F2A;
    background: #fff
}

.ctus .fselectwrap {
    position: relative
}

.ctus .fselectwrap .sarrow {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #161F2A;
    font-size: 15px
}

.ctus .checkgroup {
    margin-bottom: 32px
}

.ctus .checklabel {
    font-size: 15px;
    color: #161F2A;
    letter-spacing: .04em;
    margin-bottom: 16px;
    display: block
}

.ctus .checkgrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px
}

.ctus .checkitem {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    padding: 16px;
    border: 1.5px solid #161f2a1f;
    border-radius: 16px;
    cursor: pointer;
    transition: border-color .4s cubic-bezier(0.16, 1, 0.3, 1), background .4s cubic-bezier(0.16, 1, 0.3, 1);
    background: #f4f6fb
}

.ctus .checkitem:hover {
    border-color: #161f2a66;
    background: #fff
}

.ctus .checkitem input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #161F2A;
    flex-shrink: 0;
    cursor: pointer
}

.ctus .checkitem input[type="checkbox"]:checked {
    box-shadow: inset 0 2px 4px 0 #161f2a33
}

.ctus .checkitem .chitxt {
    font-size: 15px;
    color: #161F2A;
    line-height: 1.2
}

.ctus .privacyrow {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 32px;
    padding: 16px;
    background: #c3d4fe2e;
    border-radius: 16px
}

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

.ctus .privacyrow input[type="checkbox"]:checked {
    box-shadow: inset 0 2px 4px 0 #161f2a33
}

.ctus .privtxt {
    font-size: 15px;
    color: #3a4660;
    line-height: 1.7
}

.ctus .privtxt a {
    color: #161F2A;
    text-decoration: underline;
    transition: color .38s ease-in-out
}

.ctus .privtxt a:hover {
    color: #FF2D26
}

.ctus .submitbtn {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    background: #161F2A;
    color: #fff;
    border: none;
    border-radius: 16px;
    padding: 16px 32px;
    font-size: 17px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: background .42s cubic-bezier(0.16, 1, 0.3, 1), box-shadow .42s cubic-bezier(0.16, 1, 0.3, 1);
    letter-spacing: .01em
}

.ctus .submitbtn .sbicon {
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity .45s cubic-bezier(0.16, 1, 0.3, 1), transform .45s cubic-bezier(0.16, 1, 0.3, 1);
    font-size: 17px
}

.ctus .submitbtn .sbtxt {
    transition: transform .45s cubic-bezier(0.16, 1, 0.3, 1)
}

.ctus .submitbtn:hover .sbicon {
    opacity: 1;
    transform: translateX(0)
}

.ctus .submitbtn:hover .sbtxt {
    transform: translateX(8px)
}

.ctus .submitbtn:hover {
    background: #FF2D26;
    box-shadow: 0 4px 25px 0 #ff2d262e
}

.ctus .submitbtn:active {
    box-shadow: inset 0 2px 6px 0 #161f2a2e
}

.ctus .submitbtn:focus-visible {
    outline: 2px solid #C3D4FE;
    outline-offset: 3px
}

@media (max-width: 1024px) {
    .ctus .forminner {
        flex-direction: column;
        gap: 56px
    }

    .ctus .formleft {
        flex: none;
        width: 100%;
        position: static
    }

    .ctus .toph1 {
        font-size: 51px
    }

    .ctus .formh2 {
        font-size: 51px
    }
}

@media (max-width: 640px) {
    .ctus .topbar {
        padding: 56px 16px
    }

    .ctus .topbar::before {
        top: 8px;
        left: 8px;
        right: 8px;
        bottom: 8px
    }

    .ctus .toph1 {
        font-size: 51px
    }

    .ctus .toptheses {
        gap: 32px
    }

    .ctus .formzone {
        padding: 56px 16px
    }

    .ctus .formcard {
        padding: 32px 16px
    }

    .ctus .frow {
        flex-direction: column;
        gap: 16px
    }

    .ctus .checkgrid {
        grid-template-columns: 1fr
    }

    .ctus .formh2 {
        font-size: 51px
    }
}

@media (max-width: 360px) {
    .ctus .toph1 {
        font-size: 51px
    }

    .ctus .formcard {
        padding: 32px 16px
    }
}

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

.srvc .reveal {
    opacity: 0;
    transform: translate(-24px, 16px);
    transition: opacity .45s cubic-bezier(0.16, 1, 0.3, 1), transform .55s cubic-bezier(0.16, 1, 0.3, 1)
}

.srvc .reveal.vis {
    opacity: 1;
    transform: none
}

.srvc .reveal:nth-child(2) {
    transition-delay: .08s
}

.srvc .reveal:nth-child(3) {
    transition-delay: .16s
}

.srvc .reveal:nth-child(4) {
    transition-delay: .24s
}

.srvc .reveal:nth-child(5) {
    transition-delay: .32s
}

.srvc .topband {
    background: #161F2A;
    padding: 56px 32px;
    position: relative;
    overflow: hidden
}

.srvc .topband::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -60px;
    width: 340px;
    height: 340px;
    background: radial-gradient(ellipse at 60% 40%, #c3d4fe21 0%, #ff2d2612 60%, transparent 100%);
    filter: blur(32px);
    pointer-events: none
}

.srvc .topband::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: 10%;
    width: 220px;
    height: 220px;
    background: radial-gradient(ellipse at 40% 60%, #c3d4fe1a 0%, transparent 70%);
    filter: blur(28px);
    pointer-events: none
}

.srvc .topband-inner {
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 56px
}

.srvc .topband-text {
    flex: 1 1 0
}

.srvc .topband-label {
    display: inline-block;
    font-size: 15px;
    line-height: 1.2;
    letter-spacing: .18em;
    color: #C3D4FE;
    text-transform: uppercase;
    margin-bottom: 16px
}

.srvc .topband-h1 {
    font-size: 68px;
    line-height: 1.2;
    letter-spacing: -.03em;
    color: #fff;
    font-style: italic;
    margin: 0 0 16px
}

.srvc .topband-h1 span {
    color: #FF2D26
}

.srvc .topband-desc {
    font-size: 17px;
    line-height: 1.7;
    color: #c3d4fed1;
    max-width: 520px;
    margin: 0
}

.srvc .topband-metric {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    padding-bottom: 8px
}

.srvc .topband-metric .mval {
    font-size: 51px;
    line-height: 1.2;
    letter-spacing: -.04em;
    color: #fff;
    font-style: italic
}

.srvc .topband-metric .mval span {
    color: #FF2D26
}

.srvc .topband-metric .marrow {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    color: #C3D4FE;
    font-size: 15px;
    line-height: 1.2;
    letter-spacing: .06em
}

.srvc .topband-metric .marrow svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0
}

.srvc .topband-divider {
    height: 4px;
    background: #FF2D26;
    max-width: 1500px;
    margin: 0 auto
}

.srvc .mosaic {
    max-width: 1500px;
    margin: 0 auto;
    padding: 96px 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 32px
}

.srvc .mosaic-imgwrap {
    grid-column: 1;
    grid-row: 1 / 3;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 25px 0 #161f2a1a;
    position: relative
}

.srvc .mosaic-imgwrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0;
    transition: opacity .45s cubic-bezier(0.16, 1, 0.3, 1)
}

.srvc .mosaic-imgwrap img.loaded {
    opacity: 1
}

.srvc .mosaic-imgwrap .imgoverlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(147deg, #161f2a52 0%, #ff2d261a 100%);
    pointer-events: none
}

.srvc .mosaic-card {
    grid-column: 2;
    background: #f4f7ff;
    border-radius: 16px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: 0 2px 6px 0 #161f2a0f
}

.srvc .mosaic-card.second {
    background: #161F2A
}

.srvc .mosaic-card .qmark {
    font-size: 68px;
    line-height: 1.2;
    letter-spacing: -.04em;
    color: #c3d4fe38;
    font-style: italic;
    margin-bottom: -16px;
    display: block
}

.srvc .mosaic-card.second .qmark {
    color: #c3d4fe1f
}

.srvc .mosaic-card h2 {
    font-size: 51px;
    line-height: 1.2;
    letter-spacing: -.03em;
    color: #161F2A;
    font-style: italic;
    margin: 0
}

.srvc .mosaic-card.second h2 {
    color: #fff
}

.srvc .mosaic-card p {
    font-size: 17px;
    line-height: 1.7;
    color: #161F2A;
    margin: 0;
    opacity: .78
}

.srvc .mosaic-card.second p {
    color: #C3D4FE;
    opacity: 1
}

.srvc .mosaic-card .tag {
    display: inline-block;
    font-size: 15px;
    line-height: 1.2;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #FF2D26;
    border: 1.5px solid #ff2d2647;
    border-radius: 2px;
    padding: 8px 16px;
    align-self: flex-start
}

.srvc .mosaic-divider {
    height: 4px;
    background: linear-gradient(90deg, #C3D4FE 0%, #161F2A 100%);
    max-width: 1500px;
    margin: 0 auto
}

.srvc .mesh {
    background: linear-gradient(147deg, #161F2A 0%, #1e2d45 40%, #2a1f2d 70%, #161F2A 100%);
    position: relative;
    overflow: hidden;
    padding: 96px 32px
}

.srvc .mesh::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(ellipse at 20% 30%, #c3d4fe17 0%, transparent 55%), radial-gradient(ellipse at 80% 70%, #ff2d2614 0%, transparent 50%), radial-gradient(ellipse at 55% 10%, #c3d4fe0f 0%, transparent 40%);
    pointer-events: none
}

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

.srvc .mesh-inner {
    max-width: 1500px;
    margin: 0 auto;
    position: relative
}

.srvc .mesh-top {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 56px;
    margin-bottom: 56px
}

.srvc .mesh-heading {
    flex: 1 1 0
}

.srvc .mesh-heading h2 {
    font-size: 51px;
    line-height: 1.2;
    letter-spacing: -.03em;
    color: #fff;
    font-style: italic;
    margin: 0 0 16px
}

.srvc .mesh-heading p {
    font-size: 17px;
    line-height: 1.7;
    color: #c3d4fecc;
    margin: 0;
    max-width: 480px
}

.srvc .mesh-stat {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px
}

.srvc .mesh-stat .snum {
    font-size: 51px;
    line-height: 1.2;
    letter-spacing: -.04em;
    color: #FF2D26;
    font-style: italic
}

.srvc .mesh-stat .slabel {
    font-size: 15px;
    line-height: 1.2;
    letter-spacing: .1em;
    color: #C3D4FE;
    text-transform: uppercase;
    text-align: right
}

.srvc .mesh-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px
}

.srvc .mesh-item {
    background: #c3d4fe0f;
    border-radius: 16px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    border: 1px solid #c3d4fe1a;
    transition: background .42s cubic-bezier(0.16, 1, 0.3, 1), border-color .42s cubic-bezier(0.16, 1, 0.3, 1)
}

.srvc .mesh-item:hover {
    background: #c3d4fe1c;
    border-color: #c3d4fe38
}

.srvc .mesh-item .iico {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ff2d2624;
    border-radius: 2px;
    flex-shrink: 0
}

.srvc .mesh-item .iico svg {
    width: 22px;
    height: 22px
}

.srvc .mesh-item h4 {
    font-size: 17px;
    line-height: 1.2;
    letter-spacing: -.01em;
    color: #fff;
    margin: 0;
    font-style: italic
}

.srvc .mesh-item p {
    font-size: 15px;
    line-height: 1.7;
    color: #c3d4feb8;
    margin: 0
}

.srvc .imgrow {
    max-width: 1500px;
    margin: 0 auto;
    padding: 96px 32px;
    display: grid;
    grid-template-columns: 5fr 4fr;
    gap: 56px;
    align-items: center
}

.srvc .imgrow-text {
    display: flex;
    flex-direction: column;
    gap: 32px
}

.srvc .imgrow-text h2 {
    font-size: 51px;
    line-height: 1.2;
    letter-spacing: -.03em;
    color: #161F2A;
    font-style: italic;
    margin: 0
}

.srvc .imgrow-text h2 span {
    color: #FF2D26
}

.srvc .imgrow-text p {
    font-size: 17px;
    line-height: 1.7;
    color: #161F2A;
    margin: 0;
    opacity: .75
}

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

.srvc .imgrow-list li {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    font-size: 17px;
    line-height: 1.7;
    color: #161F2A
}

.srvc .imgrow-list li .ldot {
    width: 8px;
    height: 8px;
    border-radius: 2px;
    background: #FF2D26;
    flex-shrink: 0;
    margin-top: 10px
}

.srvc .imgrow-cta {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    background: #161F2A;
    color: #fff;
    font-size: 15px;
    line-height: 1.2;
    letter-spacing: .06em;
    text-transform: lowercase;
    padding: 16px 32px;
    border-radius: 2px;
    text-decoration: none;
    align-self: flex-start;
    transition: background .38s cubic-bezier(0.16, 1, 0.3, 1), color .38s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    position: relative
}

.srvc .imgrow-cta .cta-icon {
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity .38s cubic-bezier(0.16, 1, 0.3, 1), transform .38s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center
}

.srvc .imgrow-cta .cta-txt {
    transition: transform .38s cubic-bezier(0.16, 1, 0.3, 1)
}

.srvc .imgrow-cta:hover {
    background: #FF2D26
}

.srvc .imgrow-cta:hover .cta-icon {
    opacity: 1;
    transform: translateX(0)
}

.srvc .imgrow-cta:hover .cta-txt {
    transform: translateX(8px)
}

.srvc .imgrow-imgwrap {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px 0 #161f2a1a;
    position: relative
}

.srvc .imgrow-imgwrap img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    opacity: 0;
    transition: opacity .45s cubic-bezier(0.16, 1, 0.3, 1)
}

.srvc .imgrow-imgwrap img.loaded {
    opacity: 1
}

.srvc .imgrow-imgwrap .imgoverlay2 {
    position: absolute;
    inset: 0;
    background: linear-gradient(200deg, transparent 50%, #161f2a38 100%);
    pointer-events: none
}

.srvc .finalband {
    background: #f4f7ff;
    padding: 56px 32px
}

.srvc .finalband-inner {
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 56px
}

.srvc .finalband-imgwrap {
    flex: 0 0 auto;
    width: 260px;
    height: 260px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 25px 0 #161f2a1a
}

.srvc .finalband-imgwrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0;
    transition: opacity .45s cubic-bezier(0.16, 1, 0.3, 1)
}

.srvc .finalband-imgwrap img.loaded {
    opacity: 1
}

.srvc .finalband-text {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    gap: 16px
}

.srvc .finalband-text h3 {
    font-size: 51px;
    line-height: 1.2;
    letter-spacing: -.03em;
    color: #161F2A;
    font-style: italic;
    margin: 0
}

.srvc .finalband-text p {
    font-size: 17px;
    line-height: 1.7;
    color: #161F2A;
    margin: 0;
    opacity: .72;
    max-width: 560px
}

.srvc .finalband-actions {
    display: flex;
    flex-direction: row;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 8px
}

.srvc .btn-prim {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    background: #FF2D26;
    color: #fff;
    font-size: 15px;
    line-height: 1.2;
    letter-spacing: .06em;
    text-transform: lowercase;
    padding: 16px 32px;
    border-radius: 2px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background .4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    position: relative
}

.srvc .btn-prim .cta-icon {
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity .4s cubic-bezier(0.16, 1, 0.3, 1), transform .4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center
}

.srvc .btn-prim .cta-txt {
    transition: transform .4s cubic-bezier(0.16, 1, 0.3, 1)
}

.srvc .btn-prim:hover {
    background: #d41f19
}

.srvc .btn-prim:hover .cta-icon {
    opacity: 1;
    transform: translateX(0)
}

.srvc .btn-prim:hover .cta-txt {
    transform: translateX(8px)
}

.srvc .btn-prim:active {
    box-shadow: inset 0 2px 6px 0 #161f2a2e
}

.srvc .btn-sec {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #161F2A;
    font-size: 15px;
    line-height: 1.2;
    letter-spacing: .06em;
    text-transform: lowercase;
    padding: 16px 32px;
    border-radius: 2px;
    text-decoration: none;
    border: 1.5px solid #161f2a47;
    cursor: pointer;
    transition: border-color .38s cubic-bezier(0.16, 1, 0.3, 1), color .38s cubic-bezier(0.16, 1, 0.3, 1)
}

.srvc .btn-sec:hover {
    border-color: #161F2A;
    color: #FF2D26
}

@media (max-width: 1024px) {
    .srvc .topband-h1 {
        font-size: 51px
    }

    .srvc .mosaic {
        grid-template-columns: 1fr;
        grid-template-rows: auto
    }

    .srvc .mosaic-imgwrap {
        grid-column: 1;
        grid-row: auto;
        height: 320px
    }

    .srvc .mosaic-card {
        grid-column: 1
    }

    .srvc .mesh-grid {
        grid-template-columns: 1fr 1fr
    }

    .srvc .imgrow {
        grid-template-columns: 1fr
    }

    .srvc .imgrow-imgwrap {
        order: -1
    }

    .srvc .finalband-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 32px
    }

    .srvc .finalband-imgwrap {
        width: 100%;
        height: 220px
    }
}

@media (max-width: 640px) {
    .srvc .topband-inner {
        flex-direction: column;
        gap: 32px;
        align-items: flex-start
    }

    .srvc .topband-h1 {
        font-size: 51px
    }

    .srvc .topband-metric {
        align-items: flex-start
    }

    .srvc .mosaic {
        padding: 56px 16px;
        gap: 16px
    }

    .srvc .mosaic-card h2 {
        font-size: 51px
    }

    .srvc .mesh {
        padding: 56px 16px
    }

    .srvc .mesh-top {
        flex-direction: column;
        gap: 32px
    }

    .srvc .mesh-heading h2 {
        font-size: 51px
    }

    .srvc .mesh-grid {
        grid-template-columns: 1fr
    }

    .srvc .imgrow {
        padding: 56px 16px;
        gap: 32px
    }

    .srvc .imgrow-text h2 {
        font-size: 51px
    }

    .srvc .finalband {
        padding: 56px 16px
    }

    .srvc .finalband-text h3 {
        font-size: 51px
    }

    .srvc .finalband-actions {
        flex-direction: column;
        gap: 8px
    }

    .srvc .topband {
        padding: 56px 16px
    }
}

@media (max-width: 360px) {
    .srvc .topband-h1 {
        font-size: 51px
    }

    .srvc .mosaic-card h2 {
        font-size: 51px
    }
}

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

.lprog .titblk {
    background: #161F2A;
    padding: 96px 56px 56px;
    position: relative
}

.lprog .titblk .shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden
}

.lprog .titblk .shapes span {
    position: absolute;
    border-radius: 24px;
    border: 1px solid #c3d4fe14
}

.lprog .titblk .shapes span:nth-child(1) {
    width: 320px;
    height: 320px;
    top: -80px;
    right: 120px;
    transform: rotate(18deg)
}

.lprog .titblk .shapes span:nth-child(2) {
    width: 200px;
    height: 200px;
    bottom: -40px;
    right: 60px;
    border-color: #ff2d261a;
    border-radius: 16px;
    transform: rotate(-8deg)
}

.lprog .titblk .shapes span:nth-child(3) {
    width: 500px;
    height: 500px;
    top: -200px;
    left: -100px;
    border-color: #c3d4fe0a;
    border-radius: 24px;
    transform: rotate(32deg)
}

.lprog .titblk .tgrid {
    display: flex;
    flex-direction: row;
    gap: 56px;
    align-items: flex-start;
    max-width: 1200px;
    position: relative;
    z-index: 1
}

.lprog .titblk .tleft {
    flex: 1 1 0
}

.lprog .titblk .tright {
    flex: 0 0 380px
}

.lprog .titblk .eyebrow {
    font-size: 15px;
    line-height: 1.2;
    letter-spacing: .18em;
    color: #C3D4FE;
    text-transform: uppercase;
    margin-bottom: 32px;
    display: block
}

.lprog .titblk .th1 {
    font-size: 68px;
    line-height: 1.2;
    letter-spacing: -.03em;
    color: #fff;
    margin-bottom: 16px;
    font-style: italic
}

.lprog .titblk .th2 {
    font-size: 51px;
    line-height: 1.2;
    letter-spacing: -.02em;
    color: #c3d4fe8c;
    margin-bottom: 32px;
    font-style: italic
}

.lprog .titblk .tdesc {
    font-size: 17px;
    line-height: 1.7;
    color: #ffffffa6;
    max-width: 480px
}

.lprog .titblk .imgwrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px 0 #161f2a1a
}

.lprog .titblk .imgwrap img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    opacity: 0;
    transition: opacity .45s cubic-bezier(0.16, 1, 0.3, 1);
    filter: sepia(0.4) contrast(1.1) brightness(0.88) saturate(0.7)
}

.lprog .titblk .imgwrap img.loaded {
    opacity: 1
}

.lprog .titblk .imgwrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, #c3d4fe1a 0%, #161f2a8c 100%);
    pointer-events: none
}

.lprog .titblk .imgwrap .graintex {
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: 16px;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.08'/%3E%3C/svg%3E");
    background-size: 200px 200px;
    opacity: .35;
    mix-blend-mode: overlay
}

.lprog .divline {
    height: 2px;
    background: linear-gradient(90deg, #FF2D26 0%, #c3d4fe2e 100%)
}

.lprog .progblk {
    background: #fff;
    padding: 96px 56px
}

.lprog .progblk .phead {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 56px
}

.lprog .progblk .ph1 {
    font-size: 51px;
    line-height: 1.2;
    letter-spacing: -.02em;
    color: #161F2A;
    font-style: italic;
    max-width: 560px
}

.lprog .progblk .psubtext {
    font-size: 17px;
    line-height: 1.7;
    color: #161f2aa6;
    max-width: 360px;
    flex: 0 0 360px
}

.lprog .progblk .modlist {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px
}

.lprog .progblk .moditem {
    border: 1px solid #161f2a1a;
    border-radius: 16px;
    padding: 32px;
    position: relative;
    transition: box-shadow .42s cubic-bezier(0.16, 1, 0.3, 1), transform .42s cubic-bezier(0.16, 1, 0.3, 1);
    background: #fff;
    overflow: hidden
}

.lprog .progblk .moditem:hover {
    box-shadow: 0 10px 40px 0 #161f2a1a;
    transform: rotate(-0.6deg)
}

.lprog .progblk .moditem .mnum {
    font-size: 68px;
    line-height: 1.2;
    letter-spacing: -.04em;
    color: #c3d4fe59;
    position: absolute;
    top: 16px;
    right: 24px;
    pointer-events: none;
    font-style: italic
}

.lprog .progblk .moditem .mtag {
    display: inline-block;
    font-size: 15px;
    line-height: 1.2;
    letter-spacing: .12em;
    color: #FF2D26;
    text-transform: uppercase;
    margin-bottom: 16px
}

.lprog .progblk .moditem .mh {
    font-size: 17px;
    line-height: 1.2;
    color: #161F2A;
    font-style: italic;
    margin-bottom: 16px;
    font-weight: 600
}

.lprog .progblk .moditem .mdesc {
    font-size: 15px;
    line-height: 1.7;
    color: #161f2ab3
}

.lprog .progblk .moditem .mfooter {
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid #161f2a14;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px
}

.lprog .progblk .moditem .mfooter .mdur {
    font-size: 15px;
    line-height: 1.2;
    color: #161f2a80;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px
}

.lprog .progblk .moditem .mfooter .mdur .ico {
    width: 16px;
    height: 16px;
    flex-shrink: 0
}

.lprog .progblk .moditem.featured {
    background: #161F2A;
    border-color: transparent;
    grid-column: span 2;
    display: flex;
    flex-direction: row;
    gap: 56px;
    align-items: center
}

.lprog .progblk .moditem.featured .mnum {
    color: #c3d4fe14;
    font-size: 96px;
    top: 8px;
    right: 32px
}

.lprog .progblk .moditem.featured .mtag {
    color: #C3D4FE
}

.lprog .progblk .moditem.featured .mh {
    color: #fff;
    font-size: 51px;
    line-height: 1.2;
    margin-bottom: 16px
}

.lprog .progblk .moditem.featured .mdesc {
    color: #fff9
}

.lprog .progblk .moditem.featured .mfooter {
    border-top-color: #ffffff1a
}

.lprog .progblk .moditem.featured .mdur {
    color: #ffffff73
}

.lprog .progblk .moditem.featured .fleft {
    flex: 1 1 0
}

.lprog .progblk .moditem.featured .fright {
    flex: 0 0 280px;
    display: flex;
    flex-direction: column;
    gap: 16px
}

.lprog .progblk .moditem.featured .fstat {
    background: #c3d4fe14;
    border-radius: 16px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.lprog .progblk .moditem.featured .fstat .fsval {
    font-size: 51px;
    line-height: 1.2;
    letter-spacing: -.03em;
    color: #C3D4FE;
    font-style: italic
}

.lprog .progblk .moditem.featured .fstat .fslabel {
    font-size: 15px;
    line-height: 1.2;
    color: #ffffff73
}

.lprog .progblk .ctalink {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    margin-top: 56px;
    font-size: 17px;
    line-height: 1.2;
    color: #161F2A;
    text-decoration: none;
    border-bottom: 1px solid #161f2a40;
    padding-bottom: 8px;
    transition: color .38s ease-in-out, border-color .38s ease-in-out;
    overflow: hidden
}

.lprog .progblk .ctalink:hover {
    color: #FF2D26;
    border-color: #FF2D26
}

.lprog .progblk .ctalink .ctaico {
    transform: translateX(-20px);
    opacity: 0;
    transition: transform .42s cubic-bezier(0.16, 1, 0.3, 1), opacity .42s cubic-bezier(0.16, 1, 0.3, 1)
}

.lprog .progblk .ctalink:hover .ctaico {
    transform: translateX(0);
    opacity: 1
}

.lprog .progblk .ctalink .ctatext {
    transition: transform .42s cubic-bezier(0.16, 1, 0.3, 1)
}

.lprog .progblk .ctalink:hover .ctatext {
    transform: translateX(8px)
}

@media (max-width: 1024px) {
    .lprog .titblk {
        padding: 56px 32px
    }

    .lprog .titblk .tgrid {
        flex-direction: column;
        gap: 32px
    }

    .lprog .titblk .tright {
        flex: 0 0 auto;
        width: 100%
    }

    .lprog .titblk .th1 {
        font-size: 51px
    }

    .lprog .titblk .th2 {
        font-size: 35px
    }

    .lprog .progblk {
        padding: 56px 32px
    }

    .lprog .progblk .phead {
        flex-direction: column;
        align-items: flex-start
    }

    .lprog .progblk .psubtext {
        flex: 0 0 auto;
        max-width: 100%
    }

    .lprog .progblk .moditem.featured {
        flex-direction: column;
        gap: 32px
    }

    .lprog .progblk .moditem.featured .fright {
        flex: 0 0 auto;
        width: 100%;
        flex-direction: row
    }

    .lprog .progblk .moditem.featured .fstat {
        flex: 1 1 0
    }

    .lprog .progblk .moditem.featured .mh {
        font-size: 35px
    }
}

@media (max-width: 640px) {
    .lprog .titblk {
        padding: 56px 16px 32px
    }

    .lprog .titblk .th1 {
        font-size: 35px
    }

    .lprog .titblk .th2 {
        font-size: 25px
    }

    .lprog .progblk {
        padding: 56px 16px
    }

    .lprog .progblk .ph1 {
        font-size: 35px
    }

    .lprog .progblk .modlist {
        grid-template-columns: 1fr
    }

    .lprog .progblk .moditem.featured {
        grid-column: span 1
    }

    .lprog .progblk .moditem.featured .fright {
        flex-direction: column
    }

    .lprog .progblk .moditem.featured .mh {
        font-size: 25px
    }
}

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

    .lprog .progblk {
        padding: 32px 8px
    }
}

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

.lnch img {
    opacity: 0;
    transition: opacity .45s cubic-bezier(0.16, 1, 0.3, 1)
}

.lnch img.loaded {
    opacity: 1
}

.lnch {
    background: #fff;
    color: #161F2A;
    overflow-x: hidden
}

.lnch .pgwrap {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 32px
}

.lnch .tblk {
    padding: 96px 0 56px
}

.lnch .tblk .pgwrap {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 56px
}

.lnch .tblktext {
    flex: 0 0 55%;
    display: flex;
    flex-direction: column;
    gap: 32px
}

.lnch .tblkimg {
    flex: 1 1 auto;
    position: relative
}

.lnch .tblkimg img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 16px;
    filter: saturate(0.7) brightness(0.92) contrast(1.08);
    box-shadow: 0 10px 40px 0 #161f2a1a;
    display: block
}

.lnch .tblkeyword {
    font-size: 15px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: #FF2D26;
    line-height: 1.2;
    font-style: normal
}

.lnch .tblkh1 {
    font-size: 68px;
    line-height: 1.2;
    letter-spacing: -.03em;
    color: #161F2A;
    margin: 0;
    font-style: italic
}

.lnch .tblkh1 span {
    font-size: 51px;
    display: block;
    font-style: normal;
    letter-spacing: -.02em;
    color: #161F2A;
    opacity: .55
}

.lnch .tblklead {
    font-size: 17px;
    line-height: 1.7;
    color: #161F2A;
    opacity: .78;
    max-width: 480px
}

.lnch .tblkbtn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #FF2D26;
    color: #fff;
    border: none;
    border-radius: 2px;
    padding: 16px 32px;
    font-size: 15px;
    letter-spacing: .04em;
    cursor: pointer;
    text-decoration: none;
    width: fit-content;
    transition: background .38s cubic-bezier(0.16, 1, 0.3, 1), padding .42s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 25px 0 #ff2d261a
}

.lnch .tblkbtn svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity .38s cubic-bezier(0.16, 1, 0.3, 1), transform .38s cubic-bezier(0.16, 1, 0.3, 1)
}

.lnch .tblkbtn:hover {
    background: #161F2A;
    padding-left: 24px
}

.lnch .tblkbtn:hover svg {
    opacity: 1;
    transform: translateX(0)
}

.lnch .tblkbtn:active {
    box-shadow: inset 0 2px 6px 0 #161f2a2e
}

.lnch .div1 {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 8px;
    padding: 32px 0
}

.lnch .div1 span {
    width: 10px;
    height: 10px;
    border-right: 2px solid #C3D4FE;
    border-bottom: 2px solid #C3D4FE;
    transform: rotate(-45deg);
    display: block
}

.lnch .div1 span:nth-child(2) {
    opacity: .55
}

.lnch .div1 span:nth-child(3) {
    opacity: .25
}

.lnch .sitblk {
    padding: 56px 0;
    background: #161F2A;
    position: relative;
    overflow: hidden
}

.lnch .sitblk::before {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(120deg, #c3d4fe08 0px, #c3d4fe08 1px, transparent 1px, transparent 60px);
    pointer-events: none
}

.lnch .sitblk .pgwrap {
    position: relative;
    z-index: 1
}

.lnch .sitlabel {
    font-size: 15px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: #C3D4FE;
    margin-bottom: 32px;
    display: block
}

.lnch .sitgrid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px
}

.lnch .sitcard {
    border-radius: 16px;
    padding: 32px;
    background: #c3d4fe0f;
    border-top: 2px solid #c3d4fe26;
    transition: background .45s cubic-bezier(0.16, 1, 0.3, 1), border-color .45s cubic-bezier(0.16, 1, 0.3, 1)
}

.lnch .sitcard:hover {
    background: #c3d4fe1f;
    border-color: #c3d4fe66
}

.lnch .sitnum {
    font-size: 51px;
    line-height: 1.2;
    letter-spacing: -.03em;
    color: #c3d4fe2e;
    font-style: italic;
    margin-bottom: 16px;
    display: block
}

.lnch .sitcard h4 {
    font-size: 17px;
    line-height: 1.2;
    color: #fff;
    margin: 0 0 16px;
    font-style: italic
}

.lnch .sitcard p {
    font-size: 15px;
    line-height: 1.7;
    color: #fff9;
    margin: 0
}

.lnch .div2 {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 8px;
    padding: 32px 0;
    background: #161F2A
}

.lnch .div2 span {
    width: 10px;
    height: 10px;
    border-right: 2px solid #ff2d2680;
    border-bottom: 2px solid #ff2d2680;
    transform: rotate(-45deg);
    display: block
}

.lnch .div2 span:nth-child(2) {
    opacity: .55
}

.lnch .div2 span:nth-child(3) {
    opacity: .25
}

.lnch .adpblk {
    padding: 96px 0;
    background: #fff
}

.lnch .adpblk .pgwrap {
    display: flex;
    flex-direction: row;
    gap: 56px;
    align-items: center
}

.lnch .adpimg {
    flex: 0 0 45%
}

.lnch .adpimg img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 10px 40px 0 #161f2a1a;
    display: block
}

.lnch .adptxt {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    gap: 32px
}

.lnch .adptxt h2 {
    font-size: 51px;
    line-height: 1.2;
    letter-spacing: -.025em;
    color: #161F2A;
    margin: 0;
    font-style: italic
}

.lnch .adptxt p {
    font-size: 17px;
    line-height: 1.7;
    color: #161F2A;
    opacity: .75;
    margin: 0
}

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

.lnch .adplist li {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px
}

.lnch .adpring {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1.5px solid #C3D4FE;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center
}

.lnch .adpring::after {
    content: "";
    position: absolute;
    inset: -1.5px;
    border-radius: 50%;
    border: 1.5px solid transparent;
    border-top-color: #FF2D26;
    border-right-color: #FF2D26;
    transform: rotate(-30deg)
}

.lnch .adpring svg {
    width: 14px;
    height: 14px
}

.lnch .adplist li p {
    font-size: 15px;
    line-height: 1.7;
    color: #161F2A;
    opacity: .72;
    margin: 0
}

.lnch .div3 {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 8px;
    padding: 32px 0
}

.lnch .div3 span {
    width: 10px;
    height: 10px;
    border-right: 2px solid #161f2a33;
    border-bottom: 2px solid #161f2a33;
    transform: rotate(-45deg);
    display: block
}

.lnch .div3 span:nth-child(2) {
    opacity: .55
}

.lnch .div3 span:nth-child(3) {
    opacity: .25
}

.lnch .probblk {
    padding: 96px 0;
    position: relative
}

.lnch .probblk::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(163deg, #c3d4fe38 0%, #fff0 60%);
    animation: gradshift 8s ease-in-out infinite alternate;
    pointer-events: none
}

@keyframes gradshift {
    0% {
        background: linear-gradient(163deg, #c3d4fe38 0%, #fff0 60%)
    }

    100% {
        background: linear-gradient(197deg, #c3d4fe24 0%, #ff2d260a 70%)
    }
}

.lnch .probblk .pgwrap {
    position: relative;
    z-index: 1;
    max-width: 860px
}

.lnch .problabel {
    font-size: 15px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: #FF2D26;
    margin-bottom: 32px;
    display: block
}

.lnch .probblk h2 {
    font-size: 51px;
    line-height: 1.2;
    letter-spacing: -.025em;
    color: #161F2A;
    margin: 0 0 32px;
    font-style: italic
}

.lnch .probcols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px
}

.lnch .probzone {
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 25px 0 #161f2a1a
}

.lnch .probzone.dark {
    background: #161F2A
}

.lnch .probzone.light {
    background: #fff;
    border: 1px solid #c3d4fe80
}

.lnch .probzone h5 {
    font-size: 15px;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin: 0 0 16px
}

.lnch .probzone.dark h5 {
    color: #C3D4FE
}

.lnch .probzone.light h5 {
    color: #FF2D26
}

.lnch .probzone p {
    font-size: 15px;
    line-height: 1.7;
    margin: 0
}

.lnch .probzone.dark p {
    color: #ffffffa6
}

.lnch .probzone.light p {
    color: #161f2ab8
}

.lnch .div4 {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 8px;
    padding: 32px 0
}

.lnch .div4 span {
    width: 10px;
    height: 10px;
    border-right: 2px solid #ff2d264d;
    border-bottom: 2px solid #ff2d264d;
    transform: rotate(-45deg);
    display: block
}

.lnch .div4 span:nth-child(2) {
    opacity: .55
}

.lnch .div4 span:nth-child(3) {
    opacity: .25
}

.lnch .rdyblk {
    padding: 96px 0;
    background: #161F2A
}

.lnch .rdyblk .pgwrap {
    display: flex;
    flex-direction: row;
    gap: 56px;
    align-items: flex-start
}

.lnch .rdytxt {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    gap: 32px
}

.lnch .rdytxt h2 {
    font-size: 51px;
    line-height: 1.2;
    letter-spacing: -.025em;
    color: #fff;
    margin: 0;
    font-style: italic
}

.lnch .rdytxt p {
    font-size: 17px;
    line-height: 1.7;
    color: #ffffffa6;
    margin: 0
}

.lnch .rdyimg {
    flex: 0 0 42%
}

.lnch .rdyimg img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    border-radius: 16px;
    filter: saturate(0.65) brightness(0.88);
    box-shadow: 0 10px 40px 0 #161f2a1a;
    display: block
}

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

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

.lnch .rdystepnum {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid #c3d4fe4d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: #C3D4FE;
    position: relative
}

.lnch .rdystepnum::before {
    content: "";
    position: absolute;
    inset: -1.5px;
    border-radius: 50%;
    border: 1.5px solid transparent;
    border-top-color: #FF2D26;
    transform: rotate(45deg)
}

.lnch .rdystep p {
    font-size: 15px;
    line-height: 1.7;
    color: #ffffff9e;
    margin: 0;
    padding-top: 8px
}

@media (max-width: 1024px) {
    .lnch .tblkh1 {
        font-size: 51px
    }

    .lnch .tblkh1 span {
        font-size: 34px
    }

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

    .lnch .adpblk .pgwrap,
    .lnch .rdyblk .pgwrap {
        flex-direction: column
    }

    .lnch .adpimg,
    .lnch .rdyimg {
        flex: 0 0 auto;
        width: 100%
    }

    .lnch .adpimg img,
    .lnch .rdyimg img {
        height: 340px
    }

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

@media (max-width: 640px) {
    .lnch .pgwrap {
        padding: 0 16px
    }

    .lnch .tblk {
        padding: 56px 0 32px
    }

    .lnch .tblk .pgwrap {
        flex-direction: column;
        gap: 32px
    }

    .lnch .tblktext {
        flex: 0 0 auto
    }

    .lnch .tblkh1 {
        font-size: 51px
    }

    .lnch .tblkh1 span {
        font-size: 34px
    }

    .lnch .tblkimg img {
        height: 280px
    }

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

    .lnch .sitblk {
        padding: 56px 0
    }

    .lnch .adpblk {
        padding: 56px 0
    }

    .lnch .adptxt h2,
    .lnch .probblk h2,
    .lnch .rdytxt h2 {
        font-size: 34px
    }

    .lnch .rdyblk {
        padding: 56px 0
    }

    .lnch .probblk {
        padding: 56px 0
    }
}

@media (max-width: 360px) {
    .lnch .tblkh1 {
        font-size: 34px
    }

    .lnch .tblkh1 span {
        font-size: 25px
    }
}

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

.trlac .splt {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 88vh;
    max-width: 1500px;
    margin: 0 auto
}

.trlac .splt-txt {
    background: #161F2A;
    padding: 96px 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative
}

.trlac .splt-txt::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(157deg, #161F2A 60%, #1e2d42 100%);
    background-size: 200% 200%;
    animation: bgbreathe 10s ease-in-out infinite;
    z-index: 0
}

@keyframes bgbreathe {

    0%,
    100% {
        background-size: 200% 200%;
        background-position: 0 0
    }

    50% {
        background-size: 220% 220%;
        background-position: 100% 100%
    }
}

.trlac .splt-txt>* {
    position: relative;
    z-index: 1
}

.trlac .splt-img {
    position: relative;
    overflow: hidden
}

.trlac .splt-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transition: opacity .55s cubic-bezier(0.16, 1, 0.3, 1);
    filter: blur(0px)
}

.trlac .splt-img img.loaded {
    opacity: 1
}

.trlac .splt-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #161f2a2e 0%, transparent 60%);
    pointer-events: none
}

.trlac .lbl {
    font-size: 15px;
    letter-spacing: .18em;
    color: #C3D4FE;
    text-transform: uppercase;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 8px
}

.trlac .lbl-dot {
    width: 6px;
    height: 6px;
    border-radius: 2px;
    background: #FF2D26;
    display: inline-block;
    flex-shrink: 0
}

.trlac .splt-h1 {
    font-size: 68px;
    line-height: 1.2;
    letter-spacing: -.02em;
    color: #fff;
    font-style: italic;
    margin-bottom: 32px
}

.trlac .splt-h1 em {
    font-style: normal;
    color: #C3D4FE
}

.trlac .splt-desc {
    font-size: 17px;
    line-height: 1.7;
    color: #c3d4fec7;
    max-width: 420px;
    margin-bottom: 56px
}

.trlac .arw {
    width: 32px;
    height: 32px;
    opacity: .28;
    margin-bottom: 32px
}

.trlac .arw svg {
    width: 32px;
    height: 32px
}

.trlac .ctabtn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #FF2D26;
    color: #fff;
    font-size: 15px;
    letter-spacing: .04em;
    padding: 16px 32px;
    border-radius: 2px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    overflow: hidden;
    position: relative;
    transition: background .42s cubic-bezier(0.16, 1, 0.3, 1), box-shadow .42s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 2px 6px 0 #ff2d260f;
    align-self: flex-start
}

.trlac .ctabtn:hover {
    background: #e02520;
    box-shadow: 0 4px 25px 0 #ff2d261a
}

.trlac .ctabtn:active {
    box-shadow: inset 0 2px 6px 0 #ff2d262e
}

.trlac .ctabtn .btn-icon {
    width: 16px;
    height: 16px;
    transform: translateX(-4px);
    opacity: 0;
    transition: transform .38s cubic-bezier(0.16, 1, 0.3, 1), opacity .38s cubic-bezier(0.16, 1, 0.3, 1);
    flex-shrink: 0
}

.trlac .ctabtn .btn-txt {
    transition: transform .38s cubic-bezier(0.16, 1, 0.3, 1)
}

.trlac .ctabtn:hover .btn-icon {
    transform: translateX(0);
    opacity: 1
}

.trlac .ctabtn:hover .btn-txt {
    transform: translateX(4px)
}

.trlac .divdr {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 56px;
    display: flex;
    align-items: center;
    gap: 8px
}

.trlac .divdr-line {
    flex: 1;
    height: 1px;
    background: repeating-linear-gradient(90deg, #161F2A 0px, #161F2A 4px, transparent 4px, transparent 8px, #161F2A 8px, #161F2A 10px, transparent 10px, transparent 16px);
    opacity: .14
}

.trlac .divdr-mid {
    width: 6px;
    height: 6px;
    border-radius: 2px;
    background: #FF2D26;
    opacity: .5
}

.trlac .steps {
    background: #F4F6FB;
    padding: 96px 0;
    position: relative
}

.trlac .steps::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 100%;
    background: #C3D4FE
}

.trlac .steps-inner {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 56px
}

.trlac .steps-head {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 56px;
    align-items: end;
    margin-bottom: 56px
}

.trlac .steps-h2 {
    font-size: 51px;
    line-height: 1.2;
    letter-spacing: -.015em;
    color: #161F2A;
    font-style: italic
}

.trlac .steps-sub {
    font-size: 15px;
    line-height: 1.7;
    color: #161f2a99
}

.trlac .steps-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 32px
}

.trlac .step {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    position: relative;
    box-shadow: 0 2px 6px 0 #161f2a0f;
    transition: box-shadow .45s cubic-bezier(0.16, 1, 0.3, 1)
}

.trlac .step:hover {
    box-shadow: 0 10px 40px 0 #161f2a1a
}

.trlac .step.featured {
    background: #161F2A;
    grid-row: span 2
}

.trlac .step-num {
    font-size: 15px;
    letter-spacing: .12em;
    color: #FF2D26;
    margin-bottom: 16px;
    font-style: italic
}

.trlac .step.featured .step-num {
    color: #c3d4fe99
}

.trlac .step-h {
    font-size: 17px;
    line-height: 1.2;
    color: #161F2A;
    margin-bottom: 16px;
    font-style: italic
}

.trlac .step.featured .step-h {
    font-size: 51px;
    line-height: 1.2;
    letter-spacing: -.015em;
    color: #fff
}

.trlac .step-p {
    font-size: 15px;
    line-height: 1.7;
    color: #161f2a9e
}

.trlac .step.featured .step-p {
    color: #c3d4feb3;
    font-size: 17px
}

.trlac .step-cnt {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 28px;
    height: 28px;
    border-radius: 2px;
    background: #c3d4fe2e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: #C3D4FE
}

.trlac .step.featured .step-cnt {
    background: #c3d4fe1f
}

.trlac .step-icon {
    width: 36px;
    height: 36px;
    margin-bottom: 16px
}

.trlac .step-icon svg {
    width: 36px;
    height: 36px
}

.trlac .step-underline {
    height: 2px;
    background: #C3D4FE;
    border-radius: 2px;
    margin-top: 16px;
    animation: lineexp 3.5s ease-in-out infinite;
    transform-origin: left
}

@keyframes lineexp {

    0%,
    100% {
        transform: scaleX(0.3);
        opacity: .5
    }

    50% {
        transform: scaleX(1);
        opacity: 1
    }
}

.trlac .step.featured .step-underline {
    background: #FF2D26
}

.trlac .step-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: #fff;
    text-decoration: none;
    margin-top: 32px;
    border-bottom: 1px solid #c3d4fe4d;
    padding-bottom: 8px;
    transition: color .4s ease-in-out, border-color .4s ease-in-out
}

.trlac .step-link:hover {
    color: #C3D4FE;
    border-color: #C3D4FE
}

.trlac .step-link .btn-icon {
    width: 14px;
    height: 14px;
    transform: translateX(-4px);
    opacity: 0;
    transition: transform .38s cubic-bezier(0.16, 1, 0.3, 1), opacity .38s cubic-bezier(0.16, 1, 0.3, 1);
    flex-shrink: 0
}

.trlac .step-link .btn-txt {
    transition: transform .38s cubic-bezier(0.16, 1, 0.3, 1)
}

.trlac .step-link:hover .btn-icon {
    transform: translateX(0);
    opacity: 1
}

.trlac .step-link:hover .btn-txt {
    transform: translateX(4px)
}

@media (max-width: 1024px) {
    .trlac .splt {
        grid-template-columns: 1fr
    }

    .trlac .splt-img {
        height: 420px
    }

    .trlac .splt-h1 {
        font-size: 51px
    }

    .trlac .splt-txt {
        padding: 56px 32px
    }

    .trlac .steps-inner {
        padding: 0 32px
    }

    .trlac .steps-head {
        grid-template-columns: 1fr;
        gap: 16px
    }

    .trlac .steps-grid {
        grid-template-columns: 1fr 1fr
    }

    .trlac .step.featured {
        grid-column: span 2;
        grid-row: span 1
    }

    .trlac .step.featured .step-h {
        font-size: 34px
    }

    .trlac .divdr {
        padding: 0 32px
    }
}

@media (max-width: 640px) {
    .trlac .splt-h1 {
        font-size: 51px
    }

    .trlac .splt-txt {
        padding: 56px 16px
    }

    .trlac .steps {
        padding: 56px 0
    }

    .trlac .steps-inner {
        padding: 0 16px
    }

    .trlac .steps-grid {
        grid-template-columns: 1fr
    }

    .trlac .step.featured {
        grid-column: span 1
    }

    .trlac .step.featured .step-h {
        font-size: 34px
    }

    .trlac .divdr {
        padding: 0 16px
    }
}

@media (max-width: 360px) {
    .trlac .splt-h1 {
        font-size: 34px
    }

    .trlac .steps-h2 {
        font-size: 34px
    }
}

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

.abtus .row-full {
    max-width: 1500px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 32px;
    padding-right: 32px
}

.abtus ::selection {
    background: #161F2A;
    color: #C3D4FE;
    font-weight: 700
}

.abtus img {
    opacity: 0;
    transition: opacity .45s cubic-bezier(0.16, 1, 0.3, 1)
}

.abtus img.loaded {
    opacity: 1
}

.abtus .titl {
    position: relative;
    padding: 96px 32px;
    background: #161F2A;
    overflow: hidden
}

.abtus .titl::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(137deg, #161f2af7 0%, #c3d4fe21 55%, #ff2d262e 100%);
    z-index: 0
}

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

.abtus .titl-lines {
    position: absolute;
    top: 32px;
    right: 56px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 2;
    pointer-events: none
}

.abtus .titl-lines span {
    display: block;
    height: 1px;
    background: #c3d4fe38
}

.abtus .titl-lines span:nth-child(1) {
    width: 56px
}

.abtus .titl-lines span:nth-child(2) {
    width: 40px
}

.abtus .titl-lines span:nth-child(3) {
    width: 72px
}

.abtus .titl-lines span:nth-child(4) {
    width: 32px
}

.abtus .titl-grid {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 56px;
    max-width: 1500px;
    margin: 0 auto
}

.abtus .titl-copy {
    flex: 1 1 0;
    min-width: 0
}

.abtus .titl-tag {
    display: inline-block;
    font-size: 15px;
    line-height: 1.2;
    letter-spacing: .14em;
    color: #C3D4FE;
    text-transform: uppercase;
    margin-bottom: 16px
}

.abtus .titl-h1 {
    font-size: 68px;
    line-height: 1.2;
    letter-spacing: -.03em;
    color: #fff;
    margin: 0 0 32px;
    font-style: italic
}

.abtus .titl-sub {
    font-size: 17px;
    line-height: 1.7;
    color: #c3d4fed1;
    max-width: 520px;
    margin: 0 0 32px
}

.abtus .titl-link {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    line-height: 1.2;
    color: #fff;
    background: #FF2D26;
    padding: 16px 32px;
    border-radius: 2px;
    text-decoration: none;
    overflow: hidden;
    transition: background .42s cubic-bezier(0.16, 1, 0.3, 1), box-shadow .42s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 25px 0 #ff2d261a
}

.abtus .titl-link:hover {
    background: #d41f19;
    box-shadow: 0 10px 40px 0 #ff2d261a
}

.abtus .titl-link .lnk-icon {
    transform: translateX(-8px);
    opacity: 0;
    transition: transform .38s cubic-bezier(0.16, 1, 0.3, 1), opacity .38s cubic-bezier(0.16, 1, 0.3, 1)
}

.abtus .titl-link .lnk-txt {
    transition: transform .38s cubic-bezier(0.16, 1, 0.3, 1)
}

.abtus .titl-link:hover .lnk-icon {
    transform: translateX(0);
    opacity: 1
}

.abtus .titl-link:hover .lnk-txt {
    transform: translateX(6px)
}

.abtus .titl-imgwrap {
    flex: 0 0 420px;
    width: 420px;
    height: 480px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 40px 0 #161f2a1a
}

.abtus .titl-imgwrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.abtus .titl-imgwrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to left, #161f2a8c 0%, transparent 60%);
    pointer-events: none
}

.abtus .story {
    padding: 96px 32px;
    background: #f4f6fb
}

.abtus .story-inner {
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    gap: 56px;
    align-items: flex-start
}

.abtus .story-text {
    flex: 1 1 0;
    min-width: 0
}

.abtus .story-label {
    font-size: 15px;
    line-height: 1.2;
    letter-spacing: .12em;
    color: #FF2D26;
    text-transform: uppercase;
    margin-bottom: 16px;
    display: block
}

.abtus .story-h2 {
    font-size: 51px;
    line-height: 1.2;
    letter-spacing: -.025em;
    color: #161F2A;
    margin: 0 0 32px;
    font-style: italic
}

.abtus .story-p {
    font-size: 17px;
    line-height: 1.7;
    color: #2e3a4a;
    margin: 0 0 16px
}

.abtus .story-aside {
    flex: 0 0 340px;
    width: 340px
}

.abtus .detcard {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 25px 0 #161f2a1a;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px
}

.abtus .detcard-head {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    margin-bottom: 8px
}

.abtus .detcard-status {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #34c759;
    flex-shrink: 0;
    box-shadow: 0 0 0 3px #34c7592e
}

.abtus .detcard-title {
    font-size: 15px;
    line-height: 1.2;
    color: #161F2A;
    font-weight: 700;
    letter-spacing: .04em
}

.abtus .detcard-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #161f2a12
}

.abtus .detcard-row:last-child {
    border-bottom: none
}

.abtus .detcard-key {
    font-size: 15px;
    line-height: 1.2;
    color: #6a7a8e;
    letter-spacing: .02em
}

.abtus .detcard-val {
    font-size: 15px;
    line-height: 1.2;
    color: #161F2A;
    font-weight: 600
}

.abtus .detcard-val.red {
    color: #FF2D26
}

.abtus .team {
    padding: 96px 32px;
    background: #161F2A;
    position: relative;
    overflow: hidden
}

.abtus .team-drift {
    position: absolute;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: #ff2d2617;
    filter: blur(80px);
    top: -80px;
    right: -80px;
    pointer-events: none;
    animation: driftmove 7s ease-in-out infinite alternate
}

@keyframes driftmove {
    from {
        transform: translate(0, 0)
    }

    to {
        transform: translate(-56px, 56px)
    }
}

.abtus .team-inner {
    max-width: 1500px;
    margin: 0 auto;
    position: relative;
    z-index: 1
}

.abtus .team-top {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 56px;
    gap: 32px
}

.abtus .team-h2 {
    font-size: 51px;
    line-height: 1.2;
    letter-spacing: -.025em;
    color: #fff;
    margin: 0;
    font-style: italic
}

.abtus .team-sub {
    font-size: 17px;
    line-height: 1.7;
    color: #c3d4feb8;
    max-width: 380px;
    margin: 0
}

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

.abtus .tmcard {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    background: #c3d4fe0d
}

.abtus .tmcard-img {
    width: 100%;
    height: 360px;
    display: block;
    object-fit: cover;
    object-position: top center;
    transition: transform .5s cubic-bezier(0.16, 1, 0.3, 1)
}

.abtus .tmcard:hover .tmcard-img {
    transform: scale(1.04)
}

.abtus .tmcard-overlay {
    position: absolute;
    inset: 0;
    background: #161f2a00;
    transition: background .45s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 32px
}

.abtus .tmcard:hover .tmcard-overlay {
    background: #161f2ab8
}

.abtus .tmcard-info {
    transform: translateY(16px);
    opacity: 0;
    transition: transform .45s cubic-bezier(0.16, 1, 0.3, 1), opacity .4s cubic-bezier(0.16, 1, 0.3, 1)
}

.abtus .tmcard:hover .tmcard-info {
    transform: translateY(0);
    opacity: 1
}

.abtus .tmcard-name {
    font-size: 17px;
    line-height: 1.2;
    color: #fff;
    font-weight: 700;
    margin: 0 0 8px
}

.abtus .tmcard-role {
    font-size: 15px;
    line-height: 1.2;
    color: #C3D4FE;
    margin: 0;
    letter-spacing: .06em;
    text-transform: uppercase
}

.abtus .tmcard-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #FF2D26;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .42s cubic-bezier(0.16, 1, 0.3, 1)
}

.abtus .tmcard:hover .tmcard-bar {
    transform: scaleX(1)
}

.abtus .appr {
    padding: 96px 32px;
    background: #fff;
    position: relative
}

.abtus .appr-deco {
    position: absolute;
    bottom: 56px;
    left: 32px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    pointer-events: none
}

.abtus .appr-deco span {
    display: block;
    height: 1px;
    background: #161f2a1a
}

.abtus .appr-deco span:nth-child(1) {
    width: 48px
}

.abtus .appr-deco span:nth-child(2) {
    width: 32px
}

.abtus .appr-deco span:nth-child(3) {
    width: 64px
}

.abtus .appr-deco span:nth-child(4) {
    width: 24px
}

.abtus .appr-inner {
    max-width: 1500px;
    margin: 0 auto
}

.abtus .appr-head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: end;
    margin-bottom: 56px
}

.abtus .appr-h2 {
    font-size: 51px;
    line-height: 1.2;
    letter-spacing: -.025em;
    color: #161F2A;
    margin: 0;
    font-style: italic
}

.abtus .appr-desc {
    font-size: 17px;
    line-height: 1.7;
    color: #2e3a4a;
    margin: 0
}

.abtus .appr-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px
}

.abtus .appr-imgblock {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 25px 0 #161f2a1a
}

.abtus .appr-imgblock img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 400px
}

.abtus .appr-imgblock::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, #161f2a8c 100%);
    pointer-events: none
}

.abtus .appr-imgcaption {
    position: absolute;
    bottom: 32px;
    left: 32px;
    right: 32px;
    z-index: 1
}

.abtus .appr-imgcaption-h {
    font-size: 17px;
    line-height: 1.2;
    color: #fff;
    font-weight: 700;
    margin: 0 0 8px
}

.abtus .appr-imgcaption-p {
    font-size: 15px;
    line-height: 1.7;
    color: #c3d4fed9;
    margin: 0
}

.abtus .appr-steps {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.abtus .appr-step {
    background: #f4f6fb;
    border-radius: 16px;
    padding: 32px;
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: flex-start;
    transition: box-shadow .4s cubic-bezier(0.16, 1, 0.3, 1), background .4s cubic-bezier(0.16, 1, 0.3, 1)
}

.abtus .appr-step:hover {
    background: #fff;
    box-shadow: 0 4px 25px 0 #161f2a1a
}

.abtus .appr-stepnum {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 2px;
    background: #161F2A;
    color: #C3D4FE;
    font-size: 15px;
    line-height: 32px;
    text-align: center;
    font-weight: 700
}

.abtus .appr-steptxt {
    flex: 1 1 0;
    min-width: 0
}

.abtus .appr-steph {
    font-size: 17px;
    line-height: 1.2;
    color: #161F2A;
    font-weight: 700;
    margin: 0 0 8px
}

.abtus .appr-stepp {
    font-size: 15px;
    line-height: 1.7;
    color: #4a5a6a;
    margin: 0
}

.abtus .appr-cta {
    margin-top: 56px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 32px;
    padding: 56px;
    background: linear-gradient(137deg, #161F2A 0%, #161f2aeb 60%, #ff2d262e 100%);
    border-radius: 24px;
    position: relative;
    overflow: hidden
}

.abtus .appr-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    background-size: 200px 200px;
    pointer-events: none;
    border-radius: 24px
}

.abtus .appr-ctacopy {
    flex: 1 1 0;
    min-width: 0;
    position: relative;
    z-index: 1
}

.abtus .appr-ctah {
    font-size: 51px;
    line-height: 1.2;
    letter-spacing: -.025em;
    color: #fff;
    margin: 0 0 16px;
    font-style: italic
}

.abtus .appr-ctap {
    font-size: 17px;
    line-height: 1.7;
    color: #c3d4fecc;
    margin: 0
}

.abtus .appr-ctabtns {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    z-index: 1
}

.abtus .btn-primary {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    line-height: 1.2;
    color: #fff;
    background: #FF2D26;
    padding: 16px 32px;
    border-radius: 2px;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    transition: background .42s cubic-bezier(0.16, 1, 0.3, 1), box-shadow .42s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 2px 6px 0 #ff2d260f
}

.abtus .btn-primary:hover {
    background: #d41f19;
    box-shadow: 0 10px 40px 0 #ff2d261a
}

.abtus .btn-primary .bico {
    transform: translateX(-8px);
    opacity: 0;
    transition: transform .38s cubic-bezier(0.16, 1, 0.3, 1), opacity .38s cubic-bezier(0.16, 1, 0.3, 1)
}

.abtus .btn-primary .btxt {
    transition: transform .38s cubic-bezier(0.16, 1, 0.3, 1)
}

.abtus .btn-primary:hover .bico {
    transform: translateX(0);
    opacity: 1
}

.abtus .btn-primary:hover .btxt {
    transform: translateX(6px)
}

.abtus .btn-ghost {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    line-height: 1.2;
    color: #C3D4FE;
    background: transparent;
    padding: 16px 32px;
    border-radius: 2px;
    text-decoration: none;
    white-space: nowrap;
    border: 1px solid #c3d4fe47;
    overflow: hidden;
    transition: border-color .4s cubic-bezier(0.16, 1, 0.3, 1), color .4s cubic-bezier(0.16, 1, 0.3, 1)
}

.abtus .btn-ghost:hover {
    border-color: #c3d4feb3;
    color: #fff
}

.abtus .div-dots {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 0;
    background: #f4f6fb
}

.abtus .div-dots span {
    display: block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #161f2a2e
}

.abtus .div-dots span:nth-child(3n+1) {
    background: #ff2d2652
}

.abtus .div-line {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: #161F2A
}

.abtus .div-line-inner {
    height: 1px;
    width: 100%;
    max-width: 1500px;
    background: #c3d4fe1a;
    margin: 0 32px
}

.abtus .div-geo {
    display: flex;
    flex-direction: row;
    overflow: hidden;
    background: #fff;
    padding: 0
}

.abtus .div-geo-item {
    flex: 1 1 0;
    height: 4px
}

.abtus .div-geo-item:nth-child(odd) {
    background: #161F2A
}

.abtus .div-geo-item:nth-child(even) {
    background: #C3D4FE
}

.abtus .div-geo-item:nth-child(3n) {
    background: #FF2D26
}

@media (max-width: 1024px) {
    .abtus .titl-imgwrap {
        flex: 0 0 320px;
        width: 320px;
        height: 380px
    }

    .abtus .titl-h1 {
        font-size: 51px
    }

    .abtus .appr-head {
        grid-template-columns: 1fr;
        gap: 32px
    }

    .abtus .appr-body {
        grid-template-columns: 1fr
    }

    .abtus .appr-imgblock img {
        min-height: 280px
    }

    .abtus .appr-cta {
        flex-direction: column;
        gap: 32px;
        padding: 32px
    }

    .abtus .appr-ctah {
        font-size: 51px
    }

    .abtus .team-top {
        flex-direction: column;
        align-items: flex-start
    }

    .abtus .team-h2 {
        font-size: 51px
    }
}

@media (max-width: 640px) {
    .abtus .titl {
        padding: 56px 16px
    }

    .abtus .titl-grid {
        flex-direction: column;
        gap: 32px
    }

    .abtus .titl-imgwrap {
        flex: none;
        width: 100%;
        height: 260px
    }

    .abtus .titl-h1 {
        font-size: 51px
    }

    .abtus .story {
        padding: 56px 16px
    }

    .abtus .story-inner {
        flex-direction: column;
        gap: 32px
    }

    .abtus .story-aside {
        width: 100%;
        flex: none
    }

    .abtus .story-h2 {
        font-size: 51px
    }

    .abtus .team {
        padding: 56px 16px
    }

    .abtus .team-grid {
        grid-template-columns: 1fr
    }

    .abtus .team-h2 {
        font-size: 51px
    }

    .abtus .appr {
        padding: 56px 16px
    }

    .abtus .appr-h2,
    .abtus .appr-ctah {
        font-size: 51px
    }

    .abtus .appr-cta {
        padding: 32px 16px
    }

    .abtus .appr-ctabtns {
        width: 100%
    }

    .abtus .btn-primary,
    .abtus .btn-ghost {
        width: 100%;
        justify-content: center
    }

    .abtus .row-full {
        padding-left: 16px;
        padding-right: 16px
    }
}

@media (max-width: 360px) {
    .abtus .titl-h1 {
        font-size: 51px
    }

    .abtus .story-h2,
    .abtus .team-h2,
    .abtus .appr-h2,
    .abtus .appr-ctah {
        font-size: 51px
    }
}

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

.successPage .successWrap {
    max-width: 560px;
    width: 100%;
    text-align: center
}

.successPage .successIcon {
    width: 64px;
    height: 64px;
    margin: 0 auto 32px;
    display: block
}

.successPage .successIcon circle {
    fill: none;
    stroke: #C3D4FE;
    stroke-width: 2
}

.successPage .successIcon path {
    fill: none;
    stroke: #161F2A;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round
}

.successPage .successHeading {
    font-size: 51px;
    line-height: 1.2;
    letter-spacing: -.02em;
    color: #161F2A;
    margin: 0 0 16px;
    font-style: italic
}

.successPage .successSub {
    font-size: 17px;
    line-height: 1.7;
    color: #161F2A;
    opacity: .72;
    margin: 0 0 32px
}

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

.successPage .successBack {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    line-height: 1.2;
    color: #fff;
    background: #161F2A;
    padding: 16px 32px;
    border-radius: 16px;
    text-decoration: none;
    letter-spacing: .04em;
    box-shadow: 0 4px 25px 0 #161f2a1a;
    transition: background .42s cubic-bezier(0.16, 1, 0.3, 1), box-shadow .38s ease-in-out;
    position: relative;
    overflow: hidden
}

.successPage .successBack:hover {
    background: #FF2D26;
    box-shadow: 0 10px 40px 0 #ff2d261a
}

.successPage .successBack svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    transition: transform .45s cubic-bezier(0.16, 1, 0.3, 1)
}

.successPage .successBack:hover svg {
    transform: translateX(4px)
}

@media (max-width: 640px) {
    .successPage {
        padding: 56px 16px
    }

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

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