@import "https://cdn.jsdelivr.net/npm/@fontsource/pt-serif@latest/400.css";
@import "https://cdn.jsdelivr.net/npm/@fontsource/pt-serif@latest/700.css";

* {
    box-sizing: border-box
}

body {
    margin: 0;
    min-height: 100dvh;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    font-family: 'PT Serif', serif;
    background: #FFF;
    color: #131A21;
    font-size: 15px;
    line-height: 1.5
}

.topband {
    background: linear-gradient(135deg, #289034 0%, #1e6b27 100%);
    padding: 8px 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 2px solid #131A21
}

.statusmark {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #FFF;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em
}

.statusmark::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #FFF;
    box-shadow: 0 0 8px #ffffffb3
}

.brandzone {
    background: #FFF;
    padding: 48px 24px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-top: 2px solid #289034;
    border-bottom: 2px solid #289034;
    position: relative
}

.brandzone::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(45deg, #28903408 25%, transparent 25%), linear-gradient(-45deg, #28903408 25%, transparent 25%), linear-gradient(45deg, transparent 75%, #28903408 75%), linear-gradient(-45deg, transparent 75%, #28903408 75%);
    background-size: 24px 24px;
    background-position: 0 0, 0 12px, 12px -12px, -12px 0;
    pointer-events: none;
    z-index: 0
}

.markwrap {
    width: 70px;
    height: 70px;
    padding: 8px;
    background: #FFF;
    border: 2px solid #289034;
    border-radius: 7px;
    box-shadow: 0 4px 14px -2px #28903414 0 8px 36px -2px #2890341c;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1
}

.markwrap img {
    width: 100%;
    height: 100%;
    object-fit: contain
}

.companytext {
    margin: 16px 0 0;
    font-size: 23px;
    font-weight: 700;
    color: #131A21;
    text-align: center;
    position: relative;
    z-index: 1
}

.navrow {
    background: linear-gradient(to bottom, #FFF 0%, #f5f9f6 100%);
    padding: 16px 24px;
    border-bottom: 2px solid #289034;
    box-shadow: 0 2px 6px -2px #2890340d
}

.navlist {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 24px
}

.navlink {
    color: #131A21;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 26px;
    background: transparent;
    transition: background .15s ease-out, color .12s ease-out, box-shadow .15s ease-out;
    position: relative
}

.navlink:hover {
    background: linear-gradient(135deg, #289034 0%, #1e6b27 100%);
    color: #FFF;
    box-shadow: 0 4px 14px -2px #28903414
}

.navlink:focus {
    outline: 2px solid #289034;
    outline-offset: 4px;
    background: linear-gradient(135deg, #289034 0%, #1e6b27 100%);
    color: #FFF
}

.navlink:focus::after {
    content: 'focused';
    position: absolute;
    top: -24px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 13px;
    color: #289034;
    font-weight: 700;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: .05em
}

.basewrap {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px
}

.lowerlevel {
    background: linear-gradient(to bottom, #131A21 0%, #0d1318 100%);
    padding: 48px 24px 24px;
    color: #FFF;
    position: relative;
    overflow: hidden
}

.lowerlevel::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 40%;
    height: 200%;
    background: #2890340d;
    transform: rotate(15deg);
    pointer-events: none
}

.lowerlevel::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -5%;
    width: 30%;
    height: 150%;
    background: #28903414;
    border-radius: 42px;
    transform: rotate(-20deg);
    pointer-events: none
}

.footgrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 48px;
    position: relative;
    z-index: 1
}

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

.columnlabel {
    font-size: 15px;
    font-weight: 700;
    color: #289034;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin: 0 0 8px
}

.footlink {
    color: #FFF;
    text-decoration: none;
    font-size: 15px;
    padding: 4px 0;
    transition: color .12s ease-out, padding-left .15s ease-out;
    display: inline-block
}

.footlink:hover {
    color: #289034;
    padding-left: 8px
}

.footlink:focus {
    outline: 2px solid #289034;
    outline-offset: 4px;
    color: #289034
}

.footlink:focus::before {
    content: 'link';
    position: absolute;
    margin-top: -20px;
    font-size: 13px;
    color: #289034;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em
}

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

.contactentry {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: #FFF;
    font-size: 15px;
    line-height: 1.5
}

.contactentry svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px
}

.contactlink {
    color: #FFF;
    text-decoration: none;
    transition: color .12s ease-out
}

.contactlink:hover {
    color: #289034
}

.contactlink:focus {
    outline: 2px solid #289034;
    outline-offset: 2px;
    color: #289034
}

.footmark {
    display: flex;
    justify-content: center;
    padding: 48px 24px 24px;
    background: #0d1318;
    border-top: 2px solid #289034;
    position: relative;
    z-index: 1
}

.markwrapfoot {
    width: 65px;
    height: 65px;
    padding: 8px;
    background: #FFF;
    border: 2px solid #289034;
    border-radius: 7px;
    box-shadow: 0 4px 14px -2px #28903414;
    display: flex;
    align-items: center;
    justify-content: center
}

.markwrapfoot img {
    width: 100%;
    height: 100%;
    object-fit: contain
}

.rightsbar {
    background: #0d1318;
    padding: 16px 24px;
    text-align: center;
    border-top: 2px solid #131A21
}

.rightstext {
    color: #fff9;
    font-size: 13px;
    line-height: 1.5;
    margin: 0
}

.consentbox {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 340px;
    background: #FFF;
    border: 2px solid #289034;
    border-radius: 7px;
    box-shadow: 0 8px 36px -2px #131a211c;
    padding: 24px;
    z-index: 1500;
    display: none;
    flex-direction: column;
    gap: 16px
}

.consenttext {
    color: #131A21;
    font-size: 15px;
    line-height: 1.5;
    margin: 0
}

.consentactions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap
}

.consentbtn {
    flex: 1;
    min-width: 120px;
    padding: 8px 16px;
    border: 2px solid #289034;
    border-radius: 26px;
    font-family: 'PT Serif', serif;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: background .15s ease-out, color .12s ease-out, box-shadow .15s ease-out;
    position: relative;
    overflow: hidden
}

.acceptaction {
    background: linear-gradient(135deg, #289034 0%, #1e6b27 100%);
    color: #FFF
}

.acceptaction:hover {
    background: linear-gradient(135deg, #1e6b27 0%, #289034 100%);
    box-shadow: 0 4px 14px -2px #28903414
}

.acceptaction:focus {
    outline: 2px solid #289034;
    outline-offset: 4px
}

.declineaction {
    background: #FFF;
    color: #131A21
}

.declineaction:hover {
    background: #f5f9f6;
    box-shadow: 0 2px 6px -2px #2890340d
}

.declineaction:focus {
    outline: 2px solid #289034;
    outline-offset: 4px
}

.consentbtn:active::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: #ffffff80;
    transform: translate(-50%, -50%);
    animation: rippleeffect .6s linear
}

@keyframes rippleeffect {
    to {
        width: 300px;
        height: 300px;
        opacity: 0
    }
}

.prefbar {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: #289034;
    color: #FFF;
    padding: 8px 16px;
    border-radius: 26px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 14px -2px #28903414;
    z-index: 1500;
    display: none;
    align-items: center;
    gap: 8px;
    transition: background .15s ease-out
}

.prefbar:hover {
    background: #1e6b27
}

.prefpanel {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 380px;
    background: #FFF;
    border: 2px solid #289034;
    border-radius: 7px;
    box-shadow: 0 8px 36px -2px #131a211c;
    padding: 24px;
    z-index: 1501;
    display: none;
    flex-direction: column;
    gap: 16px
}

.preflabel {
    color: #131A21;
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 8px
}

.optionrow {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0
}

.optionrow input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #289034
}

.optionrow label {
    color: #131A21;
    font-size: 15px;
    cursor: pointer;
    flex: 1
}

.saleoptrow {
    border-top: 2px solid #289034;
    padding-top: 16px;
    margin-top: 8px
}

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

.savepref {
    flex: 1;
    padding: 8px 16px;
    border: 2px solid #289034;
    border-radius: 26px;
    background: linear-gradient(135deg, #289034 0%, #1e6b27 100%);
    color: #FFF;
    font-family: 'PT Serif', serif;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: background .15s ease-out, box-shadow .15s ease-out
}

.savepref:hover {
    background: linear-gradient(135deg, #1e6b27 0%, #289034 100%);
    box-shadow: 0 4px 14px -2px #28903414
}

.closepref {
    padding: 8px 16px;
    border: 2px solid #289034;
    border-radius: 26px;
    background: #FFF;
    color: #131A21;
    font-family: 'PT Serif', serif;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: background .15s ease-out
}

.closepref:hover {
    background: #f5f9f6
}

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

    .brandzone {
        padding: 24px 16px 16px
    }

    .markwrap {
        width: 60px;
        height: 60px
    }

    .companytext {
        font-size: 23px
    }

    .navrow {
        padding: 16px
    }

    .navlist {
        gap: 16px;
        flex-direction: column;
        align-items: stretch
    }

    .navlink {
        text-align: center
    }

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

    .consentbox {
        width: calc(100% - 32px);
        right: 16px;
        bottom: 16px
    }

    .prefbar {
        right: 16px;
        bottom: 16px
    }

    .prefpanel {
        width: calc(100% - 32px);
        right: 16px;
        bottom: 16px
    }
}

@media (max-width: 360px) {
    .statusmark {
        font-size: 13px
    }

    .companytext {
        font-size: 23px
    }

    .navlink {
        font-size: 15px;
        padding: 8px 16px
    }

    .consentactions {
        flex-direction: column
    }

    .consentbtn {
        min-width: 100%
    }
}

@media (min-width: 1024px) {
    .topband {
        padding: 8px 48px
    }

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

    .navrow {
        padding: 16px 48px
    }

    .navlist {
        gap: 48px
    }

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

    .footgrid {
        grid-template-columns: repeat(4, 1fr);
        gap: 48px
    }
}

@media (min-width: 1440px) {
    .navlist {
        gap: 48px
    }

    .footgrid {
        gap: 48px
    }
}

.policy-data {
    max-width: 1320px;
    margin: 0 auto;
    padding: 48px 24px;
    background: #FFF
}

.policy-data h1 {
    font-size: 62px;
    line-height: 1.1;
    color: #131A21;
    margin: 0 0 48px;
    font-weight: 700
}

.policy-data h2 {
    font-size: 23px;
    line-height: 1.5;
    color: #131A21;
    margin: 48px 0 24px;
    font-weight: 600
}

.policy-data h3 {
    font-size: 23px;
    line-height: 1.5;
    color: #289034;
    margin: 24px 0 16px;
    font-weight: 600
}

.policy-data h4 {
    font-size: 15px;
    line-height: 1.5;
    color: #131A21;
    margin: 24px 0 16px;
    font-weight: 600
}

.policy-data h5 {
    font-size: 15px;
    line-height: 1.5;
    color: #131A21;
    margin: 16px 0 8px;
    font-weight: 600
}

.policy-data h6 {
    font-size: 13px;
    line-height: 1.5;
    color: #131A21;
    margin: 16px 0 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .05em
}

.policy-data p {
    font-size: 15px;
    line-height: 1.8;
    color: #131A21;
    margin: 0 0 16px
}

.policy-data strong,
.policy-data b {
    font-weight: 600;
    color: #131A21
}

.policy-data em,
.policy-data i {
    font-style: italic
}

.policy-data a {
    color: #289034;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color .15s ease-out
}

.policy-data a:hover {
    border-bottom-color: #289034
}

.policy-data a:focus {
    outline: 2px solid #289034;
    outline-offset: 2px;
    border-radius: 2px
}

.policy-data table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    font-size: 15px;
    line-height: 1.5;
    box-shadow: 0 2px 6px -2px #131a210d;
    border-radius: 7px;
    overflow: hidden
}

.policy-data thead {
    background: linear-gradient(135deg, #289034 0%, #1f7028 100%)
}

.policy-data thead tr {
    color: #FFF
}

.policy-data thead th {
    padding: 16px;
    text-align: left;
    font-weight: 600;
    color: #FFF
}

.policy-data tbody tr {
    border-bottom: 1px solid #131a2114
}

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

.policy-data tbody tr:hover {
    background: #28903408
}

.policy-data td {
    padding: 16px;
    color: #131A21
}

.policy-data th {
    font-weight: 600
}

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

    .policy-data h1 {
        font-size: 23px;
        margin: 0 0 24px
    }

    .policy-data h2 {
        font-size: 23px;
        margin: 24px 0 16px
    }

    .policy-data h3 {
        font-size: 15px;
        margin: 16px 0 8px
    }

    .policy-data h4,
    .policy-data h5 {
        font-size: 15px;
        margin: 16px 0 8px
    }

    .policy-data h6 {
        font-size: 13px;
        margin: 8px 0
    }

    .policy-data p {
        font-size: 15px
    }

    .policy-data table {
        font-size: 13px;
        margin: 16px 0
    }

    .policy-data thead th,
    .policy-data td {
        padding: 8px
    }
}

@media (max-width: 360px) {
    .policy-data {
        padding: 16px 8px
    }

    .policy-data table {
        display: block;
        overflow-x: auto
    }
}

.guidedet {
    background: #FFF;
    color: #131A21;
    max-width: 100%;
    overflow-x: clip
}

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

.guidedet ::selection {
    background: #289034;
    color: #FFF
}

.guidedet .animwrap {
    animation: scalesettle .14s ease-out forwards;
    transform-origin: center
}

@keyframes scalesettle {
    from {
        opacity: 0;
        transform: scale(0.95)
    }

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

.guidedet .topband {
    background: linear-gradient(83deg, #289034 0%, #131A21 100%);
    padding: 24px 16px;
    position: relative;
    overflow: hidden
}

.guidedet .topband::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: repeating-linear-gradient(0deg, #ffffff08 0px, #ffffff08 1px, transparent 1px, transparent 48px), repeating-linear-gradient(90deg, #ffffff08 0px, #ffffff08 1px, transparent 1px, transparent 48px);
    pointer-events: none
}

.guidedet .topband .bandcont {
    max-width: 1320px;
    margin: 0 auto;
    position: relative;
    z-index: 1
}

.guidedet .topband .eyebrow {
    font-size: 13px;
    line-height: 1.5;
    color: #ffffffd9;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin: 0 0 8px
}

.guidedet .topband .maintitle {
    font-size: 62px;
    line-height: 1.1;
    color: #FFF;
    margin: 0;
    font-weight: 700
}

@media (max-width: 768px) {
    .guidedet .topband .maintitle {
        font-size: 23px
    }
}

.guidedet .metastrip {
    background: #FFF;
    border-bottom: 1px solid #131a211f;
    padding: 16px
}

.guidedet .metastrip .metacont {
    max-width: 1320px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px;
    align-items: center
}

.guidedet .metaitem {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    line-height: 1.5;
    color: #131A21
}

.guidedet .metaicon {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: #289034;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round
}

.guidedet .metatag {
    background: #28903414;
    color: #289034;
    padding: 4px 8px;
    border-radius: 2px;
    font-size: 13px;
    line-height: 1.5;
    font-weight: 600
}

.guidedet .articlewrap {
    max-width: 1320px;
    margin: 0 auto;
    padding: 48px 16px;
    position: relative
}

.guidedet .articlewrap::before {
    content: '∑';
    position: absolute;
    top: 48px;
    right: 48px;
    font-size: 320px;
    line-height: 1;
    color: #2890340a;
    font-weight: 300;
    pointer-events: none;
    z-index: 0
}

@media (max-width: 1024px) {
    .guidedet .articlewrap::before {
        font-size: 180px;
        right: 16px
    }
}

.guidedet .articleinner {
    position: relative;
    z-index: 1
}

.guidedet .heroimgwrap {
    width: 100%;
    height: 480px;
    overflow: hidden;
    border-radius: 7px;
    margin: 0 0 48px;
    box-shadow: 0 8px 36px -2px #131a211c;
    background: linear-gradient(83deg, #2890341a 0%, #131a210d 100%);
    position: relative
}

@media (max-width: 768px) {
    .guidedet .heroimgwrap {
        height: 240px
    }
}

.guidedet .heroimg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block
}

.guidedet .heroimg[src*="{{image_src}}"] {
    background: linear-gradient(83deg, #28903426 0%, #131a2114 100%)
}

.guidedet .subtitleline {
    font-size: 23px;
    line-height: 1.5;
    color: #289034;
    margin: 0 0 24px;
    font-weight: 600
}

.guidedet .bodycont {
    font-size: 15px;
    line-height: 1.8;
    color: #131A21
}

.guidedet .bodycont p {
    margin: 0 0 24px
}

.guidedet .bodycont p:last-child {
    margin-bottom: 0
}

.guidedet .bodycont h2 {
    font-size: 23px;
    line-height: 1.5;
    color: #131A21;
    margin: 48px 0 16px;
    font-weight: 700
}

.guidedet .bodycont h2:first-child {
    margin-top: 0
}

.guidedet .bodycont ol {
    margin: 0 0 24px;
    padding: 0 0 0 24px;
    list-style-position: outside
}

.guidedet .bodycont ol li {
    margin: 0 0 8px;
    padding-left: 8px
}

.guidedet .bodycont ol li:last-child {
    margin-bottom: 0
}

.guidedet .bodycont cite {
    display: block;
    font-style: italic;
    color: #131a21b3;
    margin: 24px 0;
    padding: 16px 24px;
    border-left: 4px solid #289034;
    background: #2890340a;
    border-radius: 2px
}

.guidedet .bodycont time {
    font-size: 13px;
    line-height: 1.5;
    color: #131a2199;
    font-weight: 600
}

.guidedet .engagebar {
    background: #2890340a;
    border-radius: 26px;
    padding: 24px;
    margin: 48px 0 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px;
    align-items: center;
    justify-content: space-between
}

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

.guidedet .engagegroup {
    display: flex;
    flex-direction: row;
    gap: 24px;
    align-items: center
}

.guidedet .engageitem {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    line-height: 1.5;
    color: #131A21
}

.guidedet .engageicon {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: #289034;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round
}

.guidedet .likebtn {
    background: #289034;
    color: #FFF;
    border: none;
    border-radius: 42px;
    padding: 8px 24px;
    font-size: 15px;
    line-height: 1.5;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    transition: background .15s ease-out, transform .12s ease;
    position: relative;
    overflow: hidden
}

.guidedet .likebtn:hover {
    background: linear-gradient(83deg, #289034 0%, #1f6e28 100%)
}

.guidedet .likebtn:active {
    transform: scale(0.97)
}

.guidedet .likebtn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: #ffffff4d;
    transform: translate(-50%, -50%);
    transition: width .18s ease-out, height .18s ease-out
}

.guidedet .likebtn:active::before {
    width: 200px;
    height: 200px
}

.guidedet .likebtnicon {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: #FFF;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round
}

.guidedet .parallaxsec {
    background: #131A21;
    padding: 48px 16px;
    position: relative;
    overflow: hidden;
    margin: 48px 0 0
}

.guidedet .parallaxsec::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    bottom: -50px;
    background-image: url('data:image/svg+xml;utf8,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="%23289034" opacity="0.03"/><circle cx="50" cy="50" r="30" fill="none" stroke="%23FFFFFF" stroke-width="0.5" opacity="0.08"/></svg>');
    background-size: 100px 100px;
    background-position: center;
    background-attachment: fixed;
    pointer-events: none;
    z-index: 0
}

.guidedet .parallaxcont {
    max-width: 1320px;
    margin: 0 auto;
    position: relative;
    z-index: 1
}

.guidedet .parallaxhead {
    font-size: 23px;
    line-height: 1.5;
    color: #FFF;
    margin: 0 0 24px;
    font-weight: 700
}

.guidedet .parallaxbody {
    font-size: 15px;
    line-height: 1.8;
    color: #ffffffe6;
    max-width: 880px
}

.guidedet .parallaxbody p {
    margin: 0 0 16px
}

.guidedet .parallaxbody p:last-child {
    margin-bottom: 0
}

.guidedet .checkgrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
    margin: 24px 0 0
}

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

.guidedet .checkcard {
    background: #ffffff0a;
    border: 1px solid #ffffff14;
    border-radius: 7px;
    padding: 16px;
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: flex-start;
    transition: background .14s ease-out, border-color .14s ease-out
}

.guidedet .checkcard:hover {
    background: #ffffff0f;
    border-color: #ffffff24
}

.guidedet .checkicon {
    width: 20px;
    height: 20px;
    min-width: 20px;
    border: 2px solid #289034;
    border-radius: 2px;
    position: relative;
    margin-top: 2px
}

.guidedet .checkicon::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 5px;
    width: 6px;
    height: 10px;
    border: solid #289034;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg)
}

.guidedet .checktxt {
    font-size: 15px;
    line-height: 1.5;
    color: #ffffffe6;
    margin: 0
}

.guidedet .divwrap {
    text-align: center;
    margin: 48px 0;
    position: relative
}

.guidedet .divline {
    height: 1px;
    background: #131a211f;
    position: relative
}

.guidedet .divtri {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 16px solid #289034
}

.gdpg {
    background: #FFF;
    color: #131A21;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0
}

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

.gdpg .splthro {
    display: flex;
    flex-direction: row;
    min-height: 480px;
    position: relative;
    overflow: hidden
}

.gdpg .lefthalf {
    flex: 0 0 40%;
    background: linear-gradient(83deg, #289034 0%, #289034d9 100%);
    padding: 48px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative
}

.gdpg .lefthalf::before {
    content: '';
    position: absolute;
    top: 16px;
    left: 16px;
    width: 80px;
    height: 1px;
    background: #fff6;
    transform: rotate(-45deg);
    transform-origin: left top
}

.gdpg .lefthalf::after {
    content: '';
    position: absolute;
    bottom: 16px;
    right: 16px;
    width: 60px;
    height: 1px;
    background: #fff6;
    transform: rotate(45deg);
    transform-origin: right bottom
}

.gdpg .righthalf {
    flex: 0 0 60%;
    background: #131A21;
    padding: 48px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative
}

.gdpg .maintxt {
    font-size: 62px;
    line-height: 1.1;
    color: #FFF;
    margin: 0 0 24px;
    font-weight: 700
}

.gdpg .subdsc {
    font-size: 15px;
    line-height: 1.5;
    color: #ffffffe6;
    margin: 0 0 24px
}

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

.gdpg .actlink {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: #FFF;
    text-decoration: none;
    transition: transform .15s ease-out;
    width: fit-content
}

.gdpg .actlink:hover {
    transform: translateX(4px)
}

.gdpg .actlink::after {
    content: '→';
    font-size: 15px
}

.gdpg .postlst {
    padding: 48px 24px;
    background: #FFF
}

.gdpg .lsthdr {
    margin: 0 0 48px;
    text-align: center
}

.gdpg .lsttitle {
    font-size: 23px;
    line-height: 1.1;
    color: #131A21;
    margin: 0 0 8px;
    font-weight: 700
}

.gdpg .lstsubtitle {
    font-size: 15px;
    line-height: 1.5;
    color: #131a21b3;
    margin: 0
}

.gdpg .cardgrd {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px
}

.gdpg .pstcard {
    background: #FFF;
    border: 1px solid #131a211a;
    border-radius: 7px;
    overflow: hidden;
    transition: box-shadow .15s ease-out, transform .15s ease-out;
    box-shadow: 0 2px 6px -2px #131a210d
}

.gdpg .pstcard:hover {
    box-shadow: 0 8px 36px -2px #131a211c;
    transform: translateY(-2px)
}

.gdpg .cardimg {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative
}

.gdpg .cardimg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform .2s ease-out
}

.gdpg .pstcard:hover .cardimg img {
    transform: scale(1.05)
}

.gdpg .cardtags {
    position: absolute;
    top: 8px;
    left: 8px;
    display: flex;
    gap: 8px
}

.gdpg .tgitem {
    background: #fffffff2;
    color: #131A21;
    font-size: 13px;
    padding: 4px 8px;
    border-radius: 2px;
    font-weight: 600
}

.gdpg .cardcnt {
    padding: 24px
}

.gdpg .cardtitle {
    font-size: 23px;
    line-height: 1.1;
    color: #131A21;
    margin: 0 0 8px;
    font-weight: 700
}

.gdpg .cardtitle a {
    color: inherit;
    text-decoration: none;
    transition: color .15s ease-out
}

.gdpg .cardtitle a:hover {
    color: #289034
}

.gdpg .cardsub {
    font-size: 15px;
    line-height: 1.5;
    color: #131a21b3;
    margin: 0 0 16px
}

.gdpg .carddsc {
    font-size: 15px;
    line-height: 1.5;
    color: #131A21;
    margin: 0 0 16px
}

.gdpg .cardmeta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    font-size: 13px;
    color: #131a2199;
    padding: 16px 0 0;
    border-top: 1px solid #131a211a
}

.gdpg .metaitem {
    display: flex;
    align-items: center;
    gap: 4px
}

.gdpg .metaauth {
    font-weight: 600;
    color: #131A21
}

.gdpg .spltsec {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 48px;
    padding: 48px 24px;
    background: linear-gradient(83deg, #2890340d 0%, #ffff 100%);
    position: relative
}

.gdpg .spltsec::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(./background_gallery/temp-1-3.jpg);
    background-size: cover;
    background-position: center;
    opacity: .03;
    pointer-events: none
}

.gdpg .spltlft {
    flex: 0 0 40%;
    position: relative;
    z-index: 1
}

.gdpg .spltrgt {
    flex: 1;
    position: relative;
    z-index: 1
}

.gdpg .numdisp {
    font-size: 62px;
    line-height: 1.1;
    color: #289034;
    font-weight: 700;
    margin: 0 0 16px
}

.gdpg .numcap {
    font-size: 15px;
    line-height: 1.5;
    color: #131a21b3;
    margin: 0
}

.gdpg .cnthdr {
    font-size: 23px;
    line-height: 1.1;
    color: #131A21;
    margin: 0 0 16px;
    font-weight: 700
}

.gdpg .cntbdy {
    font-size: 15px;
    line-height: 1.8;
    color: #131A21
}

.gdpg .cntbdy p {
    margin: 0 0 16px
}

.gdpg .cntbdy p:last-child {
    margin: 0
}

.gdpg .chklst {
    background: #FFF;
    padding: 48px 24px;
    position: relative
}

.gdpg .chklst::after {
    content: '';
    position: absolute;
    top: 24px;
    right: 24px;
    bottom: 24px;
    width: 1px;
    background: linear-gradient(180deg, transparent 0%, #28903433 50%, transparent 100%);
    transform: rotate(25deg);
    transform-origin: center
}

.gdpg .chkhdr {
    font-size: 23px;
    line-height: 1.1;
    color: #131A21;
    margin: 0 0 24px;
    font-weight: 700;
    text-align: center
}

.gdpg .chkitems {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 800px;
    margin: 0 auto
}

.gdpg .chkitem {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    background: #28903408;
    border-radius: 7px;
    transition: background .15s ease-out
}

.gdpg .chkitem:hover {
    background: #28903414
}

.gdpg .chkbox {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border: 2px solid #289034;
    border-radius: 2px;
    position: relative;
    margin-top: 2px
}

.gdpg .chkbox::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 5px;
    width: 6px;
    height: 10px;
    border: solid #289034;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg)
}

.gdpg .chktxt {
    flex: 1
}

.gdpg .chktitle {
    font-size: 15px;
    line-height: 1.5;
    color: #131A21;
    margin: 0 0 4px;
    font-weight: 600
}

.gdpg .chkdsc {
    font-size: 13px;
    line-height: 1.5;
    color: #131a21b3;
    margin: 0
}

.gdpg .divband {
    height: 4px;
    background: #289034;
    border-radius: 42px;
    width: 120px;
    margin: 48px auto
}

.gdpg .aurorasec {
    padding: 48px 24px;
    background: #FFF;
    position: relative;
    overflow: hidden
}

.gdpg .aurorasec::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 40%, #28903426 0%, transparent 50%), radial-gradient(circle at 70% 60%, #131a2114 0%, transparent 50%);
    animation: aurorshift 12s linear infinite;
    pointer-events: none
}

@keyframes aurorshift {
    0% {
        transform: translate(0, 0)
    }

    50% {
        transform: translate(-10%, -10%)
    }

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

.gdpg .auroracnt {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
    text-align: center
}

.gdpg .aurorahdr {
    font-size: 23px;
    line-height: 1.1;
    color: #131A21;
    margin: 0 0 16px;
    font-weight: 700
}

.gdpg .aurorabdy {
    font-size: 15px;
    line-height: 1.8;
    color: #131A21;
    margin: 0 0 24px
}

.gdpg .auroralnk {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: #289034;
    text-decoration: none;
    border-bottom: 2px dashed #289034;
    transition: gap .15s ease-out;
    position: relative;
    overflow: hidden
}

.gdpg .auroralnk::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #2890341a;
    transition: left .2s ease-out
}

.gdpg .auroralnk:hover::before {
    left: 0
}

.gdpg .auroralnk:hover {
    gap: 12px
}

.gdpg .auroralnk::after {
    content: '→';
    font-size: 15px
}

@media (min-width: 768px) {
    .gdpg .cardgrd {
        grid-template-columns: repeat(2, 1fr)
    }

    .gdpg .chkitems {
        grid-template-columns: repeat(2, 1fr)
    }

    .gdpg .postlst {
        padding: 48px
    }

    .gdpg .chklst {
        padding: 48px
    }

    .gdpg .aurorasec {
        padding: 48px
    }

    .gdpg .spltsec {
        padding: 48px
    }
}

@media (min-width: 1024px) {
    .gdpg .cardgrd {
        grid-template-columns: repeat(3, 1fr)
    }

    .gdpg .lefthalf {
        padding: 48px
    }

    .gdpg .righthalf {
        padding: 48px
    }
}

@media (max-width: 767px) {
    .gdpg .splthro {
        flex-direction: column
    }

    .gdpg .lefthalf {
        flex: 1
    }

    .gdpg .righthalf {
        flex: 1
    }

    .gdpg .maintxt {
        font-size: 23px
    }

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

    .gdpg .spltlft {
        flex: 1
    }

    .gdpg .numdisp {
        font-size: 23px
    }
}

.srvrpg {
    background: #FFF;
    color: #131A21;
    max-width: 1320px;
    margin: 0 auto
}

.srvrpg ::selection {
    background: #289034;
    color: #FFF
}

.srvrpg .ttlfrm {
    padding: 72px 16px 24px;
    position: relative;
    overflow: visible
}

.srvrpg .ttlfrm::before {
    content: '';
    position: absolute;
    top: 48px;
    left: 16px;
    width: 24px;
    height: 24px;
    border: 2px solid #289034;
    border-radius: 26px;
    opacity: .4
}

.srvrpg .ttlfrm::after {
    content: '';
    position: absolute;
    top: 96px;
    right: 48px;
    width: 16px;
    height: 16px;
    border: 2px solid #289034;
    border-radius: 26px;
    opacity: .3
}

.srvrpg .ttlgrd {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: center
}

.srvrpg .imgfrm {
    position: relative;
    border: 2px solid #289034;
    border-radius: 7px;
    padding: 8px;
    background: linear-gradient(83deg, #2890340d, transparent);
    max-width: 480px;
    margin: 0 auto
}

.srvrpg .imgfrm::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    width: 32px;
    height: 32px;
    border: 2px solid #289034;
    border-radius: 26px;
    opacity: .2
}

.srvrpg .imgfrm::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: -8px;
    width: 24px;
    height: 24px;
    border: 2px solid #289034;
    border-radius: 26px;
    opacity: .25
}

.srvrpg .imgwrp {
    position: relative;
    border-radius: 2px;
    overflow: hidden
}

.srvrpg .imgwrp img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: saturate(0.8) brightness(0.95)
}

.srvrpg .ttltxt h1 {
    font-size: 62px;
    line-height: 1.1;
    margin: 0 0 24px;
    font-weight: 700
}

.srvrpg .ttltxt p {
    font-size: 15px;
    line-height: 1.5;
    margin: 0;
    color: #131a21d9
}

.srvrpg .rlstry {
    padding: 48px 16px;
    background: linear-gradient(83deg, #28903408, transparent);
    position: relative
}

.srvrpg .rlstry::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, transparent, #28903426, transparent);
    transform: translateX(-50%) rotate(3deg)
}

.srvrpg .rlstry h2 {
    font-size: 23px;
    line-height: 1.1;
    margin: 0 0 24px;
    font-weight: 600;
    text-align: center
}

.srvrpg .strycnt {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 960px;
    margin: 0 auto
}

.srvrpg .stryitm {
    background: #FFF;
    border: 1px solid #28903426;
    border-radius: 7px;
    padding: 24px;
    box-shadow: 0 2px 6px -2px #2890340d;
    transition: box-shadow .15s ease-out, border-color .15s ease-out;
    position: relative
}

.srvrpg .stryitm:hover {
    box-shadow: 0 4px 14px -2px #28903414;
    border-color: #28903440
}

.srvrpg .stryitm::before {
    content: '';
    position: absolute;
    top: 16px;
    left: -1px;
    width: 4px;
    height: 48px;
    background: linear-gradient(83deg, #289034, #28903466);
    border-radius: 0 2px 2px 0;
    opacity: 0;
    transition: opacity .12s ease
}

.srvrpg .stryitm:hover::before {
    opacity: 1
}

.srvrpg .strynam {
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 8px;
    color: #289034
}

.srvrpg .stryqt {
    font-size: 15px;
    line-height: 1.5;
    margin: 0;
    font-style: italic;
    color: #131a21e6
}

.srvrpg .audnc {
    padding: 48px 16px;
    background: #FFF
}

.srvrpg .audnc h2 {
    font-size: 23px;
    line-height: 1.1;
    margin: 0 0 24px;
    font-weight: 600;
    max-width: 720px
}

.srvrpg .audncgrd {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    max-width: 960px
}

.srvrpg .audncsct {
    position: relative
}

.srvrpg .audncsct h3 {
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 16px;
    color: #289034;
    text-transform: uppercase;
    letter-spacing: .05em
}

.srvrpg .audnclst {
    list-style: none;
    margin: 0;
    padding: 0
}

.srvrpg .audnclst li {
    position: relative;
    padding: 0 0 0 32px;
    margin: 0 0 16px;
    font-size: 15px;
    line-height: 1.5
}

.srvrpg .audnclst li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    width: 16px;
    height: 16px;
    border: 2px solid #289034;
    border-radius: 2px;
    background: linear-gradient(83deg, #2890341a, transparent)
}

.srvrpg .audnclst li::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 8px;
    width: 6px;
    height: 10px;
    border: solid #289034;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg)
}

.srvrpg .offrng {
    padding: 48px 16px;
    background: linear-gradient(147deg, #28903414 0%, transparent 45%, #2890340a 100%);
    position: relative
}

.srvrpg .offrng::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #28903433, transparent)
}

.srvrpg .offrng::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #28903433, transparent)
}

.srvrpg .offrng h2 {
    font-size: 23px;
    line-height: 1.1;
    margin: 0 0 24px;
    font-weight: 600;
    text-align: center
}

.srvrpg .offrgrd {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 1120px;
    margin: 0 auto
}

.srvrpg .offritm {
    background: #FFF;
    border: 1px solid #2890341f;
    border-radius: 42px;
    padding: 24px;
    position: relative;
    overflow: hidden;
    transition: transform .15s ease-out
}

.srvrpg .offritm:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 36px -2px #2890341c
}

.srvrpg .offritm::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle at top right, #28903414, transparent);
    pointer-events: none
}

.srvrpg .offrnmbr {
    position: absolute;
    top: 24px;
    left: 24px;
    width: 48px;
    height: 48px;
    background: linear-gradient(83deg, #289034, #289034cc);
    border-radius: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 23px;
    font-weight: 700;
    color: #FFF;
    box-shadow: 0 4px 14px -2px #28903440
}

.srvrpg .offrcnt {
    padding: 0 0 0 72px
}

.srvrpg .offrcnt h3 {
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 8px;
    color: #131A21
}

.srvrpg .offrcnt p {
    font-size: 15px;
    line-height: 1.5;
    margin: 0;
    color: #131a21cc
}

.srvrpg .apprch {
    padding: 48px 16px;
    background: #FFF
}

.srvrpg .apprch h2 {
    font-size: 23px;
    line-height: 1.1;
    margin: 0 0 16px;
    font-weight: 600
}

.srvrpg .apprchintro {
    font-size: 15px;
    line-height: 1.5;
    margin: 0 0 24px;
    max-width: 840px;
    color: #131a21d9
}

.srvrpg .apprchcnt {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 840px
}

.srvrpg .apprchcnt p {
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
    color: #131a21e6
}

.srvrpg .prfcrnc {
    padding: 48px 16px;
    background: linear-gradient(83deg, #2890340a, transparent);
    position: relative
}

.srvrpg .prfcrnc::before {
    content: '';
    position: absolute;
    top: 24px;
    left: 0;
    width: 40%;
    height: 2px;
    background: linear-gradient(90deg, #2890344d, transparent)
}

.srvrpg .prfcrnc::after {
    content: '';
    position: absolute;
    top: 24px;
    left: calc(40% + 8px);
    width: 8px;
    height: 8px;
    background: #289034;
    border-radius: 26px;
    box-shadow: 16px 0 0 #289034
}

.srvrpg .prfcrnc h2 {
    font-size: 23px;
    line-height: 1.1;
    margin: 0 0 24px;
    font-weight: 600
}

.srvrpg .prfgrd {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 960px
}

.srvrpg .prfcrd {
    background: #FFF;
    border: 1px solid #2890341a;
    border-radius: 7px;
    padding: 24px;
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 16px;
    align-items: start;
    position: relative;
    overflow: hidden;
    transition: border-color .12s ease
}

.srvrpg .prfcrd:hover {
    border-color: #2890344d
}

.srvrpg .prfcrd::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(83deg, #2890340d, transparent);
    transition: width .18s ease-out;
    pointer-events: none
}

.srvrpg .prfcrd:hover::before {
    width: 100%
}

.srvrpg .prfimg {
    width: 80px;
    height: 80px;
    border-radius: 26px;
    overflow: hidden;
    position: relative;
    border: 2px solid transparent;
    transition: border-color .15s ease
}

.srvrpg .prfcrd:hover .prfimg {
    border-color: #2890344d
}

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

.srvrpg .prfcnt h3 {
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 8px;
    color: #131A21
}

.srvrpg .prfcnt p {
    font-size: 13px;
    line-height: 1.5;
    margin: 0 0 8px;
    color: #131a21b3
}

.srvrpg .prfqt {
    font-size: 15px;
    line-height: 1.5;
    margin: 0;
    font-style: italic;
    color: #131a21d9
}

.srvrpg .sprt {
    padding: 48px 16px;
    background: #FFF
}

.srvrpg .sprt h2 {
    font-size: 23px;
    line-height: 1.1;
    margin: 0 0 24px;
    font-weight: 600
}

.srvrpg .sprtgrd {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 960px
}

.srvrpg .sprtbox {
    border: 2px solid #28903426;
    border-radius: 7px;
    padding: 24px;
    background: linear-gradient(83deg, #28903405, transparent);
    position: relative
}

.srvrpg .sprtbox::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border: 2px solid #289034;
    border-radius: 7px;
    opacity: 0;
    transition: opacity .18s ease;
    pointer-events: none;
    animation: sprttrc 2s linear infinite;
    animation-play-state: paused
}

.srvrpg .sprtbox:hover::after {
    animation-play-state: running;
    opacity: 1
}

@keyframes sprttrc {
    0% {
        clip-path: polygon(0 0, 0% 0, 0% 100%, 0 100%)
    }

    25% {
        clip-path: polygon(0 0, 100% 0, 100% 0%, 0 0%)
    }

    50% {
        clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%)
    }

    75% {
        clip-path: polygon(100% 100%, 100% 100%, 0% 100%, 0 100%)
    }

    100% {
        clip-path: polygon(0 100%, 0 100%, 0 0, 0 0)
    }
}

.srvrpg .sprtbox h3 {
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 16px;
    color: #289034
}

.srvrpg .sprtbox p {
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
    color: #131a21e6
}

.srvrpg .stptrck {
    margin: 24px 0 0;
    padding: 24px;
    background: #28903408;
    border-radius: 7px;
    position: relative
}

.srvrpg .stptrck h4 {
    font-size: 13px;
    font-weight: 600;
    margin: 0 0 16px;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: #131a21b3
}

.srvrpg .stplst {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative
}

.srvrpg .stpitm {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 16px;
    align-items: center
}

.srvrpg .stpnmbr {
    width: 40px;
    height: 40px;
    background: linear-gradient(83deg, #289034, #289034b3);
    border-radius: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 700;
    color: #FFF;
    box-shadow: 0 2px 6px -2px #28903433
}

.srvrpg .stptxt {
    font-size: 15px;
    line-height: 1.5;
    margin: 0;
    color: #131a21d9
}

@keyframes aurorabg {

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

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

.srvrpg .prfcrnc {
    background: linear-gradient(83deg, #2890340a 0%, #fffc 30%, #2890340f 60%, #ffffffe6 100%);
    background-size: 200% 200%;
    animation: aurorabg 12s linear infinite
}

@media (min-width: 768px) {
    .srvrpg .ttlfrm {
        padding: 96px 24px 48px
    }

    .srvrpg .ttlgrd {
        grid-template-columns: 1fr 1fr;
        gap: 48px
    }

    .srvrpg .imgwrp img {
        height: 400px
    }

    .srvrpg .rlstry {
        padding: 72px 24px
    }

    .srvrpg .strycnt {
        grid-template-columns: repeat(2, 1fr)
    }

    .srvrpg .audnc {
        padding: 72px 24px
    }

    .srvrpg .audncgrd {
        grid-template-columns: repeat(2, 1fr)
    }

    .srvrpg .offrng {
        padding: 72px 24px
    }

    .srvrpg .offrgrd {
        grid-template-columns: repeat(2, 1fr)
    }

    .srvrpg .apprch {
        padding: 72px 24px
    }

    .srvrpg .apprchcnt {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px
    }

    .srvrpg .prfcrnc {
        padding: 72px 24px
    }

    .srvrpg .prfgrd {
        grid-template-columns: repeat(2, 1fr)
    }

    .srvrpg .sprt {
        padding: 72px 24px
    }

    .srvrpg .sprtgrd {
        grid-template-columns: repeat(2, 1fr)
    }

    .srvrpg .stplst {
        flex-direction: row;
        justify-content: space-between
    }

    .srvrpg .stpitm {
        grid-template-columns: 1fr;
        grid-template-rows: auto 1fr;
        gap: 8px;
        text-align: center;
        max-width: 160px
    }

    .srvrpg .stpnmbr {
        margin: 0 auto
    }
}

@media (min-width: 1024px) {
    .srvrpg .ttlfrm {
        padding: 120px 48px 72px
    }

    .srvrpg .ttlgrd {
        grid-template-columns: 1.2fr 1fr;
        gap: 72px
    }

    .srvrpg .imgwrp img {
        height: 480px
    }

    .srvrpg .ttltxt h1 {
        font-size: 62px
    }

    .srvrpg .rlstry {
        padding: 96px 48px
    }

    .srvrpg .strycnt {
        grid-template-columns: repeat(3, 1fr)
    }

    .srvrpg .audnc {
        padding: 96px 48px
    }

    .srvrpg .offrng {
        padding: 96px 48px
    }

    .srvrpg .offrgrd {
        grid-template-columns: repeat(3, 1fr)
    }

    .srvrpg .apprch {
        padding: 96px 48px
    }

    .srvrpg .prfcrnc {
        padding: 96px 48px
    }

    .srvrpg .sprt {
        padding: 96px 48px
    }
}

@media (min-width: 1440px) {
    .srvrpg .ttltxt h1 {
        font-size: 62px
    }
}

.abtus {
    background: #FFF;
    color: #131A21;
    overflow-x: clip
}

.abtus ::selection {
    background: #289034;
    color: #FFF
}

.abtus .titlwrap {
    background: linear-gradient(83deg, #289034 0%, #289034d1 100%);
    padding: 48px 16px;
    position: relative;
    overflow: hidden
}

.abtus .titlwrap::before,
.abtus .titlwrap::after {
    content: '';
    position: absolute;
    border: 2px solid #ffffff1f;
    border-radius: 50%;
    pointer-events: none
}

.abtus .titlwrap::before {
    width: 420px;
    height: 420px;
    top: -180px;
    right: -120px;
    opacity: .08
}

.abtus .titlwrap::after {
    width: 280px;
    height: 280px;
    bottom: -90px;
    left: -60px;
    opacity: .06
}

.abtus .titlcont {
    max-width: 1320px;
    margin: 0 auto;
    position: relative;
    z-index: 1
}

.abtus .titltxt {
    color: #FFF;
    font-size: 62px;
    line-height: 1.1;
    margin: 0 0 16px;
    font-weight: 700;
    animation: slideFromLeft .8s ease-out
}

.abtus .titlsub {
    color: #ffffffeb;
    font-size: 23px;
    line-height: 1.5;
    margin: 0;
    max-width: 720px;
    animation: slideFromRight .9s ease-out
}

@keyframes slideFromLeft {
    from {
        opacity: 0;
        transform: translateX(-60px)
    }

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

@keyframes slideFromRight {
    from {
        opacity: 0;
        transform: translateX(60px)
    }

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

@keyframes slideFromBottom {
    from {
        opacity: 0;
        transform: translateY(50px)
    }

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

@keyframes slideFromTop {
    from {
        opacity: 0;
        transform: translateY(-50px)
    }

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

.abtus .storysec {
    background: #FFF;
    padding: 48px 16px;
    position: relative
}

.abtus .storycont {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: start
}

.abtus .storyimgwrap {
    position: relative;
    width: 100%;
    height: 480px;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 8px 36px -2px #131a211c;
    animation: slideFromLeft 1s ease-out
}

.abtus .storyimg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block
}

.abtus .storytxtzone {
    animation: slideFromRight 1.1s ease-out
}

.abtus .storyhed {
    font-size: 62px;
    line-height: 1.1;
    color: #131A21;
    margin: 0 0 24px;
    font-weight: 700
}

.abtus .storyintro {
    font-size: 23px;
    line-height: 1.5;
    color: #131A21;
    margin: 0 0 24px
}

.abtus .storycols {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px
}

.abtus .storycol {
    font-size: 15px;
    line-height: 1.8;
    color: #131A21;
    margin: 0
}

.abtus .teamzone {
    background: linear-gradient(83deg, #2890340a 0%, #ffff 100%);
    padding: 48px 16px;
    position: relative
}

.abtus .teamzone::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0 Q 50 50 100 0 L 100 100 L 0 100 Z' fill='%23289034' opacity='0.02'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 200px 200px;
    pointer-events: none;
    opacity: .3
}

.abtus .teamcont {
    max-width: 1320px;
    margin: 0 auto;
    position: relative;
    z-index: 1
}

.abtus .teamhed {
    font-size: 62px;
    line-height: 1.1;
    color: #131A21;
    margin: 0 0 48px;
    font-weight: 700;
    text-align: center;
    animation: slideFromTop 1s ease-out
}

.abtus .teamgrid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px
}

.abtus .teammemb {
    background: #FFF;
    border-radius: 7px;
    padding: 24px;
    box-shadow: 0 4px 14px -2px #131a2114;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 24px;
    align-items: start;
    transition: box-shadow .15s ease-out, transform .12s ease-out;
    animation: slideFromBottom 1.2s ease-out;
    animation-fill-mode: both
}

.abtus .teammemb:nth-child(1) {
    animation-delay: .1s
}

.abtus .teammemb:nth-child(2) {
    animation-delay: .2s
}

.abtus .teammemb:hover {
    box-shadow: 0 8px 36px -2px #131a211c;
    transform: translateY(-4px)
}

.abtus .membpicwrap {
    width: 120px;
    height: 120px;
    border-radius: 42px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 2px 6px -2px #131a210d
}

.abtus .membpic {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block
}

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

.abtus .membname {
    font-size: 23px;
    line-height: 1.1;
    color: #131A21;
    margin: 0;
    font-weight: 700
}

.abtus .membrole {
    font-size: 15px;
    line-height: 1.5;
    color: #289034;
    margin: 0;
    font-weight: 600
}

.abtus .membbio {
    font-size: 15px;
    line-height: 1.8;
    color: #131A21;
    margin: 8px 0 0
}

.abtus .valueszone {
    background: #FFF;
    padding: 48px 16px;
    position: relative;
    overflow: hidden
}

.abtus .valuescont {
    max-width: 1320px;
    margin: 0 auto;
    position: relative;
    z-index: 1
}

.abtus .valueshed {
    font-size: 62px;
    line-height: 1.1;
    color: #131A21;
    margin: 0 0 48px;
    font-weight: 700;
    animation: slideFromLeft 1s ease-out
}

.abtus .valuesgrid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px
}

.abtus .valuecard {
    background: linear-gradient(83deg, #28903408 0%, #ffff 100%);
    border: 2px solid #2890341f;
    border-radius: 7px;
    padding: 24px;
    position: relative;
    overflow: hidden;
    transition: border-color .14s ease-out, background .16s ease;
    animation: slideFromBottom 1.1s ease-out;
    animation-fill-mode: both
}

.abtus .valuecard:nth-child(1) {
    animation-delay: .15s
}

.abtus .valuecard:nth-child(2) {
    animation-delay: .25s
}

.abtus .valuecard:nth-child(3) {
    animation-delay: .35s
}

.abtus .valuecard:nth-child(4) {
    animation-delay: .45s
}

.abtus .valuecard:hover {
    border-color: #28903447;
    background: linear-gradient(83deg, #2890340f 0%, #ffff 100%)
}

.abtus .valuecard::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 160px;
    height: 160px;
    background: linear-gradient(83deg, #28903414 0%, transparent 100%);
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    transition: opacity .18s ease-out
}

.abtus .valuecard:hover::before {
    opacity: 1
}

.abtus .valueicon {
    width: 48px;
    height: 48px;
    margin: 0 0 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #289034;
    border-radius: 2px;
    color: #FFF;
    font-size: 23px;
    font-weight: 700
}

.abtus .valuetitle {
    font-size: 23px;
    line-height: 1.1;
    color: #131A21;
    margin: 0 0 8px;
    font-weight: 700
}

.abtus .valuedesc {
    font-size: 15px;
    line-height: 1.8;
    color: #131A21;
    margin: 0
}

.abtus .approachzone {
    background: linear-gradient(83deg, #131A21 0%, #131a21f0 100%);
    padding: 48px 16px;
    position: relative;
    overflow: hidden
}

.abtus .approachzone::after {
    content: '';
    position: absolute;
    bottom: -120px;
    right: -180px;
    width: 480px;
    height: 480px;
    background: #28903414;
    border-radius: 50%;
    pointer-events: none
}

.abtus .approachcont {
    max-width: 1320px;
    margin: 0 auto;
    position: relative;
    z-index: 1
}

.abtus .approachhed {
    font-size: 62px;
    line-height: 1.1;
    color: #FFF;
    margin: 0 0 24px;
    font-weight: 700;
    animation: slideFromRight 1s ease-out
}

.abtus .approachintro {
    font-size: 23px;
    line-height: 1.5;
    color: #ffffffe0;
    margin: 0 0 48px;
    max-width: 820px;
    animation: slideFromLeft 1.1s ease-out
}

.abtus .approachlist {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    list-style: none;
    margin: 0;
    padding: 0
}

.abtus .approachitem {
    background: #ffffff0a;
    border: 1px solid #ffffff1a;
    border-radius: 7px;
    padding: 24px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px;
    align-items: start;
    transition: background .13s ease-out, border-color .15s ease;
    animation: slideFromBottom 1.2s ease-out;
    animation-fill-mode: both
}

.abtus .approachitem:nth-child(1) {
    animation-delay: .2s
}

.abtus .approachitem:nth-child(2) {
    animation-delay: .3s
}

.abtus .approachitem:nth-child(3) {
    animation-delay: .4s
}

.abtus .approachitem:hover {
    background: #ffffff12;
    border-color: #ffffff2e
}

.abtus .approachcheck {
    width: 28px;
    height: 28px;
    border: 2px solid #289034;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    background: #2890341a
}

.abtus .approachcheck::after {
    content: '';
    width: 12px;
    height: 8px;
    border-left: 2px solid #289034;
    border-bottom: 2px solid #289034;
    transform: rotate(-45deg);
    margin-top: -2px
}

.abtus .approachtxt {
    font-size: 15px;
    line-height: 1.8;
    color: #ffffffeb;
    margin: 0
}

.abtus .statszone {
    background: #FFF;
    padding: 48px 16px;
    position: relative
}

.abtus .statscont {
    max-width: 1320px;
    margin: 0 auto
}

.abtus .statsgrid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px
}

.abtus .statcard {
    background: linear-gradient(83deg, #2890340d 0%, #ffff 100%);
    border: 2px solid #289034;
    border-radius: 7px;
    padding: 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform .14s ease-out, box-shadow .16s ease;
    animation: slideFromTop 1s ease-out;
    animation-fill-mode: both
}

.abtus .statcard:nth-child(1) {
    animation-delay: .1s
}

.abtus .statcard:nth-child(2) {
    animation-delay: .2s
}

.abtus .statcard:nth-child(3) {
    animation-delay: .3s
}

.abtus .statcard:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 36px -2px #2890342e
}

.abtus .statnum {
    font-size: 62px;
    line-height: 1.1;
    color: #289034;
    margin: 0 0 8px;
    font-weight: 700
}

.abtus .statlabel {
    font-size: 15px;
    line-height: 1.5;
    color: #131A21;
    margin: 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px
}

.abtus .divider {
    width: 100%;
    height: 48px;
    position: relative;
    overflow: hidden
}

.abtus .divider svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block
}

@media (min-width: 768px) {
    .abtus .titlwrap {
        padding: 96px 24px
    }

    .abtus .titltxt {
        font-size: 62px
    }

    .abtus .storysec {
        padding: 96px 24px
    }

    .abtus .storycont {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
        align-items: center
    }

    .abtus .storyimgwrap {
        height: 560px
    }

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

    .abtus .teamzone {
        padding: 96px 24px
    }

    .abtus .teamgrid {
        grid-template-columns: 1fr 1fr;
        gap: 24px
    }

    .abtus .valueszone {
        padding: 96px 24px
    }

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

    .abtus .approachzone {
        padding: 96px 24px
    }

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

    .abtus .statszone {
        padding: 96px 24px
    }

    .abtus .statsgrid {
        grid-template-columns: repeat(3, 1fr)
    }
}

@media (min-width: 1024px) {
    .abtus .membpicwrap {
        width: 140px;
        height: 140px
    }

    .abtus .valuesgrid {
        grid-template-columns: repeat(4, 1fr)
    }

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

@media (min-width: 1440px) {
    .abtus .storycont {
        gap: 96px
    }

    .abtus .storyimgwrap {
        height: 640px
    }
}

.contactpg {
    background: #FFF;
    color: #131A21;
    max-width: 1320px;
    margin: 0 auto;
    position: relative;
    overflow-x: clip
}

.contactpg::selection {
    background: #289034;
    color: #FFF
}

.contactpg .introzone {
    background: #131A21;
    color: #FFF;
    padding: 48px 24px;
    position: relative;
    overflow: hidden
}

.contactpg .introzone::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(83deg, transparent, transparent 19px, #28903408 19px, #28903408 21px);
    animation: stripemove 8s linear infinite;
    pointer-events: none;
    z-index: 1
}

@keyframes stripemove {
    0% {
        transform: translateX(0) translateY(0)
    }

    100% {
        transform: translateX(42px) translateY(42px)
    }
}

.contactpg .introzone::after {
    content: '';
    position: absolute;
    top: 16px;
    left: 16px;
    right: 16px;
    bottom: 16px;
    border: 1px solid #2890344d;
    pointer-events: none;
    z-index: 2
}

.contactpg .introcontent {
    max-width: 840px;
    margin: 0 auto;
    position: relative;
    z-index: 3
}

.contactpg .introcontent h1 {
    font-size: 62px;
    line-height: 1.1;
    margin: 0 0 24px;
    font-weight: 700
}

.contactpg .introcontent .quotetxt {
    font-size: 23px;
    line-height: 1.5;
    margin: 0;
    font-style: italic;
    opacity: .92
}

.contactpg .formarea {
    background: repeating-conic-gradient(from 0deg at 0 0, transparent 0deg 90deg, #131a2104 90deg 180deg) 0 0 / 24px 24px;
    padding: 48px 24px;
    position: relative
}

.contactpg .formarea::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    height: 2px;
    background: linear-gradient(83deg, #289034, transparent);
    opacity: .6
}

.contactpg .formcontainer {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 48px
}

.contactpg .formgrid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: start
}

.contactpg .sideinfo {
    background: #FFF;
    padding: 24px;
    border: 1px solid #131a2114;
    border-radius: 7px;
    box-shadow: 0 2px 6px -2px #2890340d;
    position: relative
}

.contactpg .sideinfo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(83deg, #289034, transparent)
}

.contactpg .sideinfo h2 {
    font-size: 23px;
    line-height: 1.1;
    margin: 0 0 16px;
    font-weight: 600
}

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

.contactpg .detailslist li {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 16px;
    background: #28903405;
    border-radius: 2px;
    transition: background .15s ease-out, box-shadow .15s ease-out;
    position: relative;
    overflow: hidden
}

.contactpg .detailslist li::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 0 0, #2890340f, transparent 70%);
    opacity: 0;
    transition: opacity .18s ease;
    pointer-events: none
}

.contactpg .detailslist li:hover::before {
    opacity: 1
}

.contactpg .detailslist li:hover {
    background: #2890340a;
    box-shadow: 0 4px 14px -2px #28903414
}

.contactpg .detaillabel {
    font-size: 13px;
    line-height: 1.5;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: #289034;
    font-weight: 600;
    margin: 0
}

.contactpg .detailvalue {
    font-size: 15px;
    line-height: 1.5;
    margin: 0;
    color: #131A21
}

.contactpg .detailvalue a {
    color: inherit;
    text-decoration: none;
    position: relative;
    transition: color .12s ease-out
}

.contactpg .detailvalue a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 1px;
    background: #289034;
    transition: width .16s ease-out, left .16s ease-out
}

.contactpg .detailvalue a:hover {
    color: #289034
}

.contactpg .detailvalue a:hover::after {
    width: 100%;
    left: 0
}

.contactpg .mainform {
    background: #FFF;
    padding: 24px;
    border: 1px solid #131a2114;
    border-radius: 7px;
    box-shadow: 0 4px 14px -2px #28903414
}

.contactpg .mainform h2 {
    font-size: 23px;
    line-height: 1.1;
    margin: 0 0 8px;
    font-weight: 600
}

.contactpg .formintro {
    font-size: 15px;
    line-height: 1.5;
    margin: 0 0 24px;
    color: #131a21bf
}

.contactpg .formelements {
    display: flex;
    flex-direction: column;
    gap: 24px
}

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

.contactpg .fieldgroup label {
    font-size: 15px;
    line-height: 1.5;
    font-weight: 500;
    color: #131A21;
    display: flex;
    align-items: center;
    gap: 4px
}

.contactpg .fieldgroup label .required {
    color: #289034;
    font-size: 15px
}

.contactpg .fieldgroup input[type="email"] {
    width: 100%;
    padding: 16px;
    font-size: 15px;
    line-height: 1.5;
    border: 1px solid #131a2126;
    border-radius: 2px;
    background: #FFF;
    color: #131A21;
    transition: border-color .12s ease-out, box-shadow .12s ease-out;
    box-shadow: inset 0 1px 3px #131a2108
}

.contactpg .fieldgroup input[type="email"]::placeholder {
    color: #131a2166
}

.contactpg .fieldgroup input[type="email"]:focus {
    outline: none;
    border-color: #289034;
    box-shadow: inset 0 1px 3px #131a2108 0 0 0 3px #2890341a
}

.contactpg .sizelabel {
    font-size: 15px;
    line-height: 1.5;
    font-weight: 500;
    color: #131A21;
    margin: 0 0 8px;
    display: flex;
    align-items: center;
    gap: 4px
}

.contactpg .sizelabel .required {
    color: #289034;
    font-size: 15px
}

.contactpg .radiogrid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px
}

.contactpg .radiooption {
    position: relative
}

.contactpg .radiooption input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0
}

.contactpg .radiooption label {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: #28903405;
    border: 1px solid #131a2114;
    border-radius: 2px;
    cursor: pointer;
    transition: background .15s ease-out, border-color .15s ease-out, box-shadow .15s ease-out;
    font-weight: 400
}

.contactpg .radiooption label::before {
    content: '';
    width: 20px;
    height: 20px;
    border: 2px solid #131a2133;
    border-radius: 42px;
    flex-shrink: 0;
    transition: border-color .12s ease-out, background .12s ease-out;
    position: relative
}

.contactpg .radiooption input[type="radio"]:checked+label {
    background: #2890340f;
    border-color: #289034;
    box-shadow: 0 2px 6px -2px #2890340d
}

.contactpg .radiooption input[type="radio"]:checked+label::before {
    border-color: #289034;
    background: #289034;
    box-shadow: inset 0 0 0 4px #FFF
}

.contactpg .radiooption label:hover {
    background: #2890340a;
    border-color: #2890344d
}

.contactpg .privacycheck {
    display: flex;
    align-items: start;
    gap: 12px;
    padding: 16px;
    background: #28903405;
    border-radius: 2px
}

.contactpg .privacycheck input[type="checkbox"] {
    width: 20px;
    height: 20px;
    border: 2px solid #131a2133;
    border-radius: 2px;
    flex-shrink: 0;
    cursor: pointer;
    appearance: none;
    background: #FFF;
    transition: border-color .12s ease-out, background .12s ease-out;
    position: relative;
    margin-top: 2px
}

.contactpg .privacycheck input[type="checkbox"]:checked {
    background: #289034;
    border-color: #289034
}

.contactpg .privacycheck input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 5px;
    width: 4px;
    height: 8px;
    border: solid #FFF;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg)
}

.contactpg .privacycheck label {
    font-size: 13px;
    line-height: 1.5;
    color: #131a21bf;
    cursor: pointer;
    margin: 0
}

.contactpg .privacycheck label a {
    color: #289034;
    text-decoration: none;
    border-bottom: 1px dashed #289034;
    transition: border-bottom-style .1s ease-out
}

.contactpg .privacycheck label a:hover {
    border-bottom-style: solid
}

.contactpg .submitbtn {
    width: 100%;
    padding: 16px 24px;
    font-size: 15px;
    line-height: 1.5;
    font-weight: 600;
    color: #FFF;
    background: linear-gradient(83deg, #289034, #1f7329);
    border: none;
    border-radius: 26px;
    cursor: pointer;
    transition: box-shadow .15s ease-out, transform .1s ease-out;
    box-shadow: 0 4px 14px -2px #28903414;
    position: relative;
    overflow: hidden
}

.contactpg .submitbtn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 42px;
    background: #fff3;
    transform: translate(-50%, -50%);
    transition: width .4s linear, height .4s linear
}

.contactpg .submitbtn:hover {
    box-shadow: 0 8px 36px -2px #2890341c;
    transform: translateY(-1px)
}

.contactpg .submitbtn:active::before {
    width: 300px;
    height: 300px
}

.contactpg .submitbtn:active {
    transform: translateY(0)
}

.contactpg .timeguide {
    background: #FFF;
    padding: 24px;
    border: 1px solid #131a2114;
    border-radius: 7px;
    box-shadow: 0 2px 6px -2px #2890340d
}

.contactpg .timeguide h3 {
    font-size: 23px;
    line-height: 1.1;
    margin: 0 0 16px;
    font-weight: 600
}

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

.contactpg .stepitem {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 16px;
    align-items: center;
    padding: 16px;
    background: #28903405;
    border-radius: 2px;
    transition: background .15s ease-out;
    position: relative
}

.contactpg .stepitem::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 0;
    background: linear-gradient(83deg, #289034, transparent);
    transition: width .18s ease-out;
    border-radius: 2px 0 0 2px
}

.contactpg .stepitem:hover {
    background: #2890340a
}

.contactpg .stepitem:hover::before {
    width: 4px
}

.contactpg .stepnumber {
    width: 32px;
    height: 32px;
    border-radius: 42px;
    background: #289034;
    color: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 600;
    flex-shrink: 0
}

.contactpg .stepdesc {
    font-size: 15px;
    line-height: 1.5;
    margin: 0;
    color: #131A21
}

.contactpg .steptime {
    font-size: 13px;
    line-height: 1.5;
    color: #289034;
    font-weight: 600;
    white-space: nowrap;
    padding: 4px 8px;
    background: #28903414;
    border-radius: 2px
}

.contactpg .decorpattern {
    position: relative;
    margin-top: 24px;
    padding-top: 24px
}

.contactpg .decorpattern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #28903433 20%, #28903433 80%, transparent)
}

.contactpg .decorpattern::after {
    content: '';
    position: absolute;
    top: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 7px;
    height: 7px;
    background: #289034;
    border-radius: 42px
}

.contactpg .contactnote {
    font-size: 13px;
    line-height: 1.8;
    color: #131a21a6;
    margin: 0;
    text-align: center
}

@media (min-width: 768px) {
    .contactpg .introzone {
        padding: 48px
    }

    .contactpg .formarea {
        padding: 48px
    }

    .contactpg .formgrid {
        grid-template-columns: 340px 1fr
    }

    .contactpg .radiogrid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (min-width: 1024px) {
    .contactpg .introzone {
        padding: 48px
    }

    .contactpg .formarea {
        padding: 48px
    }

    .contactpg .introcontent h1 {
        font-size: 62px
    }

    .contactpg .radiogrid {
        grid-template-columns: repeat(3, 1fr)
    }
}

@media (min-width: 1440px) {
    .contactpg .formgrid {
        grid-template-columns: 380px 1fr
    }
}

.successpg {
    background: linear-gradient(83deg, #289034 0%, transparent 100%);
    min-height: 100vh;
    padding: 48px 16px
}

.successpg .successwrap {
    max-width: 1320px;
    margin: 0 auto
}

.successpg .successcard {
    background: #FFF;
    border-radius: 26px;
    box-shadow: 0 8px 36px -2px #131a211c;
    padding: 48px 24px;
    text-align: center
}

.successpg .iconwrap {
    width: 120px;
    height: 120px;
    margin: 0 auto 24px;
    background: linear-gradient(83deg, #289034 0%, #2890344d 100%);
    border-radius: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative
}

.successpg .iconwrap::before {
    content: '';
    position: absolute;
    width: 50px;
    height: 8px;
    background: #FFF;
    border-radius: 2px;
    transform: rotate(45deg);
    left: 28px;
    top: 56px
}

.successpg .iconwrap::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 8px;
    background: #FFF;
    border-radius: 2px;
    transform: rotate(-45deg);
    left: 50px;
    top: 62px
}

.successpg .successhed {
    font-size: 62px;
    line-height: 1.1;
    color: #131A21;
    margin: 0 0 16px
}

.successpg .successtxt {
    font-size: 23px;
    line-height: 1.5;
    color: #131A21;
    margin: 0 0 48px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto
}

.successpg .detailsec {
    background: #28903414;
    border-radius: 7px;
    padding: 24px;
    margin: 0 0 48px;
    text-align: left
}

.successpg .detailhed {
    font-size: 23px;
    line-height: 1.1;
    color: #131A21;
    margin: 0 0 16px
}

.successpg .detailitem {
    display: flex;
    gap: 8px;
    margin: 0 0 8px;
    align-items: flex-start
}

.successpg .detailitem:last-child {
    margin-bottom: 0
}

.successpg .detaillabel {
    font-size: 15px;
    line-height: 1.5;
    color: #131A21;
    font-weight: 600;
    min-width: 140px
}

.successpg .detailval {
    font-size: 15px;
    line-height: 1.5;
    color: #131A21
}

.successpg .nextinfo {
    background: #FFF;
    border: 2px solid #289034;
    border-radius: 7px;
    padding: 24px;
    margin: 0 0 48px;
    text-align: left
}

.successpg .nexthed {
    font-size: 23px;
    line-height: 1.1;
    color: #131A21;
    margin: 0 0 16px
}

.successpg .nextlist {
    list-style: none;
    padding: 0;
    margin: 0
}

.successpg .nextlist li {
    font-size: 15px;
    line-height: 1.8;
    color: #131A21;
    padding-left: 32px;
    position: relative;
    margin: 0 0 8px
}

.successpg .nextlist li:last-child {
    margin-bottom: 0
}

.successpg .nextlist li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 16px;
    height: 16px;
    border: 2px solid #289034;
    border-radius: 2px;
    background: #FFF
}

.successpg .nextlist li::after {
    content: '';
    position: absolute;
    left: 4px;
    top: 14px;
    width: 8px;
    height: 4px;
    border-left: 2px solid #289034;
    border-bottom: 2px solid #289034;
    transform: rotate(-45deg)
}

.successpg .btnwrap {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center
}

.successpg .btnprim {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #289034;
    color: #FFF;
    font-size: 15px;
    line-height: 1.5;
    padding: 16px 48px;
    border: none;
    border-radius: 7px;
    cursor: pointer;
    text-decoration: none;
    transition: background .15s ease-out, box-shadow .15s ease-out;
    box-shadow: 0 2px 6px -2px #131a210d
}

.successpg .btnprim:hover {
    background: linear-gradient(83deg, #289034 0%, #1f7029 100%);
    box-shadow: 0 4px 14px -2px #131a2114
}

.successpg .btnsec {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #289034;
    font-size: 15px;
    line-height: 1.5;
    padding: 0;
    border: none;
    cursor: pointer;
    text-decoration: none;
    border-bottom: 2px dashed #289034;
    transition: color .12s ease-out, border-color .12s ease-out
}

.successpg .btnsec:hover {
    color: #1f7029;
    border-bottom-color: #1f7029
}

.successpg .arrowright {
    width: 16px;
    height: 16px;
    position: relative
}

.successpg .arrowright::before {
    content: '';
    position: absolute;
    width: 12px;
    height: 2px;
    background: currentColor;
    left: 0;
    top: 7px
}

.successpg .arrowright::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    border-right: 2px solid currentColor;
    border-top: 2px solid currentColor;
    transform: rotate(45deg);
    right: 0;
    top: 4px
}

@media (min-width: 768px) {
    .successpg {
        padding: 48px 24px
    }

    .successpg .successcard {
        padding: 48px
    }

    .successpg .btnwrap {
        flex-direction: row;
        justify-content: center
    }

    .successpg .detailitem {
        gap: 16px
    }

    .successpg .detaillabel {
        min-width: 180px
    }
}