@import "https://cdn.jsdelivr.net/npm/@fontsource/jetbrains-mono@latest/400.css";
@import "https://cdn.jsdelivr.net/npm/@fontsource/jetbrains-mono@latest/600.css";
@import "https://cdn.jsdelivr.net/npm/@fontsource/jetbrains-mono@latest/700.css";
@import "https://cdn.jsdelivr.net/npm/@fontsource/nunito@latest/400.css";
@import "https://cdn.jsdelivr.net/npm/@fontsource/nunito@latest/600.css";
@import "https://cdn.jsdelivr.net/npm/@fontsource/nunito@latest/700.css";

* {
    box-sizing: border-box
}

body {
    margin: 0
}

.topbar {
    background: linear-gradient(135deg, #f8f9fa 0%, #fefefe 50%, #f5f7f8 100%);
    border-bottom: 1px solid #c0555f1f;
    box-shadow: 1px 2px 3px 0 #c0555f0f 1px 5px 14px 0 #c0555f14;
    font-family: 'Nunito', sans-serif;
    position: relative
}

.topbar::before {
    background-image: repeating-linear-gradient(45deg, transparent, transparent 8px, #325f3004 8px, #325f3004 16px), repeating-linear-gradient(-45deg, transparent, transparent 8px, #c0555f04 8px, #c0555f04 16px);
    content: '';
    height: 100%;
    left: 0;
    pointer-events: none;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1
}

.topbar .maxw {
    margin: 0 auto;
    max-width: 1100px;
    padding: 16px 28px;
    position: relative;
    z-index: 2
}

.brandblock {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px
}

.brandblock .logowrap {
    background: linear-gradient(135deg, #fff 0%, #fefefe 100%);
    border: 2px solid #325f3026;
    border-radius: 16px;
    box-shadow: inset 1px 1px 4px 0 #c0555f14 1px 2px 3px 0 #c0555f0f 1px 5px 14px 0 #325f3014;
    display: inline-block;
    padding: 8px 16px
}

.brandblock .logowrap img {
    display: block;
    height: 68px;
    object-fit: contain;
    width: auto
}

.brandblock .compname {
    color: #2d2d2d;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -.015em;
    line-height: 1.1;
    margin: 0;
    text-align: center
}

.brandblock .tagline {
    color: #5a5a5a;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: .01em;
    line-height: 1.1;
    margin: 0;
    text-align: center
}

.navwrap {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    justify-content: center
}

.navwrap a {
    background: transparent;
    border: 1px solid transparent;
    border-radius: 5px;
    color: #325F30;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .005em;
    padding: 8px 16px;
    text-decoration: none;
    transition: background-color .18s ease-out, border-color .18s ease-out, color .18s ease-out, box-shadow .18s ease-out
}

.navwrap a:hover {
    background: linear-gradient(135deg, #c0555f14 0%, #c0555f1f 100%);
    border-color: #c0555f40;
    box-shadow: 1px 2px 3px 0 #c0555f0f;
    color: #C0555F
}

.navwrap a:focus {
    animation: dashrotate 3s linear infinite;
    outline: 2px dashed #325F30;
    outline-offset: 4px
}

@keyframes dashrotate {
    to {
        outline-offset: 8px
    }
}

.announce {
    align-items: center;
    background: linear-gradient(135deg, #eedd8340 0%, #eedd8326 100%);
    border: 1px solid #eedd8366;
    border-radius: 26px;
    box-shadow: 1px 2px 3px 0 #325f300f;
    display: flex;
    gap: 8px;
    margin-top: 16px;
    padding: 8px 16px
}

.announce .icon {
    flex-shrink: 0
}

.announce .icon svg {
    display: block;
    height: 20px;
    width: 20px
}

.announce .txt {
    color: #3d3d3d;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: .005em;
    line-height: 1.75;
    margin: 0
}

@media (min-width: 600px) {
    .brandblock {
        flex-direction: row;
        gap: 16px;
        margin-bottom: 28px
    }

    .brandblock .compname,
    .brandblock .tagline {
        text-align: left
    }

    .navwrap {
        justify-content: flex-start
    }
}

@media (min-width: 900px) {
    .topbar .maxw {
        padding: 28px 56px
    }

    .brandblock .logowrap img {
        height: 72px
    }

    .brandblock .compname {
        font-size: 42px
    }

    .brandblock .tagline {
        font-size: 22px
    }

    .navwrap a {
        font-size: 22px;
        padding: 8px 28px
    }

    .announce {
        margin-top: 28px;
        padding: 16px 28px
    }

    .announce .icon svg {
        height: 24px;
        width: 24px
    }

    .announce .txt {
        font-size: 22px
    }
}

.ftbar {
    background: linear-gradient(135deg, #fafbfb 0%, #f7f8f9 100%);
    border-top: 1px solid #325f301f;
    box-shadow: 1px -2px 3px 0 #325f300f;
    font-family: 'Nunito', sans-serif;
    padding: 56px 28px 28px;
    position: relative
}

.ftbar::after {
    background-image: repeating-linear-gradient(90deg, transparent, transparent 12px, #c0555f05 12px, #c0555f05 24px);
    content: '';
    height: 100%;
    left: 0;
    pointer-events: none;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1
}

.ftbar .maxw {
    margin: 0 auto;
    max-width: 1100px;
    position: relative;
    z-index: 2
}

.ftbrand {
    align-items: center;
    border-bottom: 1px solid #c0555f26;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 28px;
    padding-bottom: 28px
}

.ftbrand .logowrap {
    background: #fff;
    border: 1px solid #325f3033;
    border-radius: 5px;
    box-shadow: inset 1px 1px 3px 0 #325f300d 1px 2px 3px 0 #325f300f;
    display: inline-block;
    padding: 4px 8px
}

.ftbrand .logowrap img {
    display: block;
    height: 48px;
    object-fit: contain;
    width: auto
}

.ftbrand .tagline {
    color: #4a4a4a;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: .008em;
    line-height: 1.75;
    margin: 0;
    text-align: center
}

.ftlinks {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 28px
}

.ftlinks a {
    background: transparent;
    border: 1px solid transparent;
    border-radius: 5px;
    color: #325F30;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .003em;
    padding: 8px 16px;
    text-align: center;
    text-decoration: none;
    transition: background-color .14s ease-out, border-color .14s ease-out, color .14s ease-out
}

.ftlinks a:hover {
    background: #c0555f14;
    border-color: #c0555f33;
    color: #C0555F
}

.ftlinks a:focus {
    animation: dashrotate 3s linear infinite;
    outline: 2px dashed #C0555F;
    outline-offset: 4px
}

.copyright {
    color: #6a6a6a;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: .005em;
    line-height: 1.75;
    margin: 0;
    text-align: center
}

@media (min-width: 600px) {
    .ftbrand {
        flex-direction: row;
        gap: 16px
    }

    .ftbrand .tagline {
        text-align: left
    }

    .ftlinks {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px 16px;
        justify-content: center
    }

    .ftlinks a {
        text-align: left
    }
}

@media (min-width: 900px) {
    .ftbar {
        padding: 56px
    }

    .ftbrand .logowrap img {
        height: 64px
    }

    .ftbrand .tagline {
        font-size: 22px
    }

    .ftlinks a {
        font-size: 22px;
        padding: 8px 28px
    }

    .copyright {
        font-size: 22px
    }
}

.cookiebox {
    background: linear-gradient(135deg, #fff 0%, #fefefe 100%);
    border: 2px solid #c0555f33;
    border-radius: 16px;
    box-shadow: 1px 5px 14px 0 #325f3014 1px 9px 40px 0 #325f301a;
    display: none;
    font-family: 'Nunito', sans-serif;
    left: 50%;
    max-width: 540px;
    opacity: 0;
    padding: 28px;
    position: fixed;
    top: 28px;
    transform: translateX(-50%) translateY(-16px);
    transition: opacity .22s cubic-bezier(0.4, 0, 0.6, 1), transform .22s cubic-bezier(0.4, 0, 0.6, 1);
    width: calc(100% - 32px);
    z-index: 1000
}

.cookiebox.vis {
    display: block
}

.cookiebox.active {
    opacity: 1;
    transform: translateX(-50%) translateY(0)
}

.cookiebox .hdln {
    color: #2d2d2d;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -.01em;
    line-height: 1.1;
    margin: 0 0 8px
}

.cookiebox .desc {
    color: #4a4a4a;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: .005em;
    line-height: 1.75;
    margin: 0 0 16px
}

.cookiebox .btns {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px
}

.cookiebox .btn {
    background: transparent;
    border: 1px solid #325f304d;
    border-radius: 5px;
    color: #325F30;
    cursor: pointer;
    font-family: 'Nunito', sans-serif;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .003em;
    padding: 8px 16px;
    transition: background-color .16s ease-out, border-color .16s ease-out, color .16s ease-out, box-shadow .16s ease-out
}

.cookiebox .btn:hover {
    background: linear-gradient(135deg, #325f3014 0%, #325f301f 100%);
    border-color: #325f3080;
    box-shadow: 1px 2px 3px 0 #325f300f;
    color: #325F30
}

.cookiebox .btn:focus {
    animation: dashrotate 3s linear infinite;
    outline: 2px dashed #325F30;
    outline-offset: 4px
}

.cookiebox .btn.primary {
    background: linear-gradient(135deg, #325F30 0%, #2a5028 100%);
    border-color: #325F30;
    color: #fff
}

.cookiebox .btn.primary:hover {
    background: linear-gradient(135deg, #2a5028 0%, #234520 100%);
    border-color: #2a5028;
    box-shadow: 1px 2px 3px 0 #325f300f 1px 5px 14px 0 #325f3014;
    color: #fff
}

.cookiebox .settingslink {
    background: transparent;
    border: none;
    color: #C0555F;
    cursor: pointer;
    font-family: 'Nunito', sans-serif;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .003em;
    padding: 0;
    text-decoration: underline;
    transition: color .14s ease-out
}

.cookiebox .settingslink:hover {
    color: #a04650
}

.cookiebox .settingslink:focus {
    animation: dashrotate 3s linear infinite;
    outline: 2px dashed #C0555F;
    outline-offset: 4px
}

.cookiebox .detailview {
    display: none;
    margin-top: 16px
}

.cookiebox .detailview.vis {
    display: block
}

.cookiebox .togglerow {
    align-items: center;
    background: #eedd831a;
    border: 1px solid #eedd834d;
    border-radius: 5px;
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
    padding: 8px 16px
}

.cookiebox .togglerow label {
    color: #3d3d3d;
    cursor: pointer;
    flex: 1;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .003em;
    line-height: 1.75
}

.cookiebox .togglerow input[type="checkbox"] {
    cursor: pointer;
    height: 20px;
    width: 20px
}

.cookiebox .togglerow input[type="checkbox"]:focus {
    animation: dashrotate 3s linear infinite;
    outline: 2px dashed #C0555F;
    outline-offset: 4px
}

@media (min-width: 600px) {
    .cookiebox {
        max-width: 640px;
        padding: 28px 56px;
        top: 56px
    }

    .cookiebox .hdln {
        font-size: 42px;
        margin-bottom: 16px
    }

    .cookiebox .desc {
        font-size: 22px;
        margin-bottom: 28px
    }

    .cookiebox .btns {
        gap: 16px;
        margin-bottom: 28px
    }

    .cookiebox .btn {
        font-size: 22px;
        padding: 8px 28px
    }

    .cookiebox .settingslink {
        font-size: 22px
    }

    .cookiebox .detailview {
        margin-top: 28px
    }

    .cookiebox .togglerow {
        margin-bottom: 16px;
        padding: 16px 28px
    }

    .cookiebox .togglerow label {
        font-size: 22px
    }

    .cookiebox .togglerow input[type="checkbox"] {
        height: 24px;
        width: 24px
    }
}

input::placeholder,
textarea::placeholder {
    opacity: 1;
    transition: opacity .18s ease-out
}

input:focus::placeholder,
textarea:focus::placeholder {
    opacity: 0
}

::selection {
    background: #c0555f1a;
    color: inherit
}

::-moz-selection {
    background: #c0555f1a;
    color: inherit
}

.pa-terms-info {
    max-width: 1100px;
    margin: 0 auto;
    padding: 56px 28px;
    background: #fff
}

.pa-terms-info h1 {
    font-size: 58px;
    line-height: 1.1;
    letter-spacing: -.02em;
    color: #1a1a1a;
    margin: 0 0 56px
}

.pa-terms-info h2 {
    font-size: 42px;
    line-height: 1.1;
    letter-spacing: -.01em;
    color: #2d2d2d;
    margin: 56px 0 28px
}

.pa-terms-info h3 {
    font-size: 22px;
    line-height: 1.1;
    letter-spacing: 0;
    color: #3a3a3a;
    margin: 28px 0 16px
}

.pa-terms-info h4,
.pa-terms-info h5,
.pa-terms-info h6 {
    font-size: 15px;
    line-height: 1.75;
    letter-spacing: .01em;
    color: #4a4a4a;
    margin: 28px 0 8px;
    font-weight: 600
}

.pa-terms-info p {
    font-size: 15px;
    line-height: 1.75;
    letter-spacing: .01em;
    color: #2d2d2d;
    margin: 0 0 16px
}

.pa-terms-info ul,
.pa-terms-info ol {
    font-size: 15px;
    line-height: 1.75;
    letter-spacing: .01em;
    color: #2d2d2d;
    margin: 0 0 16px;
    padding: 0 0 0 28px
}

.pa-terms-info ul ul,
.pa-terms-info ul ol,
.pa-terms-info ol ul,
.pa-terms-info ol ol {
    margin: 8px 0
}

.pa-terms-info li {
    margin: 0 0 8px
}

.pa-terms-info strong,
.pa-terms-info b {
    font-weight: 600;
    color: #1a1a1a
}

.pa-terms-info table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 0 28px;
    font-size: 15px;
    line-height: 1.75;
    letter-spacing: .01em;
    background: #fafafa;
    border-radius: 5px;
    overflow: hidden
}

.pa-terms-info thead {
    background: #C0555F;
    color: #fff
}

.pa-terms-info th {
    padding: 16px;
    text-align: left;
    font-weight: 600;
    border-bottom: 2px solid #c0555f33
}

.pa-terms-info td {
    padding: 16px;
    border-bottom: 1px solid #325f3014
}

.pa-terms-info tbody tr:last-child td {
    border-bottom: none
}

.pa-terms-info tbody tr:nth-child(even) {
    background: #fff
}

.pa-terms-info div {
    margin: 0 0 16px
}

@media (max-width: 900px) {
    .pa-terms-info {
        padding: 28px 16px
    }

    .pa-terms-info h1 {
        font-size: 42px;
        margin: 0 0 28px
    }

    .pa-terms-info h2 {
        font-size: 22px;
        margin: 28px 0 16px
    }

    .pa-terms-info table {
        font-size: 15px
    }

    .pa-terms-info th,
    .pa-terms-info td {
        padding: 8px
    }
}

@media (max-width: 600px) {
    .pa-terms-info {
        padding: 16px 8px
    }

    .pa-terms-info h1 {
        font-size: 22px
    }

    .pa-terms-info h2 {
        font-size: 22px
    }

    .pa-terms-info table {
        display: block;
        overflow-x: auto
    }
}

.phythtr {
    background: #fefefe;
    color: #1a1716;
    max-width: 100%;
    overflow-x: hidden
}

.phythtr .tpblk {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    max-width: 1100px;
    margin: 0 auto;
    padding: 56px 16px;
    gap: 28px;
    position: relative
}

.phythtr .tpblk::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 28px;
    right: 28px;
    bottom: 28px;
    border: 1px solid #c0555f33;
    pointer-events: none;
    z-index: 1
}

.phythtr .imstrip {
    flex: 0 0 180px;
    position: relative;
    clip-path: polygon(0 0, 100% 8%, 100% 92%, 0 100%)
}

.phythtr .imstrip img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block
}

.phythtr .tpcnt {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    position: relative;
    z-index: 2
}

.phythtr .tpcnt h1 {
    font-size: 72px;
    line-height: 1.1;
    letter-spacing: -.02em;
    margin: 0;
    font-weight: 700
}

.phythtr .tpcnt h1 .hl {
    background: linear-gradient(127deg, #C0555F 0%, #EEDD83 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent
}

.phythtr .tpcnt p {
    font-size: 22px;
    line-height: 1.75;
    letter-spacing: .01em;
    margin: 0;
    max-width: 680px
}

@media (max-width: 900px) {
    .phythtr .tpblk {
        flex-direction: column;
        padding: 28px 16px
    }

    .phythtr .imstrip {
        flex: 0 0 240px;
        clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%)
    }

    .phythtr .tpcnt h1 {
        font-size: 58px
    }
}

@media (max-width: 600px) {
    .phythtr .tpcnt h1 {
        font-size: 42px
    }

    .phythtr .tpcnt p {
        font-size: 15px
    }

    .phythtr .imstrip {
        flex: 0 0 200px
    }
}

.phythtr .divline {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 16px;
    position: relative;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center
}

.phythtr .divline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 1px;
    background: #325F30
}

.phythtr .divline::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: #325F30;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%)
}

.phythtr .prf {
    max-width: 1100px;
    margin: 0 auto;
    padding: 56px 16px;
    position: relative
}

.phythtr .prf::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 56px;
    background: #C0555F
}

.phythtr .prfgrd {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px
}

.phythtr .prfcard {
    background: #fff;
    border: 1px solid #325f301f;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 1px 2px 3px 0 #c0555f0f;
    transition: transform .18s cubic-bezier(0.4, 0, 0.6, 1), box-shadow .18s cubic-bezier(0.4, 0, 0.6, 1);
    position: relative;
    overflow: hidden
}

.phythtr .prfcard::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, #eedd8326 0%, transparent 70%);
    opacity: 0;
    transition: opacity .2s ease-out;
    pointer-events: none
}

.phythtr .prfcard:hover {
    transform: translateY(-4px);
    box-shadow: 1px 9px 40px 0 #c0555f1a
}

.phythtr .prfcard:hover::before {
    opacity: 1
}

.phythtr .prfcard h3 {
    font-size: 22px;
    line-height: 1.1;
    letter-spacing: -.01em;
    margin: 0 0 16px;
    font-weight: 600;
    color: #325F30
}

.phythtr .prfcard p {
    font-size: 15px;
    line-height: 1.75;
    letter-spacing: .005em;
    margin: 0
}

.phythtr .prfcard .num {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 72px;
    font-weight: 700;
    color: #c0555f14;
    line-height: 1;
    pointer-events: none
}

@media (max-width: 900px) {
    .phythtr .prfgrd {
        grid-template-columns: 1fr
    }
}

.phythtr .invst {
    background: linear-gradient(167deg, #fefaf5 0%, #f9f5f0 100%);
    padding: 56px 16px;
    position: relative;
    overflow: hidden
}

.phythtr .invst::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(167deg, transparent 0%, transparent 48%, #325F30 48%, #325F30 52%, transparent 52%, transparent 100%);
    opacity: .06;
    pointer-events: none
}

.phythtr .invcnt {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1
}

.phythtr .invhd {
    text-align: center;
    margin-bottom: 56px
}

.phythtr .invhd::before {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #C0555F;
    margin: 0 auto 16px
}

.phythtr .invhd h2 {
    font-size: 58px;
    line-height: 1.1;
    letter-spacing: -.02em;
    margin: 0 0 16px;
    font-weight: 700
}

.phythtr .invhd p {
    font-size: 22px;
    line-height: 1.75;
    letter-spacing: .01em;
    margin: 0;
    max-width: 720px;
    margin: 0 auto
}

.phythtr .invgrd {
    display: grid;
    grid-template-columns: 1fr 1fr 2fr;
    gap: 28px;
    align-items: start
}

.phythtr .invbox {
    background: #fff;
    border-radius: 26px;
    padding: 28px;
    box-shadow: 1px 5px 14px 0 #325f3014;
    transition: box-shadow .15s ease-out;
    height: 100%
}

.phythtr .invbox:hover {
    box-shadow: 1px 9px 40px 0 #325f301a
}

.phythtr .invbox h4 {
    font-size: 22px;
    line-height: 1.1;
    letter-spacing: -.01em;
    margin: 0 0 16px;
    font-weight: 600;
    color: #C0555F
}

.phythtr .invbox p {
    font-size: 15px;
    line-height: 1.75;
    letter-spacing: .005em;
    margin: 0 0 16px
}

.phythtr .invbox p:last-child {
    margin: 0
}

.phythtr .invbox.feat {
    background: linear-gradient(142deg, #fff 0%, #fef9f5 100%);
    border: 2px solid #c0555f26
}

.phythtr .invbox.feat h4 {
    font-size: 42px;
    margin-bottom: 28px
}

.phythtr .invbox.feat .imgwrp {
    width: 100%;
    height: 220px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 16px
}

.phythtr .invbox.feat .imgwrp img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

@media (max-width: 900px) {
    .phythtr .invgrd {
        grid-template-columns: 1fr
    }

    .phythtr .invhd h2 {
        font-size: 42px
    }

    .phythtr .invhd p {
        font-size: 15px
    }
}

.phythtr .cndtn {
    max-width: 1100px;
    margin: 0 auto;
    padding: 56px 16px
}

.phythtr .cndgrd {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: center
}

.phythtr .cndtxt h2 {
    font-size: 58px;
    line-height: 1.1;
    letter-spacing: -.02em;
    margin: 0 0 28px;
    font-weight: 700;
    color: #325F30
}

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

.phythtr .cnditem {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #325f301f;
    transition: transform .16s ease-out, border-color .16s ease-out;
    animation: cndappear .2s ease-out backwards
}

.phythtr .cnditem:nth-child(1) {
    animation-delay: .05s
}

.phythtr .cnditem:nth-child(2) {
    animation-delay: .1s
}

.phythtr .cnditem:nth-child(3) {
    animation-delay: .15s
}

.phythtr .cnditem:nth-child(4) {
    animation-delay: .2s
}

@keyframes cndappear {
    from {
        opacity: 0;
        transform: translateY(12px)
    }

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

.phythtr .cnditem:hover {
    transform: translateX(4px);
    border-color: #c0555f4d
}

.phythtr .cnditem .icn {
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
    border-radius: 5px;
    background: linear-gradient(135deg, #C0555F 0%, #EEDD83 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative
}

.phythtr .cnditem .icn::before {
    content: '';
    width: 12px;
    height: 6px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(-45deg) translateY(-2px)
}

.phythtr .cnditem p {
    flex: 1;
    font-size: 15px;
    line-height: 1.75;
    letter-spacing: .005em;
    margin: 0
}

.phythtr .cndimg {
    position: relative
}

.phythtr .cndimg .imgwrp {
    width: 100%;
    height: 480px;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 1px 9px 40px 0 #325f301a;
    position: relative
}

.phythtr .cndimg .imgwrp::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px dashed #c0555f4d;
    border-radius: 26px;
    pointer-events: none;
    z-index: 1;
    margin: 8px
}

.phythtr .cndimg .imgwrp img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

@media (max-width: 900px) {
    .phythtr .cndgrd {
        grid-template-columns: 1fr
    }

    .phythtr .cndtxt h2 {
        font-size: 42px
    }

    .phythtr .cndimg .imgwrp {
        height: 360px
    }
}

.phythtr .hest {
    background: #fff;
    padding: 56px 16px;
    position: relative
}

.phythtr .hestcnt {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 56px;
    align-items: center
}

.phythtr .hestlft {
    position: relative
}

.phythtr .hestlft .prt {
    width: 280px;
    height: 420px;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 1px 9px 40px 0 #c0555f1a;
    position: relative;
    margin: 0 auto
}

.phythtr .hestlft .prt img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block
}

.phythtr .hestlft .prt::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 3px solid #eedd8366;
    border-radius: 40px;
    pointer-events: none
}

.phythtr .hestrgt h2 {
    font-size: 58px;
    line-height: 1.1;
    letter-spacing: -.02em;
    margin: 0 0 28px;
    font-weight: 700
}

.phythtr .hestrgt h2::first-letter {
    font-size: 72px;
    color: #C0555F;
    float: left;
    line-height: .9;
    margin-right: 8px
}

.phythtr .hestrgt p {
    font-size: 15px;
    line-height: 1.75;
    letter-spacing: .005em;
    margin: 0 0 16px
}

.phythtr .hestrgt p:last-child {
    margin: 0
}

.phythtr .hestrgt .qte {
    background: linear-gradient(154deg, #fef9f5 0%, #f9f5f0 100%);
    border-left: 4px solid #C0555F;
    padding: 16px 28px;
    margin: 28px 0;
    border-radius: 5px;
    font-style: italic
}

@media (max-width: 900px) {
    .phythtr .hestcnt {
        grid-template-columns: 1fr;
        gap: 28px
    }

    .phythtr .hestrgt h2 {
        font-size: 42px
    }

    .phythtr .hestrgt h2::first-letter {
        font-size: 58px
    }

    .phythtr .hestlft .prt {
        width: 240px;
        height: 360px
    }
}

.phythtr .lngtrm {
    background: linear-gradient(167deg, #325F30 0%, #325F30 52%, transparent 52%, transparent 100%);
    padding: 56px 16px;
    position: relative
}

.phythtr .lngtcnt {
    max-width: 1100px;
    margin: 0 auto
}

.phythtr .lngthd {
    text-align: left;
    margin-bottom: 56px
}

.phythtr .lngthd h2 {
    font-size: 58px;
    line-height: 1.1;
    letter-spacing: -.02em;
    margin: 0 0 16px;
    font-weight: 700;
    color: #fff
}

.phythtr .lngthd p {
    font-size: 22px;
    line-height: 1.75;
    letter-spacing: .01em;
    margin: 0;
    color: #ffffffe6;
    max-width: 680px
}

.phythtr .lngtgrd {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px
}

.phythtr .lngtcard {
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 1px 5px 14px 0 #325f3014;
    transition: transform .18s cubic-bezier(0.4, 0, 0.6, 1);
    position: relative;
    overflow: hidden;
    animation: lngtslide .22s ease-out backwards
}

.phythtr .lngtcard:nth-child(1) {
    animation-delay: .05s
}

.phythtr .lngtcard:nth-child(2) {
    animation-delay: .1s
}

.phythtr .lngtcard:nth-child(3) {
    animation-delay: .15s
}

@keyframes lngtslide {
    from {
        opacity: 0;
        transform: translateY(20px)
    }

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

.phythtr .lngtcard:hover {
    transform: translateY(-8px)
}

.phythtr .lngtcard .imgwrp {
    width: 100%;
    height: 180px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 16px;
    position: relative
}

.phythtr .lngtcard .imgwrp img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .2s ease-out
}

.phythtr .lngtcard:hover .imgwrp img {
    transform: scale(1.05)
}

.phythtr .lngtcard h4 {
    font-size: 22px;
    line-height: 1.1;
    letter-spacing: -.01em;
    margin: 0 0 16px;
    font-weight: 600;
    color: #325F30
}

.phythtr .lngtcard p {
    font-size: 15px;
    line-height: 1.75;
    letter-spacing: .005em;
    margin: 0
}

.phythtr .lngtcard .tag {
    display: inline-block;
    background: linear-gradient(127deg, #c0555f1a 0%, #eedd831a 100%);
    color: #C0555F;
    font-size: 15px;
    padding: 4px 16px;
    border-radius: 40px;
    margin-top: 16px;
    font-weight: 600;
    border: 1px solid #c0555f33
}

@media (max-width: 900px) {
    .phythtr .lngtgrd {
        grid-template-columns: 1fr
    }

    .phythtr .lngthd h2 {
        font-size: 42px
    }

    .phythtr .lngthd p {
        font-size: 15px
    }
}

@media (max-width: 600px) {
    .phythtr .lngtcard .imgwrp {
        height: 160px
    }
}

.techreq {
    background: #FFF;
    color: #2A2A2A;
    overflow-x: hidden
}

.techreq .topzone {
    background: linear-gradient(127deg, #C0555F 0%, #325F30 100%);
    padding: 56px 16px;
    position: relative;
    overflow: hidden
}

.techreq .topzone::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -80px;
    width: 400px;
    height: 400px;
    background: #eedd8326;
    border-radius: 50%;
    pointer-events: none
}

.techreq .topzone::after {
    content: '01';
    position: absolute;
    bottom: -40px;
    left: 28px;
    font-size: 220px;
    font-weight: 700;
    color: #ffffff0f;
    line-height: 1.1;
    pointer-events: none
}

.techreq .topcontainer {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 2
}

.techreq .headline {
    font-size: 58px;
    line-height: 1.1;
    color: #FFF;
    margin: 0 0 28px;
    letter-spacing: -.02em
}

.techreq .headline .accent {
    background: linear-gradient(135deg, #EEDD83 0%, #FFF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block
}

.techreq .subtitle {
    font-size: 22px;
    line-height: 1.75;
    color: #ffffffe6;
    max-width: 720px;
    margin: 0
}

.techreq .requirements {
    max-width: 1100px;
    margin: 0 auto;
    padding: 56px 16px;
    position: relative
}

.techreq .reqgrid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 56px;
    align-items: start
}

.techreq .leftcol {
    position: relative
}

.techreq .imgwrap {
    position: relative;
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 1px 9px 40px 0 #c0555f1a
}

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

.techreq .imgwrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #325f3000 0%, #325f30b3 100%);
    pointer-events: none
}

.techreq .rightcol {
    display: flex;
    flex-direction: column;
    gap: 28px
}

.techreq .reqcard {
    background: #FAFCFA;
    border-radius: 16px;
    padding: 28px;
    position: relative;
    box-shadow: 1px 2px 3px 0 #325f300f;
    transition: box-shadow .18s cubic-bezier(0.4, 0, 0.6, 1), transform .15s ease-out;
    animation: cardflip .22s ease-out backwards
}

.techreq .reqcard:nth-child(1) {
    animation-delay: .08s
}

.techreq .reqcard:nth-child(2) {
    animation-delay: .16s
}

.techreq .reqcard:nth-child(3) {
    animation-delay: .24s
}

.techreq .reqcard:nth-child(4) {
    animation-delay: .32s
}

.techreq .reqcard:nth-child(5) {
    animation-delay: .4s
}

@keyframes cardflip {
    0% {
        opacity: 0;
        transform: perspective(800px) rotateY(-15deg)
    }

    100% {
        opacity: 1;
        transform: perspective(800px) rotateY(0deg)
    }
}

.techreq .reqcard:hover {
    box-shadow: 1px 5px 14px 0 #325f3014;
    transform: translateY(-2px)
}

.techreq .cardtop {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 0 0 16px
}

.techreq .iconbox {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #c0555f1a 0%, #325f301a 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.techreq .iconsvg {
    width: 28px;
    height: 28px;
    fill: #325F30
}

.techreq .cardhead {
    font-size: 22px;
    line-height: 1.1;
    color: #2A2A2A;
    margin: 0;
    font-weight: 600;
    letter-spacing: -.01em
}

.techreq .cardbody {
    font-size: 15px;
    line-height: 1.75;
    color: #4A4A4A;
    margin: 0
}

.techreq .specs {
    max-width: 1100px;
    margin: 0 auto;
    padding: 56px 16px;
    background: linear-gradient(172deg, #eedd8314 0%, #fff0 100%);
    position: relative
}

.techreq .specs::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 1px;
    background: repeating-linear-gradient(to right, #C0555F 0px, #C0555F 12px, transparent 12px, transparent 20px, #325F30 20px, #325F30 32px, transparent 32px, transparent 40px)
}

.techreq .spechead {
    font-size: 42px;
    line-height: 1.1;
    color: #2A2A2A;
    margin: 0 0 56px;
    text-align: center;
    letter-spacing: -.02em
}

.techreq .specgrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px
}

.techreq .specitem {
    background: #FFF;
    border-radius: 16px;
    padding: 28px;
    position: relative;
    border: 1px solid #c0555f1f;
    transition: border-color .16s ease-out, transform .14s cubic-bezier(0.4, 0, 0.6, 1)
}

.techreq .specitem:hover {
    border-color: #c0555f4d;
    transform: translateY(-4px)
}

.techreq .specitem::before {
    content: '';
    position: absolute;
    top: 16px;
    right: 16px;
    width: 8px;
    height: 8px;
    background: #EEDD83;
    border-radius: 50%;
    box-shadow: 0 0 0 4px #eedd8333
}

.techreq .speclabel {
    font-size: 15px;
    line-height: 1.1;
    color: #325F30;
    margin: 0 0 8px;
    text-transform: uppercase;
    letter-spacing: .05em;
    font-weight: 600
}

.techreq .specval {
    font-size: 22px;
    line-height: 1.75;
    color: #2A2A2A;
    margin: 0;
    font-weight: 500
}

.techreq .curve {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 80px;
    pointer-events: none
}

.techreq .curve svg {
    width: 100%;
    height: 100%;
    display: block
}

.techreq .divider {
    height: 1px;
    background: repeating-linear-gradient(to right, #c0555f4d 0px, #c0555f4d 8px, transparent 8px, transparent 12px, #325f304d 12px, #325f304d 28px, transparent 28px, transparent 32px);
    max-width: 1100px;
    margin: 0 auto
}

.techreq .platform {
    background: url(./site_images/251112-bg008.jpg) center/cover no-repeat;
    position: relative;
    padding: 56px 16px;
    overflow: hidden
}

.techreq .platform::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #325f30e0;
    pointer-events: none
}

.techreq .platcont {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 2
}

.techreq .plattitle {
    font-size: 42px;
    line-height: 1.1;
    color: #FFF;
    margin: 0 0 28px;
    letter-spacing: -.02em
}

.techreq .platgrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px
}

.techreq .platbox {
    background: #ffffff14;
    border: 1px solid #ffffff26;
    border-radius: 16px;
    padding: 28px;
    backdrop-filter: blur(8px);
    transition: background .18s ease-out, border-color .16s cubic-bezier(0.4, 0, 0.6, 1)
}

.techreq .platbox:hover {
    background: #ffffff1f;
    border-color: #eedd8366
}

.techreq .platlabel {
    font-size: 22px;
    line-height: 1.1;
    color: #EEDD83;
    margin: 0 0 16px;
    font-weight: 600;
    letter-spacing: -.01em
}

.techreq .plattext {
    font-size: 15px;
    line-height: 1.75;
    color: #ffffffe6;
    margin: 0
}

.techreq .badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 16px 0 0
}

.techreq .badge {
    background: #c0555f33;
    color: #FFF;
    padding: 4px 16px;
    border-radius: 40px;
    font-size: 15px;
    line-height: 1.75;
    border: 1px solid #c0555f4d;
    transition: background .14s ease-out, border-color .12s cubic-bezier(0.4, 0, 0.6, 1)
}

.techreq .badge:hover {
    background: #c0555f59;
    border-color: #c0555f80
}

.techreq .profilesec {
    max-width: 1100px;
    margin: 0 auto;
    padding: 56px 16px
}

.techreq .profhead {
    font-size: 42px;
    line-height: 1.1;
    color: #2A2A2A;
    margin: 0 0 56px;
    text-align: center;
    letter-spacing: -.02em
}

.techreq .profgrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px
}

.techreq .profcard {
    background: #FAFCFA;
    border-radius: 26px;
    padding: 28px;
    text-align: center;
    position: relative;
    box-shadow: 1px 2px 3px 0 #c0555f0f;
    transition: box-shadow .16s cubic-bezier(0.4, 0, 0.6, 1), transform .18s ease-out
}

.techreq .profcard:hover {
    box-shadow: 1px 5px 14px 0 #c0555f14;
    transform: translateY(-6px)
}

.techreq .profimg {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 16px;
    border: 4px solid #FFF;
    box-shadow: 1px 5px 14px 0 #325f3014
}

.techreq .profimg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block
}

.techreq .profname {
    font-size: 22px;
    line-height: 1.1;
    color: #2A2A2A;
    margin: 0 0 8px;
    font-weight: 600;
    letter-spacing: -.01em
}

.techreq .profrole {
    font-size: 15px;
    line-height: 1.75;
    color: #C0555F;
    margin: 0 0 16px
}

.techreq .profbio {
    font-size: 15px;
    line-height: 1.75;
    color: #4A4A4A;
    margin: 0
}

@media (max-width: 1200px) {
    .techreq .reqgrid {
        grid-template-columns: 1fr;
        gap: 28px
    }

    .techreq .leftcol {
        max-width: 400px;
        margin: 0 auto
    }

    .techreq .specgrid {
        grid-template-columns: repeat(2, 1fr)
    }

    .techreq .platgrid {
        grid-template-columns: 1fr
    }
}

@media (max-width: 900px) {
    .techreq .headline {
        font-size: 42px
    }

    .techreq .spechead,
    .techreq .plattitle,
    .techreq .profhead {
        font-size: 42px
    }

    .techreq .specgrid {
        grid-template-columns: 1fr
    }

    .techreq .profgrid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width: 600px) {
    .techreq .topzone {
        padding: 28px 16px
    }

    .techreq .headline {
        font-size: 42px;
        margin: 0 0 16px
    }

    .techreq .subtitle {
        font-size: 15px
    }

    .techreq .requirements,
    .techreq .specs,
    .techreq .platform,
    .techreq .profilesec {
        padding: 28px 16px
    }

    .techreq .spechead,
    .techreq .plattitle,
    .techreq .profhead {
        font-size: 42px;
        margin: 0 0 28px
    }

    .techreq .profgrid {
        grid-template-columns: 1fr
    }

    .techreq .topzone::after {
        font-size: 140px
    }
}

::selection {
    background: #c0555f1a;
    color: inherit
}

.techreq input::placeholder,
.techreq textarea::placeholder {
    transition: opacity .16s ease-out
}

.techreq input:focus::placeholder,
.techreq textarea:focus::placeholder {
    opacity: 0
}

.touchpoint {
    background: #fefefe;
    color: #1a1a1a
}

.touchpoint .topzone {
    position: relative;
    overflow: hidden;
    padding: 56px 16px;
    background: linear-gradient(167deg, #f9f4f5 0%, #f4f8f4 100%)
}

.touchpoint .topzone::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, #c0555f14 0%, transparent 70%);
    pointer-events: none
}

.touchpoint .topzone::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, #325f300f 0%, transparent 70%);
    pointer-events: none
}

.touchpoint .topzone .contain {
    max-width: 1100px;
    margin: 0 auto;
    position: relative
}

.touchpoint .topzone .imgwrap {
    position: relative;
    margin-bottom: 28px;
    clip-path: polygon(8% 0%, 100% 0%, 92% 100%, 0% 100%)
}

.touchpoint .topzone .imgwrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 30%, #00000026 100%);
    pointer-events: none;
    z-index: 1
}

.touchpoint .topzone .imgwrap::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    width: 40px;
    height: 40px;
    border-top: 2px solid #C0555F;
    border-left: 2px solid #C0555F;
    pointer-events: none;
    z-index: 2
}

.touchpoint .topzone .imgwrap .bracket {
    position: absolute;
    bottom: 8px;
    right: 8px;
    width: 40px;
    height: 40px;
    border-bottom: 2px solid #325F30;
    border-right: 2px solid #325F30;
    pointer-events: none;
    z-index: 2
}

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

.touchpoint .topzone .txtwrap {
    text-align: center
}

.touchpoint .topzone h1 {
    font-size: 58px;
    line-height: 1.1;
    letter-spacing: -.02em;
    margin: 0 0 16px;
    color: #2a2a2a
}

.touchpoint .topzone .lead {
    font-size: 22px;
    line-height: 1.75;
    letter-spacing: .01em;
    margin: 0;
    color: #4a4a4a;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto
}

.touchpoint .formzone {
    padding: 56px 16px;
    background: #fff;
    position: relative
}

.touchpoint .formzone::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 60"><path d="M0,30 Q150,10 300,30 T600,30 T900,30 T1200,30 L1200,0 L0,0 Z" fill="%23f9f4f5"/></svg>') repeat-x;
    background-size: 1200px 60px
}

.touchpoint .formzone .contain {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    gap: 56px
}

.touchpoint .formzone .sidebar {
    flex: 0 0 320px;
    background: linear-gradient(183deg, #faf8f9 0%, #f8faf8 100%);
    padding: 28px;
    border-radius: 16px;
    box-shadow: 1px 5px 14px 0 #c0555f14
}

.touchpoint .formzone .sidebar h2 {
    font-size: 42px;
    line-height: 1.1;
    letter-spacing: -.01em;
    margin: 0 0 28px;
    color: #2a2a2a;
    position: relative
}

.touchpoint .formzone .sidebar h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #C0555F;
    margin-top: 16px
}

.touchpoint .formzone .sidebar .infoitem {
    margin-bottom: 28px
}

.touchpoint .formzone .sidebar .infoitem:last-child {
    margin-bottom: 0
}

.touchpoint .formzone .sidebar .infolabel {
    font-size: 15px;
    line-height: 1.75;
    letter-spacing: .02em;
    color: #6a6a6a;
    margin: 0 0 4px;
    text-transform: uppercase;
    font-weight: 600
}

.touchpoint .formzone .sidebar .infovalue {
    font-size: 22px;
    line-height: 1.75;
    letter-spacing: 0;
    margin: 0;
    color: #2a2a2a;
    word-break: break-word
}

.touchpoint .formzone .sidebar .infovalue a {
    color: #C0555F;
    text-decoration: none;
    transition: color .16s ease-out
}

.touchpoint .formzone .sidebar .infovalue a:hover {
    color: #325F30
}

.touchpoint .formzone .maincol {
    flex: 1;
    min-width: 0
}

.touchpoint .formzone .maincol h3 {
    font-size: 42px;
    line-height: 1.1;
    letter-spacing: -.01em;
    margin: 0 0 8px;
    color: #2a2a2a
}

.touchpoint .formzone .maincol .subdesc {
    font-size: 22px;
    line-height: 1.75;
    letter-spacing: .01em;
    margin: 0 0 28px;
    color: #5a5a5a
}

.touchpoint .formzone form {
    display: flex;
    flex-direction: column;
    gap: 28px
}

.touchpoint .formzone .fldrow {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.touchpoint .formzone label {
    font-size: 15px;
    line-height: 1.75;
    letter-spacing: .02em;
    color: #3a3a3a;
    font-weight: 600
}

.touchpoint .formzone input[type="text"],
.touchpoint .formzone input[type="email"] {
    width: 100%;
    padding: 16px;
    font-size: 22px;
    line-height: 1.75;
    letter-spacing: 0;
    border: 2px solid #e8e8e8;
    border-radius: 5px;
    background: #fff;
    color: #2a2a2a;
    transition: border-color .18s ease-out, box-shadow .18s ease-out;
    outline: none
}

.touchpoint .formzone input[type="text"]::placeholder,
.touchpoint .formzone input[type="email"]::placeholder {
    color: #aaa;
    opacity: 1;
    transition: opacity .14s ease-out
}

.touchpoint .formzone input[type="text"]:focus::placeholder,
.touchpoint .formzone input[type="email"]:focus::placeholder {
    opacity: .1
}

.touchpoint .formzone input[type="text"]:focus,
.touchpoint .formzone input[type="email"]:focus {
    border-color: #C0555F;
    box-shadow: 0 0 0 4px #c0555f1f
}

.touchpoint .formzone .slotpicker {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.touchpoint .formzone .slotgrid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 8px
}

.touchpoint .formzone .slotopt {
    position: relative
}

.touchpoint .formzone .slotopt input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0
}

.touchpoint .formzone .slotopt .slotlbl {
    display: block;
    padding: 16px;
    font-size: 15px;
    line-height: 1.75;
    letter-spacing: .01em;
    text-align: center;
    border: 2px solid #e8e8e8;
    border-radius: 5px;
    background: #fff;
    color: #4a4a4a;
    cursor: pointer;
    transition: border-color .16s ease-out, background-color .16s ease-out, color .16s ease-out, box-shadow .16s ease-out
}

.touchpoint .formzone .slotopt input[type="radio"]:checked+.slotlbl {
    border-color: #325F30;
    background: #325F30;
    color: #fff;
    box-shadow: 1px 5px 14px 0 #325f3014
}

.touchpoint .formzone .slotopt .slotlbl:hover {
    border-color: #C0555F;
    box-shadow: 0 0 0 3px #c0555f14
}

.touchpoint .formzone .privacywrap {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 8px
}

.touchpoint .formzone .privacywrap input[type="checkbox"] {
    margin-top: 4px;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    cursor: pointer
}

.touchpoint .formzone .privacytxt {
    font-size: 15px;
    line-height: 1.75;
    letter-spacing: .01em;
    color: #5a5a5a;
    margin: 0
}

.touchpoint .formzone .privacytxt a {
    color: #C0555F;
    text-decoration: none;
    transition: color .14s ease-out
}

.touchpoint .formzone .privacytxt a:hover {
    color: #325F30
}

.touchpoint .formzone .submitwrap {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px
}

.touchpoint .formzone button[type="submit"] {
    padding: 16px 56px;
    font-size: 22px;
    line-height: 1.75;
    letter-spacing: 0;
    background: transparent;
    color: #C0555F;
    border: 2px solid #C0555F;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color .18s ease-out, color .18s ease-out, box-shadow .18s ease-out;
    font-weight: 600;
    position: relative;
    overflow: hidden
}

.touchpoint .formzone button[type="submit"]::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #C0555F;
    opacity: 0;
    transition: opacity .18s ease-out;
    z-index: 0
}

.touchpoint .formzone button[type="submit"] span {
    position: relative;
    z-index: 1
}

.touchpoint .formzone button[type="submit"]:hover::before {
    opacity: 1
}

.touchpoint .formzone button[type="submit"]:hover {
    color: #fff;
    box-shadow: 0 0 16px #c0555f4d
}

.touchpoint .formzone button[type="submit"]:focus {
    outline: 3px solid #c0555f66;
    outline-offset: 2px
}

.touchpoint .statszone {
    padding: 56px 16px;
    background: #fff;
    position: relative;
    overflow: hidden
}

.touchpoint .statszone::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url(./site_images/works012aa.jpg);
    background-size: cover;
    background-position: center;
    opacity: .08;
    pointer-events: none
}

.touchpoint .statszone::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(172deg, #ffffffeb 0%, #fffffff5 100%);
    pointer-events: none
}

.touchpoint .statszone .contain {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1
}

.touchpoint .statszone .statbox {
    border: 3px dashed #EEDD83;
    border-radius: 16px;
    padding: 28px;
    background: #ffffffd9;
    box-shadow: 1px 9px 40px 0 #325f301a;
    position: relative
}

.touchpoint .statszone .statbox::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 16px;
    padding: 3px;
    background: linear-gradient(156deg, #c0555f4d 0%, #325f304d 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0;
    transition: opacity .2s ease-out
}

.touchpoint .statszone .statbox:hover::before {
    opacity: 1
}

.touchpoint .statszone h2 {
    font-size: 42px;
    line-height: 1.1;
    letter-spacing: -.01em;
    margin: 0 0 28px;
    color: #2a2a2a;
    text-align: center;
    position: relative
}

.touchpoint .statszone h2::before {
    content: '01';
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 72px;
    line-height: 1.1;
    letter-spacing: -.02em;
    color: #c0555f14;
    font-weight: 700;
    z-index: -1
}

.touchpoint .statszone .statgrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 28px;
    margin-bottom: 28px
}

.touchpoint .statszone .statitem {
    text-align: center;
    padding: 16px;
    border-radius: 5px;
    background: #eedd831f;
    transition: background-color .2s cubic-bezier(0.4, 0, 0.6, 1), box-shadow .2s cubic-bezier(0.4, 0, 0.6, 1)
}

.touchpoint .statszone .statitem:hover {
    background: #eedd8338;
    box-shadow: 0 0 20px #eedd8366
}

.touchpoint .statszone .statnum {
    font-size: 58px;
    line-height: 1.1;
    letter-spacing: -.02em;
    margin: 0 0 8px;
    color: #C0555F;
    font-weight: 700
}

.touchpoint .statszone .statlabel {
    font-size: 22px;
    line-height: 1.75;
    letter-spacing: 0;
    margin: 0;
    color: #4a4a4a
}

.touchpoint .statszone .statdesc {
    font-size: 22px;
    line-height: 1.75;
    letter-spacing: .01em;
    margin: 0;
    color: #5a5a5a;
    text-align: center
}

@media (max-width: 900px) {
    .touchpoint .topzone {
        padding: 28px 16px
    }

    .touchpoint .topzone img {
        height: 280px
    }

    .touchpoint .topzone h1 {
        font-size: 42px
    }

    .touchpoint .topzone .lead {
        font-size: 22px
    }

    .touchpoint .formzone .contain {
        flex-direction: column;
        gap: 28px
    }

    .touchpoint .formzone .sidebar {
        flex: 1
    }

    .touchpoint .formzone .maincol h3 {
        font-size: 42px
    }

    .touchpoint .statszone h2 {
        font-size: 42px
    }

    .touchpoint .statszone .statgrid {
        grid-template-columns: 1fr
    }
}

@media (max-width: 600px) {
    .touchpoint .topzone h1 {
        font-size: 42px
    }

    .touchpoint .topzone .lead {
        font-size: 22px
    }

    .touchpoint .topzone img {
        height: 220px
    }

    .touchpoint .formzone .maincol h3 {
        font-size: 42px
    }

    .touchpoint .formzone .subdesc {
        font-size: 22px
    }

    .touchpoint .formzone input[type="text"],
    .touchpoint .formzone input[type="email"] {
        font-size: 22px
    }

    .touchpoint .formzone .slotgrid {
        grid-template-columns: 1fr
    }

    .touchpoint .formzone button[type="submit"] {
        width: 100%;
        padding: 16px 28px
    }

    .touchpoint .statszone h2 {
        font-size: 42px
    }

    .touchpoint .statszone .statnum {
        font-size: 42px
    }
}

.abt {
    background: #fefefe;
    color: #1a1a1a;
    position: relative;
    overflow-x: clip
}

.abt::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, transparent 50%, #c0555f05 100%);
    pointer-events: none;
    z-index: 1
}

.abt::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 200%;
    background-image: repeating-linear-gradient(0deg, transparent, transparent 3px, #325f3004 3px, #325f3004 4px);
    pointer-events: none;
    z-index: 2;
    animation: scanDrift 28s linear infinite
}

@keyframes scanDrift {
    0% {
        transform: translateY(0)
    }

    100% {
        transform: translateY(50%)
    }
}

.abt>* {
    position: relative;
    z-index: 3
}

.abt .maxw {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 16px;
    padding-right: 16px
}

.abt .ttlblk {
    padding-top: 56px;
    padding-bottom: 56px;
    position: relative;
    overflow: visible
}

.abt .ttlblk::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 50%;
    transform: translateX(-50%);
    width: 280px;
    height: 280px;
    background: transparent;
    border: 2px solid #c0555f1f;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    animation: curveDrift 16s ease-in-out infinite;
    pointer-events: none
}

.abt .ttlblk::after {
    content: '';
    position: absolute;
    top: 56px;
    left: 50%;
    transform: translateX(-50%);
    width: 320px;
    height: 320px;
    background: transparent;
    border: 1px solid #eddd832e;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation: curveDrift 20s ease-in-out infinite reverse;
    pointer-events: none
}

@keyframes curveDrift {

    0%,
    100% {
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
        transform: translateX(-50%) rotate(0deg)
    }

    50% {
        border-radius: 60% 40% 30% 70% / 50% 60% 40% 50%;
        transform: translateX(-50%) rotate(180deg)
    }
}

.abt .ttlcnt {
    text-align: center;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    position: relative
}

.abt .eyebrow {
    font-size: 15px;
    line-height: 1.75;
    letter-spacing: .08em;
    color: #325F30;
    text-transform: uppercase;
    margin-bottom: 8px;
    font-weight: 600
}

.abt .ttlcnt h1 {
    font-size: 58px;
    line-height: 1.1;
    letter-spacing: -.02em;
    margin-bottom: 28px;
    background: linear-gradient(135deg, #C0555F 0%, #325F30 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700
}

.abt .ttlimgwrap {
    position: relative;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 1px 5px 14px 0 #c0555f14
}

.abt .ttlimgwrap::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(180deg, transparent 0%, #325f30b8 100%);
    pointer-events: none
}

.abt .ttlimgwrap img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover
}

.abt .mosaicgrid {
    padding-top: 56px;
    padding-bottom: 56px;
    background: #eddd830a
}

.abt .mosaicgrid .maxw {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 28px;
    align-items: start
}

.abt .mosimg1 {
    grid-column: 1 / 6;
    grid-row: 1;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 1px 2px 3px 0 #325f300f;
    transition: box-shadow .18s ease-out
}

.abt .mosimg1:hover {
    box-shadow: 1px 9px 40px 0 #325f301a
}

.abt .mosimg1::before,
.abt .mosimg1::after {
    content: '';
    position: absolute;
    background: #C0555F;
    z-index: 1;
    pointer-events: none
}

.abt .mosimg1::before {
    top: 0;
    left: 0;
    width: 3px;
    height: 42px
}

.abt .mosimg1::after {
    top: 0;
    left: 0;
    width: 42px;
    height: 3px
}

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

.abt .mostxt1 {
    grid-column: 6 / 13;
    grid-row: 1;
    padding-top: 28px
}

.abt .mostxt1 h2 {
    font-size: 42px;
    line-height: 1.1;
    letter-spacing: -.01em;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 700
}

.abt .mostxt1 p {
    font-size: 15px;
    line-height: 1.75;
    letter-spacing: .01em;
    color: #4a4a4a;
    margin-bottom: 16px
}

.abt .mostxt2 {
    grid-column: 1 / 7;
    grid-row: 2;
    padding-top: 16px
}

.abt .mostxt2 h3 {
    font-size: 22px;
    line-height: 1.1;
    letter-spacing: 0;
    margin-bottom: 16px;
    color: #325F30;
    font-weight: 700
}

.abt .mostxt2 p {
    font-size: 15px;
    line-height: 1.75;
    letter-spacing: .01em;
    color: #4a4a4a
}

.abt .mosimg2 {
    grid-column: 7 / 13;
    grid-row: 2;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 1px 2px 3px 0 #c0555f0f;
    transition: box-shadow .16s cubic-bezier(0.4, 0, 0.6, 1)
}

.abt .mosimg2:hover {
    box-shadow: 1px 9px 40px 0 #c0555f1a
}

.abt .mosimg2::before,
.abt .mosimg2::after {
    content: '';
    position: absolute;
    background: #325F30;
    z-index: 1;
    pointer-events: none
}

.abt .mosimg2::before {
    top: 0;
    right: 0;
    width: 3px;
    height: 42px
}

.abt .mosimg2::after {
    top: 0;
    right: 0;
    width: 42px;
    height: 3px
}

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

.abt .mosimg3 {
    grid-column: 1 / 5;
    grid-row: 3;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 1px 2px 3px 0 #eddd830f;
    transition: box-shadow .2s ease-out
}

.abt .mosimg3:hover {
    box-shadow: 1px 9px 40px 0 #eddd831a
}

.abt .mosimg3::before,
.abt .mosimg3::after {
    content: '';
    position: absolute;
    background: #EEDD83;
    z-index: 1;
    pointer-events: none
}

.abt .mosimg3::before {
    bottom: 0;
    left: 0;
    width: 3px;
    height: 42px
}

.abt .mosimg3::after {
    bottom: 0;
    left: 0;
    width: 42px;
    height: 3px
}

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

.abt .mostxt3 {
    grid-column: 5 / 13;
    grid-row: 3;
    padding-top: 28px
}

.abt .mostxt3 h3 {
    font-size: 22px;
    line-height: 1.1;
    letter-spacing: 0;
    margin-bottom: 16px;
    color: #C0555F;
    font-weight: 700
}

.abt .mostxt3 p {
    font-size: 15px;
    line-height: 1.75;
    letter-spacing: .01em;
    color: #4a4a4a
}

.abt .tmline {
    padding-top: 56px;
    padding-bottom: 56px
}

.abt .tmline h2 {
    font-size: 42px;
    line-height: 1.1;
    letter-spacing: -.01em;
    margin-bottom: 56px;
    color: #1a1a1a;
    text-align: center;
    font-weight: 700
}

.abt .tmltrack {
    position: relative;
    padding-left: 56px
}

.abt .tmltrack::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #c0555f33 0%, #325f3033 100%)
}

.abt .tmlperiod {
    margin-bottom: 56px;
    position: relative
}

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

.abt .periodlbl {
    font-size: 22px;
    line-height: 1.1;
    letter-spacing: -.005em;
    color: #325F30;
    font-weight: 700;
    margin-bottom: 28px;
    position: relative
}

.abt .periodlbl::before {
    content: '';
    position: absolute;
    left: -48px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background: #C0555F;
    border-radius: 40px;
    border: 3px solid #fefefe;
    box-shadow: 0 0 0 1px #c0555f33
}

.abt .tmlev {
    margin-bottom: 28px;
    padding-left: 28px;
    position: relative
}

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

.abt .tmlev::before {
    content: '';
    position: absolute;
    left: -38px;
    top: 8px;
    width: 8px;
    height: 8px;
    background: #EEDD83;
    border-radius: 40px;
    border: 2px solid #fefefe
}

.abt .tmlev h4 {
    font-size: 15px;
    line-height: 1.75;
    letter-spacing: .01em;
    color: #1a1a1a;
    font-weight: 700;
    margin-bottom: 4px
}

.abt .tmlev p {
    font-size: 15px;
    line-height: 1.75;
    letter-spacing: .01em;
    color: #5a5a5a
}

.abt .teamcard {
    padding-top: 56px;
    padding-bottom: 56px;
    background: #fafbfa
}

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

.abt .teamportrait {
    flex-shrink: 0;
    width: 280px;
    position: relative
}

.abt .portraitwrap {
    position: relative;
    width: 100%;
    aspect-ratio: 5 / 7;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 1px 5px 14px 0 #325f3014
}

.abt .portraitwrap::before,
.abt .portraitwrap::after {
    content: '';
    position: absolute;
    background: #c0555fe6;
    z-index: 1;
    pointer-events: none
}

.abt .portraitwrap::before {
    bottom: 0;
    right: 0;
    width: 4px;
    height: 56px
}

.abt .portraitwrap::after {
    bottom: 0;
    right: 0;
    width: 56px;
    height: 4px
}

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

.abt .teamtxt {
    flex-grow: 1;
    min-width: 0
}

.abt .teamtxt h3 {
    font-size: 42px;
    line-height: 1.1;
    letter-spacing: -.01em;
    margin-bottom: 8px;
    color: #1a1a1a;
    font-weight: 700
}

.abt .teamrole {
    font-size: 15px;
    line-height: 1.75;
    letter-spacing: .06em;
    color: #C0555F;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 16px
}

.abt .teamtxt p {
    font-size: 15px;
    line-height: 1.75;
    letter-spacing: .01em;
    color: #4a4a4a;
    margin-bottom: 16px
}

.abt .teamtxt p:last-child {
    margin-bottom: 0
}

.abt .numaccent {
    display: inline-flex;
    align-items: center;
    gap: 8px
}

.abt .numcircle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #325F30;
    color: #fff;
    border-radius: 40px;
    font-size: 15px;
    line-height: 1;
    font-weight: 700
}

@media (max-width: 900px) {
    .abt .ttlcnt h1 {
        font-size: 42px
    }

    .abt .mosaicgrid .maxw {
        grid-template-columns: 1fr;
        gap: 28px
    }

    .abt .mosimg1,
    .abt .mostxt1,
    .abt .mostxt2,
    .abt .mosimg2,
    .abt .mosimg3,
    .abt .mostxt3 {
        grid-column: 1 / -1;
        grid-row: auto
    }

    .abt .teaminner {
        flex-direction: column;
        gap: 28px
    }

    .abt .teamportrait {
        width: 100%;
        max-width: 320px
    }
}

@media (max-width: 600px) {
    .abt .ttlblk {
        padding-top: 28px;
        padding-bottom: 28px
    }

    .abt .ttlcnt h1 {
        font-size: 22px
    }

    .abt .mosaicgrid,
    .abt .tmline,
    .abt .teamcard {
        padding-top: 28px;
        padding-bottom: 28px
    }

    .abt .mostxt1 h2,
    .abt .tmline h2,
    .abt .teamtxt h3 {
        font-size: 22px
    }

    .abt .tmltrack {
        padding-left: 28px
    }

    .abt .periodlbl::before {
        left: -26px
    }

    .abt .tmlev::before {
        left: -20px
    }
}

::selection {
    background: #c0555f1a;
    color: inherit
}

.abt input::placeholder,
.abt textarea::placeholder {
    opacity: 1;
    transition: opacity .14s ease-out
}

.abt input:focus::placeholder,
.abt textarea:focus::placeholder {
    opacity: 0
}

.learnprog {
    max-width: 1100px;
    margin: 0 auto;
    background: #fff
}

.learnprog .radialhead {
    position: relative;
    padding: 56px 28px;
    background: radial-gradient(circle at top right, #EEDD83 0%, #fff 68%);
    overflow: hidden
}

.learnprog .radialhead .imgwrap {
    position: relative;
    width: 100%;
    max-width: 720px;
    margin: 0 auto 28px;
    border-radius: 16px;
    overflow: hidden
}

.learnprog .radialhead .imgwrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(180deg, #c0555f80 0%, transparent 100%);
    z-index: 1;
    pointer-events: none
}

.learnprog .radialhead img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: box-shadow .18s cubic-bezier(0.4, 0, 0.6, 1)
}

.learnprog .radialhead img:hover {
    box-shadow: 1px 9px 40px 0 #c0555f1a
}

.learnprog .radialhead .txtcont {
    max-width: 680px;
    margin: 0 auto;
    text-align: center
}

.learnprog .radialhead .numaccent {
    font-size: 72px;
    line-height: 1.1;
    color: #C0555F;
    opacity: .3;
    font-weight: 700;
    letter-spacing: -.02em;
    display: block;
    margin-bottom: 16px;
    animation: fadeinstagger .22s ease-out 0s both
}

.learnprog .radialhead h1 {
    font-size: 58px;
    line-height: 1.1;
    color: #1d1d1d;
    margin: 0 0 28px;
    letter-spacing: -.01em;
    animation: fadeinstagger .22s ease-out .1s both
}

.learnprog .radialhead .briefexp {
    font-size: 22px;
    line-height: 1.75;
    color: #3d3d3d;
    letter-spacing: .01em;
    margin: 0;
    animation: fadeinstagger .22s ease-out .2s both
}

@keyframes fadeinstagger {
    from {
        opacity: 0;
        transform: translateY(12px)
    }

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

.learnprog .formgrid {
    position: relative;
    padding: 56px 28px;
    background: #fafbfc;
    border-top: 1px solid #e8eaed;
    border-bottom: 1px solid #e8eaed
}

.learnprog .formgrid::before {
    content: '';
    position: absolute;
    top: 28px;
    right: 28px;
    width: 180px;
    height: 180px;
    border: 2px solid #325f3026;
    border-radius: 50%;
    animation: pulsegeo 4s ease-in-out infinite;
    pointer-events: none
}

@keyframes pulsegeo {

    0%,
    100% {
        transform: scale(1);
        opacity: .3
    }

    50% {
        transform: scale(1.15);
        opacity: .6
    }
}

.learnprog .formgrid .gridwrap {
    max-width: 880px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 56px
}

.learnprog .formgrid .cardleft {
    background: #fff;
    padding: 28px;
    border-radius: 16px;
    box-shadow: 1px 2px 3px 0 #c0555f0f;
    position: relative;
    animation: fadeinstagger .22s ease-out 0s both
}

.learnprog .formgrid .cardleft::before {
    content: '01';
    position: absolute;
    top: 16px;
    right: 28px;
    font-size: 72px;
    line-height: 1;
    color: #325F30;
    opacity: .08;
    font-weight: 700;
    z-index: 0;
    pointer-events: none
}

.learnprog .formgrid .cardleft h2 {
    font-size: 42px;
    line-height: 1.1;
    color: #1d1d1d;
    margin: 0 0 8px;
    letter-spacing: -.005em;
    position: relative;
    z-index: 1
}

.learnprog .formgrid .cardleft .lineacc {
    width: 60px;
    height: 3px;
    background: #C0555F;
    margin: 0 0 16px
}

.learnprog .formgrid .cardleft .desc {
    font-size: 15px;
    line-height: 1.75;
    color: #3d3d3d;
    letter-spacing: .015em;
    margin: 0 0 28px
}

.learnprog .formgrid .cardleft .expandlist {
    list-style: none;
    padding: 0;
    margin: 0
}

.learnprog .formgrid .cardleft .expanditem {
    border-bottom: 1px solid #e8eaed
}

.learnprog .formgrid .cardleft .expanditem:last-child {
    border-bottom: none
}

.learnprog .formgrid .cardleft .expandtoggle {
    display: none
}

.learnprog .formgrid .cardleft .expandlabel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    cursor: pointer;
    font-size: 15px;
    line-height: 1.75;
    color: #1d1d1d;
    font-weight: 600;
    letter-spacing: .01em;
    transition: color .15s ease-out
}

.learnprog .formgrid .cardleft .expandlabel:hover {
    color: #C0555F
}

.learnprog .formgrid .cardleft .expandlabel::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid #C0555F;
    transition: transform .18s cubic-bezier(0.4, 0, 0.6, 1);
    flex-shrink: 0;
    margin-left: 16px
}

.learnprog .formgrid .cardleft .expandtoggle:checked+.expandlabel::after {
    transform: rotate(180deg)
}

.learnprog .formgrid .cardleft .expandcontent {
    max-height: 0;
    overflow: hidden;
    transition: max-height .22s cubic-bezier(0.4, 0, 0.6, 1)
}

.learnprog .formgrid .cardleft .expandtoggle:checked~.expandcontent {
    max-height: 500px
}

.learnprog .formgrid .cardleft .expandinner {
    padding: 0 0 16px;
    font-size: 15px;
    line-height: 1.75;
    color: #3d3d3d;
    letter-spacing: .015em
}

.learnprog .formgrid .cardright {
    background: #fff;
    padding: 28px;
    border-radius: 16px;
    box-shadow: 1px 5px 14px 0 #325f3014;
    position: relative;
    animation: fadeinstagger .22s ease-out .3s both
}

.learnprog .formgrid .cardright::before {
    content: '02';
    position: absolute;
    top: 16px;
    right: 28px;
    font-size: 72px;
    line-height: 1;
    color: #C0555F;
    opacity: .08;
    font-weight: 700;
    z-index: 0;
    pointer-events: none
}

.learnprog .formgrid .cardright h3 {
    font-size: 42px;
    line-height: 1.1;
    color: #1d1d1d;
    margin: 0 0 8px;
    letter-spacing: -.005em;
    position: relative;
    z-index: 1
}

.learnprog .formgrid .cardright .lineacc {
    width: 60px;
    height: 3px;
    background: #325F30;
    margin: 0 0 16px
}

.learnprog .formgrid .cardright .formdesc {
    font-size: 15px;
    line-height: 1.75;
    color: #3d3d3d;
    letter-spacing: .015em;
    margin: 0 0 28px
}

.learnprog .formgrid .cardright .fgroup {
    margin-bottom: 16px
}

.learnprog .formgrid .cardright label {
    display: block;
    font-size: 15px;
    line-height: 1.75;
    color: #1d1d1d;
    font-weight: 600;
    margin-bottom: 4px;
    letter-spacing: .01em
}

.learnprog .formgrid .cardright input[type="text"],
.learnprog .formgrid .cardright input[type="email"] {
    width: 100%;
    padding: 8px 16px;
    border: 2px solid #e8eaed;
    border-radius: 5px;
    font-size: 15px;
    line-height: 1.75;
    color: #1d1d1d;
    letter-spacing: .01em;
    transition: border-color .15s ease-out, box-shadow .15s ease-out;
    background: #fff
}

.learnprog .formgrid .cardright input[type="text"]:focus,
.learnprog .formgrid .cardright input[type="email"]:focus {
    outline: none;
    border-color: #C0555F;
    box-shadow: inset 0 0 0 1px #C0555F
}

.learnprog .formgrid .cardright input::placeholder {
    color: #8d8d8d;
    transition: opacity .18s ease-out
}

.learnprog .formgrid .cardright input:focus::placeholder {
    opacity: 0
}

.learnprog .formgrid .cardright .ratinggroup {
    margin-bottom: 28px
}

.learnprog .formgrid .cardright .ratinglabel {
    display: block;
    font-size: 15px;
    line-height: 1.75;
    color: #1d1d1d;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: .01em
}

.learnprog .formgrid .cardright .ratingopts {
    display: flex;
    gap: 8px;
    flex-wrap: wrap
}

.learnprog .formgrid .cardright .ratingopts input[type="radio"] {
    display: none
}

.learnprog .formgrid .cardright .ratingopts label {
    padding: 8px 16px;
    border: 2px solid #e8eaed;
    border-radius: 40px;
    font-size: 15px;
    line-height: 1.75;
    color: #3d3d3d;
    cursor: pointer;
    transition: border-color .12s ease-out, background-color .12s ease-out, color .12s ease-out;
    font-weight: 400;
    letter-spacing: .01em;
    margin: 0
}

.learnprog .formgrid .cardright .ratingopts label:hover {
    border-color: #C0555F;
    color: #C0555F
}

.learnprog .formgrid .cardright .ratingopts input[type="radio"]:checked+label {
    background: #C0555F;
    border-color: #C0555F;
    color: #fff
}

.learnprog .formgrid .cardright .privacywrap {
    margin-bottom: 16px
}

.learnprog .formgrid .cardright .privacywrap input[type="checkbox"] {
    margin-right: 8px;
    vertical-align: middle
}

.learnprog .formgrid .cardright .privacylabel {
    display: inline;
    font-size: 15px;
    line-height: 1.75;
    color: #3d3d3d;
    font-weight: 400;
    letter-spacing: .015em;
    margin: 0
}

.learnprog .formgrid .cardright .privacylabel a {
    color: #325F30;
    text-decoration: none;
    transition: color .15s ease-out
}

.learnprog .formgrid .cardright .privacylabel a:hover {
    color: #C0555F;
    background: #EEDD83
}

.learnprog .formgrid .cardright .submitbtn {
    width: 100%;
    padding: 8px 28px;
    background: transparent;
    border: 2px solid #325F30;
    border-radius: 5px;
    font-size: 15px;
    line-height: 1.75;
    color: #325F30;
    font-weight: 600;
    cursor: pointer;
    transition: background-color .15s ease-out, color .15s ease-out;
    letter-spacing: .01em;
    position: relative;
    overflow: hidden
}

.learnprog .formgrid .cardright .submitbtn:hover {
    background: #325F30;
    color: #fff
}

.learnprog .formgrid .cardright .submitbtn:active {
    transform: scale(0.98)
}

.learnprog .chevdiv {
    position: relative;
    height: 40px;
    background: #fafbfc;
    overflow: hidden
}

.learnprog .chevdiv::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-top: 40px solid #fff
}

::selection {
    background: #c0555f1a;
    color: inherit
}

@media (min-width: 600px) {
    .learnprog .radialhead {
        padding: 56px
    }

    .learnprog .formgrid {
        padding: 56px
    }

    .learnprog .formgrid .gridwrap {
        grid-template-columns: 1fr 1fr;
        gap: 28px
    }

    .learnprog .radialhead img {
        height: 520px
    }
}

@media (min-width: 900px) {
    .learnprog .radialhead h1 {
        font-size: 72px
    }

    .learnprog .formgrid .gridwrap {
        gap: 56px
    }
}

@media (min-width: 1200px) {
    .learnprog .radialhead {
        padding: 56px 28px
    }

    .learnprog .formgrid {
        padding: 56px 28px
    }
}

.intv {
    background: #fff;
    color: #1a1a1a;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0
}

.intv .htop {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 56px 16px;
    overflow: hidden
}

.intv .htop::before,
.intv .htop::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 40px;
    background: #C0555F;
    z-index: 3
}

.intv .htop::before {
    top: 56px;
    left: 16px
}

.intv .htop::after {
    top: 56px;
    left: 32px;
    background: #325F30
}

.intv .himgwrap {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto 28px;
    border-radius: 16px;
    overflow: hidden
}

.intv .himgwrap::before,
.intv .himgwrap::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    border: 3px solid #C0555F;
    z-index: 2
}

.intv .himgwrap::before {
    top: 8px;
    right: 8px;
    border-left: none;
    border-bottom: none;
    border-radius: 0 5px 0 0
}

.intv .himgwrap::after {
    bottom: 8px;
    left: 8px;
    border-right: none;
    border-top: none;
    border-radius: 0 0 0 5px
}

.intv .himgwrap::before {
    opacity: 0;
    transform: translate(16px, -16px);
    animation: bracketIn .18s ease-out .14s forwards
}

.intv .himgwrap::after {
    opacity: 0;
    transform: translate(-16px, 16px);
    animation: bracketIn .18s ease-out .22s forwards
}

@keyframes bracketIn {
    to {
        opacity: 1;
        transform: translate(0, 0)
    }
}

.intv .himg {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    position: relative
}

.intv .hovrl {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 60%;
    background: linear-gradient(110deg, #c0555f00 0%, #c0555fb8 100%);
    pointer-events: none
}

.intv .htxt {
    max-width: 800px;
    margin: 0 auto;
    text-align: center
}

.intv .htxt h1 {
    font-size: 58px;
    line-height: 1.1;
    letter-spacing: -.02em;
    margin: 0 0 16px;
    color: #1a1a1a
}

.intv .htxt h1 .hund {
    background: linear-gradient(110deg, #C0555F 0%, #325F30 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    padding: 0 4px;
    position: relative
}

.intv .htxt h1 .hund::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    height: 3px;
    background: #EEDD83
}

.intv .htxt p {
    font-size: 22px;
    line-height: 1.75;
    letter-spacing: .01em;
    color: #333;
    margin: 0
}

.intv .qagrid {
    display: grid;
    grid-template-columns: 2.4fr 1fr;
    gap: 28px;
    padding: 56px 16px;
    background: linear-gradient(135deg, #fafafa 0%, #fff 100%);
    position: relative
}

.intv .qagrid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 60%;
    bottom: 0;
    background: #f5f5f5;
    z-index: 0
}

.intv .qamain {
    position: relative;
    z-index: 1
}

.intv .qaside {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 16px
}

.intv .qitem {
    margin: 0 0 28px;
    opacity: 0;
    transform: translateX(-28px);
    animation: slideInLeft .16s ease-out forwards
}

.intv .qitem:nth-child(1) {
    animation-delay: 0s
}

.intv .qitem:nth-child(2) {
    animation-delay: .08s
}

.intv .qitem:nth-child(3) {
    animation-delay: .16s
}

.intv .qitem:nth-child(4) {
    animation-delay: .24s
}

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

.intv .qitem:last-child {
    margin-bottom: 0
}

.intv .qnum {
    display: inline-block;
    font-size: 15px;
    line-height: 1.1;
    letter-spacing: .02em;
    color: #fff;
    background: #C0555F;
    padding: 4px 8px;
    border-radius: 5px;
    margin: 0 0 8px;
    font-weight: 600
}

.intv .qq {
    font-size: 22px;
    line-height: 1.1;
    letter-spacing: -.01em;
    color: #1a1a1a;
    margin: 0 0 8px;
    font-weight: 600
}

.intv .qans {
    font-size: 15px;
    line-height: 1.75;
    letter-spacing: .01em;
    color: #333;
    margin: 0
}

.intv .qans .hterm {
    background: #EEDD83;
    padding: 2px 4px;
    border-radius: 5px;
    color: #1a1a1a
}

.intv .tagbox {
    background: #fff;
    border: 2px solid #e8e8e8;
    border-radius: 16px;
    padding: 16px;
    box-shadow: 1px 2px 3px 0 #c0555f0f;
    transition: border-color .14s ease-out, box-shadow .14s ease-out
}

.intv .tagbox:hover {
    border-color: #C0555F;
    box-shadow: 1px 5px 14px 0 #c0555f14
}

.intv .taglbl {
    font-size: 15px;
    line-height: 1.1;
    letter-spacing: .01em;
    color: #666;
    margin: 0 0 8px;
    text-transform: uppercase;
    font-weight: 600
}

.intv .taglist {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0
}

.intv .taglist li {
    background: #325F30;
    color: #fff;
    font-size: 15px;
    line-height: 1.1;
    letter-spacing: .01em;
    padding: 8px 16px;
    border-radius: 40px;
    transition: background .16s ease-out, transform .12s ease-out
}

.intv .taglist li:hover {
    background: #C0555F;
    transform: translateY(-2px)
}

.intv .expgrid {
    padding: 56px 16px;
    background: #fff;
    position: relative
}

.intv .expgrid::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 80px;
    background: #fff;
    border-radius: 0 0 40px 40px;
    transform: translateY(-79px)
}

.intv .exphd {
    text-align: center;
    margin: 0 0 56px
}

.intv .exphd h2 {
    font-size: 42px;
    line-height: 1.1;
    letter-spacing: -.01em;
    color: #1a1a1a;
    margin: 0 0 16px
}

.intv .exphd p {
    font-size: 22px;
    line-height: 1.75;
    letter-spacing: .01em;
    color: #333;
    margin: 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto
}

.intv .expcols {
    display: grid;
    grid-template-columns: 0.8fr 3.2fr;
    gap: 28px;
    max-width: 1000px;
    margin: 0 auto
}

.intv .expnums {
    display: flex;
    flex-direction: column;
    gap: 56px
}

.intv .expnum {
    position: relative;
    opacity: 0;
    transform: translateY(28px);
    animation: fadeUp .18s ease-out forwards
}

.intv .expnum:nth-child(1) {
    animation-delay: 0s
}

.intv .expnum:nth-child(2) {
    animation-delay: .12s
}

.intv .expnum:nth-child(3) {
    animation-delay: .24s
}

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

.intv .expnum span {
    font-size: 72px;
    line-height: 1.1;
    letter-spacing: -.03em;
    color: #c0555f1f;
    font-weight: 700;
    display: block
}

.intv .exptxts {
    display: flex;
    flex-direction: column;
    gap: 56px
}

.intv .expseg {
    position: relative
}

.intv .expseg h3 {
    font-size: 22px;
    line-height: 1.1;
    letter-spacing: -.01em;
    color: #1a1a1a;
    margin: 0 0 8px;
    font-weight: 600
}

.intv .expseg p {
    font-size: 15px;
    line-height: 1.75;
    letter-spacing: .01em;
    color: #333;
    margin: 0
}

.intv .expseg:hover~.expnum span {
    opacity: .4;
    transition: opacity .14s ease-out
}

.intv .insbox {
    padding: 56px 16px;
    background: linear-gradient(135deg, #fef8f0 0%, #fff 100%);
    position: relative;
    overflow: hidden
}

.intv .insbox::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #EEDD83 50%, transparent 100%)
}

.intv .inswrap {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px
}

.intv .inscard {
    background: #fff;
    border-radius: 16px;
    padding: 28px 16px;
    box-shadow: 1px 2px 3px 0 #325f300f;
    text-align: center;
    transition: transform .16s ease-out, box-shadow .16s ease-out;
    position: relative;
    opacity: 0;
    animation: diagIn .2s ease-out forwards
}

.intv .inscard:nth-child(1) {
    animation-delay: 0s
}

.intv .inscard:nth-child(2) {
    animation-delay: .08s
}

.intv .inscard:nth-child(3) {
    animation-delay: .16s
}

.intv .inscard:nth-child(4) {
    animation-delay: .24s
}

@keyframes diagIn {
    from {
        opacity: 0;
        transform: translate(-16px, 16px)
    }

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

.intv .inscard:hover {
    transform: translateY(-4px);
    box-shadow: 1px 9px 40px 0 #325f301a
}

.intv .inscard::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #325F30;
    border-radius: 16px 16px 0 0
}

.intv .inscard:nth-child(2)::before {
    background: #C0555F
}

.intv .inscard:nth-child(3)::before {
    background: #EEDD83
}

.intv .inscard:nth-child(4)::before {
    background: #325F30
}

.intv .insico {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, #C0555F 0%, #325F30 100%);
    border-radius: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative
}

.intv .insico svg {
    width: 28px;
    height: 28px;
    fill: #fff
}

.intv .inscard h4 {
    font-size: 22px;
    line-height: 1.1;
    letter-spacing: -.01em;
    color: #1a1a1a;
    margin: 0 0 8px;
    font-weight: 600
}

.intv .inscard p {
    font-size: 15px;
    line-height: 1.75;
    letter-spacing: .01em;
    color: #333;
    margin: 0
}

@media (max-width: 900px) {
    .intv .htxt h1 {
        font-size: 42px
    }

    .intv .himg {
        height: 300px
    }

    .intv .qagrid {
        grid-template-columns: 1fr
    }

    .intv .qagrid::before {
        display: none
    }

    .intv .qaside {
        order: -1
    }

    .intv .expcols {
        grid-template-columns: 1fr;
        gap: 16px
    }

    .intv .expnums {
        flex-direction: row;
        gap: 28px;
        justify-content: space-around
    }

    .intv .expnum span {
        font-size: 58px
    }

    .intv .exptxts {
        gap: 28px
    }

    .intv .inswrap {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width: 600px) {
    .intv .htop {
        padding: 28px 16px
    }

    .intv .htop::before,
    .intv .htop::after {
        display: none
    }

    .intv .htxt h1 {
        font-size: 22px
    }

    .intv .htxt p {
        font-size: 15px
    }

    .intv .himg {
        height: 240px
    }

    .intv .qagrid,
    .intv .expgrid,
    .intv .insbox {
        padding: 28px 16px
    }

    .intv .exphd h2 {
        font-size: 22px
    }

    .intv .exphd p {
        font-size: 15px
    }

    .intv .exphd {
        margin: 0 0 28px
    }

    .intv .expnums {
        gap: 16px
    }

    .intv .expnum span {
        font-size: 42px
    }

    .intv .inswrap {
        grid-template-columns: 1fr
    }
}

.successpage {
    background: linear-gradient(127deg, #fef9f0 0%, #f0f7f0 100%);
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 56px 16px
}

.successpage .confirmwrap {
    max-width: 580px;
    width: 100%;
    background: #fff;
    border-radius: 26px;
    padding: 56px 28px;
    box-shadow: 1px 5px 14px 0 #c0555f14;
    text-align: center
}

.successpage .iconcheck {
    width: 84px;
    height: 84px;
    margin: 0 auto 28px;
    background: linear-gradient(135deg, #C0555F 0%, #325F30 100%);
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: scaleIn .18s ease-out
}

@keyframes scaleIn {
    0% {
        transform: scale(0.4);
        opacity: 0
    }

    100% {
        transform: scale(1);
        opacity: 1
    }
}

.successpage .iconcheck svg {
    width: 44px;
    height: 44px;
    stroke: #fff;
    stroke-width: 3;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    animation: drawCheck .16s ease-out .12s forwards;
    stroke-dasharray: 60;
    stroke-dashoffset: 60
}

@keyframes drawCheck {
    to {
        stroke-dashoffset: 0
    }
}

.successpage .confirmhead {
    font-size: 42px;
    line-height: 1.1;
    color: #325F30;
    margin: 0 0 16px;
    letter-spacing: -.02em
}

.successpage .confirmmsg {
    font-size: 15px;
    line-height: 1.75;
    color: #3a3a3a;
    margin: 0 0 28px;
    letter-spacing: .01em
}

.successpage .detailbox {
    background: #fafcfa;
    border-radius: 16px;
    padding: 28px;
    margin: 0 0 28px;
    text-align: left
}

.successpage .detailrow {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: baseline;
    padding: 8px 0;
    border-bottom: 1px solid #e8ede8
}

.successpage .detailrow:last-child {
    border-bottom: none;
    padding-bottom: 0
}

.successpage .detaillabel {
    font-size: 15px;
    line-height: 1.75;
    color: #6a6a6a;
    letter-spacing: .01em
}

.successpage .detailvalue {
    font-size: 15px;
    line-height: 1.75;
    color: #2a2a2a;
    font-weight: 600;
    letter-spacing: 0
}

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

.successpage .btnprimary {
    background: transparent;
    color: #C0555F;
    border: 2px solid #C0555F;
    padding: 16px 28px;
    font-size: 15px;
    line-height: 1.1;
    border-radius: 5px;
    cursor: pointer;
    transition: background .15s ease-out, color .15s ease-out;
    text-decoration: none;
    display: inline-block;
    letter-spacing: .02em
}

.successpage .btnprimary:hover {
    background: #C0555F;
    color: #fff
}

.successpage .btnsecondary {
    background: transparent;
    color: #325F30;
    border: none;
    padding: 16px 28px;
    font-size: 15px;
    line-height: 1.1;
    cursor: pointer;
    transition: color .13s ease-out;
    text-decoration: none;
    display: inline-block;
    letter-spacing: .02em
}

.successpage .btnsecondary:hover {
    color: #C0555F
}

.successpage .footnote {
    font-size: 15px;
    line-height: 1.75;
    color: #7a7a7a;
    margin: 28px 0 0;
    letter-spacing: .01em
}

@media (max-width: 600px) {
    .successpage {
        padding: 28px 16px
    }

    .successpage .confirmwrap {
        padding: 28px 16px
    }

    .successpage .confirmhead {
        font-size: 22px
    }

    .successpage .iconcheck {
        width: 68px;
        height: 68px
    }

    .successpage .iconcheck svg {
        width: 36px;
        height: 36px
    }
}