@import "https://fonts.googleapis.com/css2?family=Exo+2:wght@400;700&display=swap";
@import "https://fonts.googleapis.com/css2?family=Oxygen:wght@400;700&display=swap";

::before,
::after {
content: none;
box-sizing: inherit
}

body {
margin: 0;
-webkit-text-size-adjust: 100%;
word-break: break-word;
overflow-wrap: break-word
}

.af-header {
position: relative;
background: linear-gradient(135deg, #1E3053 0%, #2a4270 60%, #6A929E 100%);
padding: 48px 24px 24px;
box-shadow: 2px 7px 22px -1px #1e30531c;
overflow: hidden;
font-family: 'Exo 2', sans-serif
}

.af-header-bg {
position: absolute;
top: -48px;
right: -48px;
width: 320px;
height: 320px;
border-radius: 28px;
background: #a4c1c814;
pointer-events: none;
transform: rotate(24deg)
}

.af-header-bg2 {
position: absolute;
bottom: -24px;
left: 30%;
width: 180px;
height: 180px;
border-radius: 28px;
background: #6a929e12;
pointer-events: none;
transform: rotate(-12deg)
}

.af-header-inner {
max-width: 1140px;
margin: 0 auto;
display: flex;
align-items: flex-start;
justify-content: space-between;
gap: 48px;
position: relative;
z-index: 2
}

.af-brand {
display: flex;
align-items: center;
gap: 16px;
flex-shrink: 0
}

.af-logoframe {
width: 60px;
height: 60px;
border-radius: 50%;
border: 1px solid #a4c1c88c;
background: #fffffff5;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 2px 2px 6px -1px #1e30530d 0 0 0 3px #a4c1c82e;
flex-shrink: 0
}

.af-logoframe img {
width: 44px;
height: 44px;
object-fit: contain;
display: block
}

.af-brandtext {
display: flex;
flex-direction: column;
gap: 6px
}

.af-brandname {
font-family: 'Exo 2', sans-serif;
font-size: 22px;
font-weight: 700;
line-height: 1.2;
color: #fff;
letter-spacing: .01em
}

.af-tagline {
font-family: 'Oxygen', sans-serif;
font-size: 16px;
font-weight: 400;
line-height: 1.4;
color: #A4C1C8
}

.af-navarea {
display: flex;
flex-direction: column;
align-items: flex-end;
gap: 12px;
padding-top: 6px
}

.af-navlinks {
display: flex;
flex-wrap: wrap;
justify-content: flex-end;
gap: 6px 24px;
list-style: none;
margin: 0;
padding: 0
}

.af-navlinks li a {
font-family: 'Oxygen', sans-serif;
font-size: 16px;
font-weight: 400;
line-height: 1.6;
color: #ffffffd1;
text-decoration: none;
padding: 6px 12px;
border-radius: 3px;
display: inline-block;
transition: color .5s cubic-bezier(0.25, 0.46, 0.45, 0.94), background .6s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.af-navlinks li a:hover {
color: #fff;
background: #a4c1c826
}

.af-navlinks li a:focus-visible {
outline: 2px dashed #A4C1C8;
outline-offset: 3px;
animation: af-focusdash 2.4s linear infinite
}

.af-ctarow {
display: flex;
align-items: center;
gap: 12px
}

.af-ctarow .af-ctadivider {
width: 1px;
height: 18px;
background: #a4c1c84d
}

.af-ctarow .af-contact {
font-family: 'Oxygen', sans-serif;
font-size: 16px;
font-weight: 400;
color: #a4c1c8e6;
text-decoration: none;
padding: 6px 12px;
border-radius: 3px;
transition: color .55s ease
}

.af-ctarow .af-contact:hover {
color: #fff
}

.af-ctarow .af-contact:focus-visible {
outline: 2px dashed #A4C1C8;
outline-offset: 3px;
animation: af-focusdash 2.4s linear infinite
}

.af-ctabtn {
font-family: 'Exo 2', sans-serif;
font-size: 16px;
font-weight: 700;
color: #1E3053;
background: #fff;
border: none;
border-radius: 3px;
padding: 12px 24px;
text-decoration: none;
display: inline-block;
cursor: pointer;
position: relative;
overflow: hidden;
transition: color .6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
min-height: 44px;
line-height: 1.4;
box-shadow: 2px 2px 6px -1px #1e30530d
}

.af-ctabtn::before {
content: "";
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: #A4C1C8;
transition: left .6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
z-index: 0
}

.af-ctabtn:hover::before {
left: 0
}

.af-ctabtn:hover {
color: #1E3053
}

.af-ctabtn span {
position: relative;
z-index: 1
}

.af-ctabtn:focus-visible {
outline: 2px dashed #A4C1C8;
outline-offset: 3px;
animation: af-focusdash 2.4s linear infinite
}

@keyframes af-focusdash {
from {
outline-offset: 3px
}

50% {
outline-offset: 6px
}

to {
outline-offset: 3px
}
}

@media (max-width: 960px) {
.af-header {
padding: 24px
}

.af-header-inner {
flex-direction: column;
gap: 24px;
align-items: flex-start
}

.af-navarea {
align-items: flex-start;
width: 100%
}

.af-navlinks {
justify-content: flex-start
}
}

@media (max-width: 480px) {
.af-header {
padding: 24px 12px
}

.af-brandname {
font-size: 18px
}

.af-ctarow {
flex-wrap: wrap
}

.af-ctabtn {
padding: 12px 16px
}
}

.af-footer {
background: #1E3053;
font-family: 'Oxygen', sans-serif;
padding: 48px 24px 24px;
position: relative;
overflow: hidden
}

.af-footer-decor {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 4px;
background: linear-gradient(90deg, #6A929E 0%, #A4C1C8 50%, #6A929E 100%)
}

.af-footer-decor2 {
position: absolute;
bottom: -60px;
right: -30px;
width: 220px;
height: 220px;
border-radius: 28px;
background: #6a929e0f;
pointer-events: none;
transform: rotate(18deg)
}

.af-footer-inner {
max-width: 1140px;
margin: 0 auto;
position: relative;
z-index: 2
}

.af-footer-grid {
display: grid;
grid-template-columns: 1fr 1fr 1fr;
gap: 48px;
padding-bottom: 48px;
border-bottom: 1px solid #a4c1c82e
}

.af-footer-brand {
display: flex;
flex-direction: column;
gap: 12px
}

.af-footer-logorow {
display: flex;
align-items: center;
gap: 12px
}

.af-footer-logoframe {
width: 56px;
height: 56px;
border-radius: 50%;
border: 1px solid #a4c1c866;
background: #fffffff2;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 2px 2px 6px -1px #1e30530d;
flex-shrink: 0
}

.af-footer-logoframe img {
width: 40px;
height: 40px;
object-fit: contain;
display: block
}

.af-footer-bname {
font-family: 'Exo 2', sans-serif;
font-size: 18px;
font-weight: 700;
color: #fff;
line-height: 1.2
}

.af-footer-desc {
font-size: 16px;
line-height: 1.6;
color: #a4c1c8d9
}

.af-footer-contact {
display: flex;
flex-direction: column;
gap: 12px;
margin-top: 6px
}

.af-footer-contact a {
font-size: 16px;
line-height: 1.4;
color: #a4c1c8d9;
text-decoration: none;
display: flex;
align-items: center;
gap: 6px;
transition: color .5s ease
}

.af-footer-contact a:hover {
color: #fff
}

.af-footer-contact a:focus-visible {
outline: 2px dashed #A4C1C8;
outline-offset: 3px;
animation: af-focusdash 2.4s linear infinite
}

.af-footer-contact a i {
font-size: 18px;
flex-shrink: 0;
color: #6A929E
}

.af-footer-col {
display: flex;
flex-direction: column;
gap: 12px
}

.af-footer-collabel {
font-family: 'Exo 2', sans-serif;
font-size: 16px;
font-weight: 700;
color: #fff;
text-transform: uppercase;
letter-spacing: .08em;
line-height: 1.2;
padding-bottom: 6px
}

.af-footer-collinks {
list-style: none;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
gap: 6px
}

.af-footer-collinks li a {
font-size: 16px;
line-height: 1.6;
color: #a4c1c8d1;
text-decoration: none;
padding: 6px 0;
display: inline-block;
transition: color .55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
min-height: 44px;
display: flex;
align-items: center
}

.af-footer-collinks li a:hover {
color: #fff
}

.af-footer-collinks li a:focus-visible {
outline: 2px dashed #A4C1C8;
outline-offset: 3px;
animation: af-focusdash 2.4s linear infinite
}

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

.af-footer-copy {
font-size: 16px;
line-height: 1.4;
color: #6a929ebf
}

.af-footer-legal {
display: flex;
gap: 24px;
list-style: none;
margin: 0;
padding: 0
}

.af-footer-legal li a {
font-size: 16px;
line-height: 1.4;
color: #6a929ebf;
text-decoration: none;
transition: color .5s ease;
min-height: 44px;
display: flex;
align-items: center
}

.af-footer-legal li a:hover {
color: #A4C1C8
}

.af-footer-legal li a:focus-visible {
outline: 2px dashed #A4C1C8;
outline-offset: 3px;
animation: af-focusdash 2.4s linear infinite
}

@media (max-width: 960px) {
.af-footer-grid {
grid-template-columns: 1fr 1fr;
gap: 24px
}

.af-footer-brand {
grid-column: 1 / -1
}
}

@media (max-width: 480px) {
.af-footer {
padding: 48px 12px 24px
}

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

.af-footer-brand {
grid-column: auto
}

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

.af-footer-legal {
flex-wrap: wrap;
gap: 12px
}
}

.af-cookiehold {
position: fixed;
bottom: 24px;
left: 24px;
z-index: 1200;
max-width: 480px;
width: calc(100vw - 48px);
display: none
}

.af-cookiebox {
background: #fff;
border-radius: 16px;
padding: 24px;
box-shadow: 2px 12px 48px -1px #1e30531a 2px 7px 22px -1px #1e30531c;
border: 1px solid #a4c1c84d;
transform: translateX(-120%);
transition: transform .38s cubic-bezier(0.25, 0.46, 0.45, 0.94);
font-family: 'Oxygen', sans-serif
}

.af-cookiebox.af-shown {
transform: translateX(0)
}

.af-cookietext {
font-size: 16px;
line-height: 1.6;
color: #1E3053;
margin: 0 0 12px
}

.af-cookietext a {
color: #1E3053;
text-decoration: underline;
font-weight: 700;
transition: color .5s ease
}

.af-cookietext a:hover {
color: #6A929E
}

.af-cookiebtnrow {
display: flex;
align-items: center;
gap: 12px;
flex-wrap: wrap
}

.af-cookieprimary {
font-family: 'Exo 2', sans-serif;
font-size: 16px;
font-weight: 700;
color: #fff;
background: #1E3053;
border: none;
border-radius: 3px;
padding: 12px 24px;
cursor: pointer;
position: relative;
overflow: hidden;
transition: color .6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
min-height: 44px;
line-height: 1.4
}

.af-cookieprimary::before {
content: "";
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: #6A929E;
transition: left .6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
z-index: 0
}

.af-cookieprimary:hover::before {
left: 0
}

.af-cookieprimary span {
position: relative;
z-index: 1
}

.af-cookieprimary:focus-visible {
outline: 2px dashed #1E3053;
outline-offset: 3px;
animation: af-focusdash 2.4s linear infinite
}

.af-cookiesecond {
font-family: 'Oxygen', sans-serif;
font-size: 16px;
font-weight: 400;
color: #6A929E;
background: transparent;
border: 1px solid #6A929E;
border-radius: 3px;
padding: 6px 16px;
cursor: pointer;
min-height: 44px;
line-height: 1.4;
transition: color .55s ease, border-color .55s ease
}

.af-cookiesecond:hover {
color: #1E3053;
border-color: #1E3053
}

.af-cookiesecond:focus-visible {
outline: 2px dashed #6A929E;
outline-offset: 3px;
animation: af-focusdash 2.4s linear infinite
}

.policy-main {
max-width: 1140px;
margin: 0 auto;
padding: 96px 48px
}

.policy-main p {
font-size: 18px;
line-height: 1.9;
color: #1E3053;
margin-bottom: 24px
}

.policy-main ul,
.policy-main ol {
padding-left: 24px;
margin-bottom: 24px
}

.policy-main li {
font-size: 18px;
line-height: 1.6;
color: #1E3053;
margin-bottom: 12px
}

.policy-main ul li {
list-style-type: disc
}

.policy-main ol li {
list-style-type: decimal
}

.policy-main ul li::marker,
.policy-main ol li::marker {
color: #6A929E
}

.policy-main a {
color: #1E3053;
font-size: inherit;
line-height: inherit;
text-decoration: underline;
text-decoration-color: #A4C1C8;
text-underline-offset: 3px;
transition: color .6s cubic-bezier(0.25, 0.46, 0.45, 0.94), text-decoration-color .5s ease
}

.policy-main a:hover {
color: #6A929E;
text-decoration-color: #6A929E
}

.policy-main table {
width: 100%;
border-collapse: collapse;
margin-bottom: 48px;
font-size: 16px;
line-height: 1.6;
box-shadow: 2px 7px 22px -1px #1e30531c;
border-radius: 16px;
overflow: hidden
}

.policy-main thead {
background-color: #1E3053
}

.policy-main thead th {
color: #fff;
font-size: 16px;
line-height: 1.4;
padding: 24px;
text-align: left;
font-weight: 600
}

.policy-main tbody tr {
border-bottom: 1px solid #A4C1C8;
transition: background-color .5s ease
}

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

.policy-main tbody tr:hover {
background-color: #f2f7f8
}

.policy-main td {
padding: 24px;
font-size: 16px;
line-height: 1.6;
color: #1E3053;
vertical-align: top
}

.policy-main hr {
border: none;
border-top: 1px solid #A4C1C8;
margin: 48px 0;
opacity: .6
}

.policy-main div {
margin-bottom: 24px
}

@media (max-width: 960px) {
.policy-main {
padding: 48px 24px
}

.policy-main table {
display: block;
overflow-x: auto;
border-radius: 16px
}

.policy-main thead th,
.policy-main td {
padding: 12px
}
}

@media (max-width: 480px) {
.policy-main {
padding: 48px 12px
}

.policy-main p,
.policy-main li {
font-size: 16px
}

.policy-main ul,
.policy-main ol {
padding-left: 12px
}
}

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

.crs .postings-wrap {
max-width: 1140px;
margin: 0 auto;
padding: 0 24px
}

.crs .flip-card {
perspective: 1000px
}

.crs .flip-inner {
transition: transform .7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
transform-style: preserve-3d;
position: relative
}

.crs .flip-card:hover .flip-inner {
transform: rotateY(180deg)
}

.crs .flip-front,
.crs .flip-back {
backface-visibility: hidden;
-webkit-backface-visibility: hidden
}

.crs .flip-back {
transform: rotateY(180deg);
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%
}

.crs .titblock {
background: #fff;
padding: 96px 24px 48px;
display: flex;
flex-direction: column;
align-items: center;
text-align: center
}

.crs .titblock .imgwrap {
width: 520px;
max-width: 100%;
border-radius: 16px;
overflow: hidden;
border: 1px solid #A4C1C8;
box-shadow: 2px 7px 22px -1px #1e30531c;
position: relative;
margin-bottom: 48px
}

.crs .titblock .imgwrap img {
width: 100%;
height: 340px;
object-fit: cover;
display: block;
filter: saturate(0.85)
}

.crs .titblock .imgwrap::after {
content: "";
position: absolute;
top: 0;
left: 0;
width: 60%;
height: 60%;
background: linear-gradient(353deg, #a4c1c861, transparent);
pointer-events: none
}

.crs .titblock .txtsub {
font-size: 16px;
color: #6A929E;
letter-spacing: .08em;
text-transform: uppercase;
margin-bottom: 12px;
line-height: 1.4
}

.crs .titblock h1 {
font-size: 72px;
line-height: 1.2;
color: #1E3053;
margin-bottom: 24px;
max-width: 700px
}

.crs .titblock .desc {
font-size: 18px;
line-height: 1.6;
color: #3a4f6e;
max-width: 600px;
margin-bottom: 48px
}

.crs .titblock .statrow {
display: flex;
flex-direction: row;
gap: 48px;
justify-content: center;
flex-wrap: wrap
}

.crs .titblock .statrow .stitem {
display: flex;
flex-direction: column;
align-items: center;
gap: 6px
}

.crs .titblock .statrow .stnum {
font-size: 40px;
line-height: 1.2;
color: #1E3053
}

.crs .titblock .statrow .stlbl {
font-size: 16px;
color: #6A929E;
line-height: 1.4
}

.crs .jobsec {
background: linear-gradient(353deg, #a4c1c82e, #f4f7f9);
padding: 96px 24px
}

.crs .jobsec .jobinner {
max-width: 1140px;
margin: 0 auto
}

.crs .jobsec .seclabel {
font-size: 16px;
color: #6A929E;
text-transform: uppercase;
letter-spacing: .08em;
margin-bottom: 12px;
line-height: 1.4
}

.crs .jobsec h2 {
font-size: 40px;
line-height: 1.2;
color: #1E3053;
margin-bottom: 12px;
display: inline-block;
background: linear-gradient(353deg, #a4c1c859, #6a929e2e);
padding: 6px 12px;
border-radius: 3px
}

.crs .jobsec .secbody {
font-size: 18px;
line-height: 1.6;
color: #3a4f6e;
max-width: 680px;
margin-bottom: 48px
}

.crs .jobgrid {
display: grid;
grid-template-columns: 2fr 1fr 1fr;
gap: 24px
}

.crs .jobcard {
border-radius: 16px;
background: #fff;
box-shadow: 2px 2px 6px -1px #1e30530d;
overflow: hidden;
cursor: default;
height: 340px
}

.crs .jobcard .flip-inner {
height: 100%
}

.crs .jobcard .flip-front {
height: 100%;
padding: 24px;
display: flex;
flex-direction: column;
justify-content: space-between;
background: #fff;
border-radius: 16px
}

.crs .jobcard .flip-back {
padding: 24px;
display: flex;
flex-direction: column;
justify-content: space-between;
background: #1E3053;
border-radius: 16px
}

.crs .jobcard .jctag {
display: inline-block;
font-size: 16px;
color: #6A929E;
background: #a4c1c838;
border-radius: 3px;
padding: 6px 12px;
margin-bottom: 12px;
line-height: 1.4
}

.crs .jobcard h3 {
font-size: 22px;
line-height: 1.4;
color: #1E3053;
margin-bottom: 12px
}

.crs .jobcard .jcdesc {
font-size: 16px;
line-height: 1.6;
color: #3a4f6e;
flex: 1
}

.crs .jobcard .jcfooter {
display: flex;
flex-direction: row;
align-items: center;
gap: 12px;
margin-top: 12px
}

.crs .jobcard .jctype {
font-size: 16px;
color: #6A929E;
display: flex;
flex-direction: row;
align-items: center;
gap: 6px;
line-height: 1.4
}

.crs .jobcard .jctype i {
font-size: 18px
}

.crs .jobcard .jchint {
font-size: 16px;
color: #a4c1c8b3;
margin-left: auto;
line-height: 1.4
}

.crs .jobcard .flip-back h4 {
font-size: 18px;
color: #A4C1C8;
margin-bottom: 12px;
line-height: 1.4
}

.crs .jobcard .flip-back .breqs {
list-style: none;
padding: 0;
margin: 0;
flex: 1;
display: flex;
flex-direction: column;
gap: 6px
}

.crs .jobcard .flip-back .breqs li {
font-size: 16px;
color: #e8eef5;
line-height: 1.6;
padding-left: 12px;
position: relative
}

.crs .jobcard .flip-back .breqs li:nth-child(odd)::before {
content: "";
display: inline-block;
width: 6px;
height: 6px;
border-radius: 0;
background: #A4C1C8;
position: absolute;
left: 0;
top: 8px
}

.crs .jobcard .flip-back .breqs li:nth-child(even)::before {
content: "";
display: inline-block;
width: 6px;
height: 6px;
border-radius: 3px;
background: #6A929E;
position: absolute;
left: 0;
top: 8px
}

.crs .jobcard .bapply {
display: inline-block;
font-size: 16px;
color: #1E3053;
background: #A4C1C8;
border-radius: 3px;
padding: 12px 24px;
text-decoration: none;
line-height: 1.4;
transition: background .6s cubic-bezier(0.25, 0.46, 0.45, 0.94), color .6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
position: relative;
overflow: hidden
}

.crs .jobcard .bapply::before {
content: "";
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: #6A929E;
transition: left .55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
z-index: 0
}

.crs .jobcard .bapply:hover::before {
left: 0
}

.crs .jobcard .bapply span {
position: relative;
z-index: 1
}

.crs .jobcard.wide {
grid-column: span 1
}

.crs .jobcard.featured {
grid-column: span 1
}

.crs .valstrip {
margin-top: 48px;
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 24px
}

.crs .valitem {
background: #fff;
border-radius: 16px;
padding: 24px;
box-shadow: 2px 2px 6px -1px #1e30530d;
display: flex;
flex-direction: column;
gap: 12px
}

.crs .valitem .viicon {
width: 40px;
height: 40px;
border-radius: 16px;
background: linear-gradient(353deg, #a4c1c866, #6a929e26);
display: flex;
align-items: center;
justify-content: center;
color: #1E3053;
font-size: 22px
}

.crs .valitem h5 {
font-size: 16px;
color: #1E3053;
line-height: 1.4
}

.crs .valitem p {
font-size: 16px;
color: #3a4f6e;
line-height: 1.6;
margin: 0
}

.crs .imgbanner {
margin-top: 48px;
border-radius: 16px;
overflow: hidden;
position: relative;
border: 1px solid #a4c1c866;
box-shadow: 2px 7px 22px -1px #1e30531c
}

.crs .imgbanner img {
width: 100%;
height: 260px;
object-fit: cover;
display: block;
filter: grayscale(1)
}

.crs .imgbanner .banoverlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(353deg, #1e3053b8, #6a929e73);
display: flex;
flex-direction: column;
justify-content: center;
align-items: flex-start;
padding: 48px
}

.crs .imgbanner .banoverlay h3 {
font-size: 28px;
color: #fff;
line-height: 1.4;
margin-bottom: 12px;
max-width: 520px
}

.crs .imgbanner .banoverlay p {
font-size: 18px;
color: #dce8eee6;
line-height: 1.6;
max-width: 480px;
margin: 0 0 24px
}

.crs .imgbanner .banoverlay a {
display: inline-block;
font-size: 16px;
color: #1E3053;
background: #A4C1C8;
border-radius: 3px;
padding: 12px 24px;
text-decoration: none;
line-height: 1.4;
position: relative;
overflow: hidden;
transition: color .55s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.crs .imgbanner .banoverlay a::before {
content: "";
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: #fff;
transition: left .6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
z-index: 0
}

.crs .imgbanner .banoverlay a:hover::before {
left: 0
}

.crs .imgbanner .banoverlay a span {
position: relative;
z-index: 1
}

.crs .gloss {
margin-top: 48px;
background: #fff;
border-radius: 16px;
padding: 24px;
box-shadow: 2px 2px 6px -1px #1e30530d
}

.crs .gloss h4 {
font-size: 22px;
color: #1E3053;
margin-bottom: 24px;
line-height: 1.4;
display: inline-block;
background: linear-gradient(353deg, #a4c1c859, #6a929e26);
padding: 6px 12px;
border-radius: 3px
}

.crs .gloss dl {
display: grid;
grid-template-columns: 1fr 2fr;
gap: 12px 24px
}

.crs .gloss dt {
font-size: 16px;
color: #1E3053;
font-weight: 600;
line-height: 1.6;
padding: 6px 0
}

.crs .gloss dd {
font-size: 16px;
color: #3a4f6e;
line-height: 1.6;
margin: 0;
padding: 6px 0
}

.crs .gloss dt:nth-child(4n+1),
.crs .gloss dd:nth-child(4n+2) {
background: #a4c1c81a;
border-radius: 3px;
padding: 6px 12px
}

@keyframes crsgeospin {
0% {
transform: rotate(0deg)
}

100% {
transform: rotate(360deg)
}
}

.crs .geodeco {
position: absolute;
pointer-events: none;
border-radius: 0
}

.crs .titblock {
position: relative
}

.crs .titblock .geodeco1 {
width: 200px;
height: 200px;
border: 2px solid #a4c1c82e;
top: 48px;
right: 5%;
animation: crsgeospin 18s linear infinite
}

.crs .titblock .geodeco2 {
width: 120px;
height: 120px;
border: 2px solid #6a929e21;
bottom: 48px;
left: 6%;
animation: crsgeospin 28s linear infinite reverse
}

@keyframes crscardflip {
0% {
transform: rotateY(90deg);
opacity: 0
}

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

.crs .jobcard {
animation: crscardflip .7s cubic-bezier(0.25, 0.46, 0.45, 0.94) both
}

.crs .jobcard:nth-child(1) {
animation-delay: .1s
}

.crs .jobcard:nth-child(2) {
animation-delay: .28s
}

.crs .jobcard:nth-child(3) {
animation-delay: .46s
}

@media (max-width: 960px) {
.crs .titblock h1 {
font-size: 40px
}

.crs .jobgrid {
grid-template-columns: 1fr 1fr
}

.crs .valstrip {
grid-template-columns: 1fr 1fr
}

.crs .gloss dl {
grid-template-columns: 1fr
}
}

@media (max-width: 480px) {
.crs .titblock h1 {
font-size: 28px
}

.crs .titblock .statrow {
gap: 24px
}

.crs .titblock .statrow .stnum {
font-size: 28px
}

.crs .jobgrid {
grid-template-columns: 1fr
}

.crs .valstrip {
grid-template-columns: 1fr
}

.crs .imgbanner .banoverlay {
padding: 24px
}

.crs .imgbanner .banoverlay h3 {
font-size: 22px
}
}

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

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

.srvpg .pgwrap {
max-width: 1140px;
margin: 0 auto;
padding: 0 24px
}

.srvpg .titblock {
padding: 96px 24px 48px;
max-width: 1140px;
margin: 0 auto;
display: flex;
flex-direction: row;
align-items: center;
gap: 48px;
position: relative
}

.srvpg .titblock .blobdeco {
position: absolute;
top: 24px;
right: 120px;
width: 280px;
height: 280px;
background: #6a929e21;
border-radius: 28px;
filter: blur(48px);
pointer-events: none;
z-index: 0
}

.srvpg .titblock .blobdeco2 {
position: absolute;
bottom: 0;
left: 60px;
width: 180px;
height: 180px;
background: #a4c1c82e;
border-radius: 28px;
filter: blur(36px);
pointer-events: none;
z-index: 0
}

.srvpg .titblock .textside {
flex: 1 1 0;
position: relative;
z-index: 1
}

.srvpg .titblock .textside .pretag {
display: inline-block;
background: #a4c1c847;
color: #1E3053;
font-size: 16px;
line-height: 1.4;
padding: 6px 12px;
border-radius: 3px;
margin-bottom: 24px;
letter-spacing: .08em;
text-transform: uppercase
}

.srvpg .titblock .textside h1 {
font-size: 40px;
line-height: 1.2;
color: #1E3053;
margin: 0 0 24px
}

.srvpg .titblock .textside h1 em {
font-style: normal;
background: linear-gradient(353deg, #6A929E, transparent);
padding: 0 6px;
border-radius: 3px
}

.srvpg .titblock .textside .subdesc {
font-size: 18px;
line-height: 1.6;
color: #3a4f6e;
margin: 0 0 24px
}

.srvpg .titblock .textside .titlinks {
display: flex;
flex-direction: row;
gap: 12px;
flex-wrap: wrap
}

.srvpg .titblock .textside .titlinks a {
display: inline-block;
padding: 12px 24px;
border-radius: 3px;
font-size: 16px;
line-height: 1.4;
text-decoration: none;
font-weight: 600;
position: relative;
overflow: hidden;
transition: color .6s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.srvpg .titblock .textside .titlinks a.primary {
background: #1E3053;
color: #fff
}

.srvpg .titblock .textside .titlinks a.primary::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: #6A929E;
transition: left .5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
z-index: 0
}

.srvpg .titblock .textside .titlinks a.primary:hover::before {
left: 0
}

.srvpg .titblock .textside .titlinks a.primary span {
position: relative;
z-index: 1
}

.srvpg .titblock .textside .titlinks a.secondary {
background: transparent;
color: #1E3053;
border: 2px solid #1E3053
}

.srvpg .titblock .textside .titlinks a.secondary:hover {
background: #1e305312
}

.srvpg .titblock .imgside {
flex: 0 0 320px;
position: relative;
z-index: 1
}

.srvpg .titblock .imgside .imgframe {
position: relative;
width: 320px;
height: 360px;
overflow: hidden;
border-radius: 28px 3px 28px 3px
}

.srvpg .titblock .imgside .imgframe img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
border: 1px solid #6a929e38;
border-radius: 28px 3px 28px 3px;
transition: border-color .7s ease
}

.srvpg .titblock .imgside .imgframe:hover img {
border-color: #1e30538c
}

.srvpg .titblock .imgside .statcard {
position: absolute;
bottom: -12px;
left: -24px;
background: #fff;
border-radius: 16px;
padding: 12px 24px;
box-shadow: 2px 7px 22px -1px #1e30531c;
display: flex;
flex-direction: column;
gap: 6px
}

.srvpg .titblock .imgside .statcard .bignum {
font-size: 40px;
line-height: 1.2;
color: #1E3053;
font-weight: 700
}

.srvpg .titblock .imgside .statcard .numlabel {
font-size: 16px;
line-height: 1.4;
color: #6A929E
}

.srvpg .divline {
max-width: 1140px;
margin: 0 auto;
padding: 0 24px
}

.srvpg .divline hr {
border: none;
border-top: 1px solid #6a929e38;
margin: 0
}

.srvpg .svcsec {
background: #edf1f4;
padding: 96px 24px
}

.srvpg .svcsec .innermax {
max-width: 1140px;
margin: 0 auto
}

.srvpg .svcsec .sechead {
display: inline-block;
background: linear-gradient(353deg, #6a929e40, transparent);
border-radius: 3px;
padding: 6px 12px;
margin-bottom: 12px
}

.srvpg .svcsec .sechead h2 {
font-size: 28px;
line-height: 1.2;
color: #1E3053;
margin: 0
}

.srvpg .svcsec .secdesc {
font-size: 18px;
line-height: 1.6;
color: #3a4f6e;
max-width: 560px;
margin: 0 0 48px
}

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

.srvpg .svcsec .svccard {
background: #fff;
border-radius: 16px;
padding: 24px;
box-shadow: 2px 2px 6px -1px #1e30530d;
transition: box-shadow .6s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform .6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
display: flex;
flex-direction: column;
gap: 12px
}

.srvpg .svcsec .svccard:hover {
box-shadow: 2px 12px 48px -1px #1e30531a;
transform: translateY(-4px)
}

.srvpg .svcsec .svccard.odd {
border-top: 3px solid #A4C1C8
}

.srvpg .svcsec .svccard.even {
border-top: 3px solid #6A929E
}

.srvpg .svcsec .svccard .cardicon {
width: 48px;
height: 48px;
background: #a4c1c838;
border-radius: 16px;
display: flex;
align-items: center;
justify-content: center;
color: #1E3053;
font-size: 22px
}

.srvpg .svcsec .svccard h4 {
font-size: 18px;
line-height: 1.4;
color: #1E3053;
margin: 0
}

.srvpg .svcsec .svccard p {
font-size: 16px;
line-height: 1.6;
color: #3a4f6e;
margin: 0
}

.srvpg .prosec {
padding: 96px 24px;
background: #fff
}

.srvpg .prosec .innermax {
max-width: 1140px;
margin: 0 auto;
display: flex;
flex-direction: row;
gap: 48px;
align-items: flex-start
}

.srvpg .prosec .protext {
flex: 1 1 0
}

.srvpg .prosec .protext .sechead {
display: inline-block;
background: linear-gradient(353deg, #6a929e40, transparent);
border-radius: 3px;
padding: 6px 12px;
margin-bottom: 12px
}

.srvpg .prosec .protext .sechead h2 {
font-size: 28px;
line-height: 1.2;
color: #1E3053;
margin: 0
}

.srvpg .prosec .protext .prodesc {
font-size: 18px;
line-height: 1.6;
color: #3a4f6e;
margin: 0 0 48px
}

.srvpg .prosec .protext .steplist {
display: flex;
flex-direction: column;
gap: 24px
}

.srvpg .prosec .protext .stepitem {
display: flex;
flex-direction: row;
gap: 24px;
align-items: flex-start
}

.srvpg .prosec .protext .stepnum {
flex: 0 0 48px;
height: 48px;
border-radius: 16px;
background: #1E3053;
color: #fff;
font-size: 22px;
font-weight: 700;
line-height: 1.2;
display: flex;
align-items: center;
justify-content: center
}

.srvpg .prosec .protext .stepbody h5 {
font-size: 18px;
line-height: 1.4;
color: #1E3053;
margin: 0 0 6px
}

.srvpg .prosec .protext .stepbody p {
font-size: 16px;
line-height: 1.6;
color: #3a4f6e;
margin: 0
}

.srvpg .prosec .proimg {
flex: 0 0 400px;
position: relative
}

.srvpg .prosec .proimg .circles {
position: absolute;
top: -24px;
right: -24px;
width: 160px;
height: 160px;
pointer-events: none;
overflow: hidden
}

.srvpg .prosec .proimg .circles span {
position: absolute;
border-radius: 28px;
border: 2px solid #6a929e2e
}

.srvpg .prosec .proimg .circles span:nth-child(1) {
width: 80px;
height: 80px;
top: 40px;
left: 40px
}

.srvpg .prosec .proimg .circles span:nth-child(2) {
width: 120px;
height: 120px;
top: 20px;
left: 20px
}

.srvpg .prosec .proimg .circles span:nth-child(3) {
width: 160px;
height: 160px;
top: 0;
left: 0
}

.srvpg .prosec .proimg .imgwrap {
width: 100%;
height: 440px;
border-radius: 28px;
overflow: hidden;
position: relative;
animation: bgzoom 8s ease infinite alternate
}

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

to {
transform: scale(1.04)
}
}

.srvpg .prosec .proimg .imgwrap img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
border: 1px solid #6a929e38;
border-radius: 28px;
transition: border-color .7s ease
}

.srvpg .prosec .proimg .imgwrap:hover img {
border-color: #1e305380
}

.srvpg .prosec .proimg .accentnum {
position: absolute;
bottom: 24px;
left: -24px;
background: #1E3053;
color: #fff;
border-radius: 16px;
padding: 12px 24px;
box-shadow: 2px 7px 22px -1px #1e30531c;
display: flex;
flex-direction: column;
gap: 6px
}

.srvpg .prosec .proimg .accentnum .bigval {
font-size: 40px;
line-height: 1.2;
font-weight: 700
}

.srvpg .prosec .proimg .accentnum .vallabel {
font-size: 16px;
line-height: 1.4;
color: #A4C1C8
}

@keyframes dropin {
from {
opacity: 0;
transform: translateY(-32px)
}

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

.srvpg .titblock .textside,
.srvpg .titblock .imgside {
animation: dropin .7s cubic-bezier(0.25, 0.46, 0.45, 0.94) both
}

.srvpg .titblock .imgside {
animation-delay: .15s
}

@media (max-width: 960px) {
.srvpg .titblock {
flex-direction: column;
padding: 48px 24px;
gap: 24px
}

.srvpg .titblock .imgside {
flex: 0 0 auto;
width: 100%;
display: flex;
justify-content: center
}

.srvpg .titblock .imgside .imgframe {
width: 100%;
max-width: 380px;
height: 280px
}

.srvpg .svcsec .svcgrid {
grid-template-columns: repeat(2, 1fr)
}

.srvpg .prosec .innermax {
flex-direction: column-reverse;
gap: 24px
}

.srvpg .prosec .proimg {
flex: 0 0 auto;
width: 100%
}

.srvpg .prosec .proimg .imgwrap {
height: 280px
}
}

@media (max-width: 480px) {
.srvpg .titblock h1 {
font-size: 28px
}

.srvpg .svcsec .svcgrid {
grid-template-columns: 1fr
}

.srvpg .prosec .proimg .accentnum {
left: 0
}

.srvpg .titblock .imgside .statcard {
left: 0
}
}

.ctus {
background: #f4f7f9;
overflow-x: clip;
position: relative
}

.ctus .reach-band {
width: 100%;
background: linear-gradient(353deg, #6A929E, transparent);
padding: 96px 24px 48px
}

.ctus .reach-inner {
max-width: 1140px;
margin: 0 auto;
display: flex;
flex-direction: row;
gap: 48px;
align-items: stretch
}

.ctus .reach-left {
flex: 1 1 340px;
display: flex;
flex-direction: column;
gap: 24px
}

.ctus .accent-bar {
width: 48px;
height: 4px;
background: #1E3053;
border-radius: 3px
}

.ctus .reach-label {
font-size: 16px;
line-height: 1.4;
color: #1E3053;
letter-spacing: .08em;
text-transform: uppercase;
font-weight: 700
}

.ctus .reach-heading {
font-size: 40px;
line-height: 1.2;
color: #1E3053;
font-weight: 800;
margin: 0
}

.ctus .reach-heading mark {
background: #A4C1C8;
color: #1E3053;
padding: 0 8px;
border-radius: 3px
}

.ctus .reach-desc {
font-size: 18px;
line-height: 1.6;
color: #2a3f5a;
margin: 0
}

.ctus .contact-cards {
display: flex;
flex-direction: column;
gap: 12px;
margin-top: 12px
}

.ctus .ccard {
background: #fff;
border-radius: 16px;
padding: 24px;
box-shadow: 2px 7px 22px -1px #1e30531c;
display: flex;
flex-direction: row;
align-items: center;
gap: 12px;
transition: box-shadow .6s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.ctus .ccard:hover {
box-shadow: 2px 12px 48px -1px #1e30531a
}

.ctus .ccard-icon {
width: 40px;
height: 40px;
border-radius: 28px;
background: #1E3053;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0
}

.ctus .ccard-icon i {
color: #A4C1C8;
font-size: 18px
}

.ctus .ccard-text {
display: flex;
flex-direction: column;
gap: 6px
}

.ctus .ccard-lbl {
font-size: 16px;
color: #6A929E;
font-weight: 600;
line-height: 1.2
}

.ctus .ccard-val {
font-size: 16px;
color: #1E3053;
line-height: 1.4;
font-weight: 500;
text-decoration: none;
transition: color .5s ease
}

.ctus .ccard-val:hover {
color: #6A929E
}

.ctus .reach-right {
flex: 1 1 440px;
background: #fff;
border-radius: 28px;
padding: 48px;
box-shadow: 2px 12px 48px -1px #1e30531a;
display: flex;
flex-direction: column;
gap: 24px
}

.ctus .form-topbar {
display: flex;
flex-direction: column;
gap: 6px
}

.ctus .form-eyebrow {
font-size: 16px;
color: #6A929E;
font-weight: 600;
line-height: 1.4
}

.ctus .form-title {
font-size: 28px;
line-height: 1.2;
color: #1E3053;
font-weight: 700;
margin: 0
}

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

.ctus .cf-row {
display: flex;
flex-direction: column;
gap: 6px
}

.ctus .cf-label {
font-size: 16px;
color: #1E3053;
font-weight: 600;
line-height: 1.4
}

.ctus .cf-input {
border: 2px solid #A4C1C8;
border-radius: 16px;
padding: 12px 24px;
font-size: 16px;
color: #1E3053;
background: #f4f7f9;
outline: none;
transition: border-color .5s ease, box-shadow .6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
width: 100%;
box-sizing: border-box
}

.ctus .cf-input::placeholder {
color: #8aabb5;
font-weight: 300
}

.ctus .cf-input:focus {
border-color: #1E3053;
box-shadow: 2px 7px 22px -1px #6a929e1c
}

.ctus .radio-group {
display: flex;
flex-direction: column;
gap: 12px
}

.ctus .radio-opt {
display: flex;
flex-direction: row;
align-items: center;
gap: 12px;
cursor: pointer;
padding: 12px 24px;
border-radius: 16px;
border: 2px solid #A4C1C8;
background: #f4f7f9;
transition: border-color .5s ease, background .6s ease
}

.ctus .radio-opt:has(input:checked) {
border-color: #1E3053;
background: #e8eff3
}

.ctus .radio-opt:hover {
border-color: #6A929E
}

.ctus .radio-opt input[type="radio"] {
accent-color: #1E3053;
width: 18px;
height: 18px;
flex-shrink: 0;
cursor: pointer
}

.ctus .radio-opt-text {
display: flex;
flex-direction: column;
gap: 6px
}

.ctus .radio-opt-title {
font-size: 16px;
color: #1E3053;
font-weight: 600;
line-height: 1.2
}

.ctus .radio-opt-sub {
font-size: 16px;
color: #6A929E;
line-height: 1.4
}

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

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

.ctus .privacy-text {
font-size: 16px;
color: #2a3f5a;
line-height: 1.6
}

.ctus .privacy-text a {
color: #1E3053;
font-weight: 600;
text-decoration: underline;
transition: color .5s ease
}

.ctus .privacy-text a:hover {
color: #6A929E
}

.ctus .submit-btn {
position: relative;
overflow: hidden;
background: #1E3053;
color: #fff;
border: none;
border-radius: 16px;
padding: 18px 48px;
font-size: 18px;
font-weight: 700;
cursor: pointer;
line-height: 1.2;
transition: color .6s ease;
align-self: flex-start
}

.ctus .submit-btn::before {
content: "";
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: #6A929E;
transition: left .6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
z-index: 0
}

.ctus .submit-btn:hover::before {
left: 0
}

.ctus .submit-btn span {
position: relative;
z-index: 1
}

.ctus .submit-btn:focus {
outline: 3px solid #A4C1C8;
outline-offset: 3px
}

.ctus .imgstrip {
width: 100%;
background: #1E3053;
padding: 96px 24px;
position: relative
}

.ctus .imgstrip-inner {
max-width: 1140px;
margin: 0 auto;
display: flex;
flex-direction: row;
gap: 48px;
align-items: center
}

.ctus .imgstrip-imgwrap {
flex: 0 0 420px;
border-radius: 28px;
overflow: hidden;
border: 2px solid #A4C1C8;
box-shadow: 2px 12px 48px -1px #1e30531a;
position: relative
}

.ctus .imgstrip-imgwrap img {
width: 100%;
height: 320px;
object-fit: cover;
display: block;
filter: saturate(0.5) sepia(0.3);
transition: filter .7s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform .7s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.ctus .imgstrip-imgwrap:hover img {
filter: saturate(1) sepia(0);
transform: scale(1.04)
}

.ctus .imgstrip-text {
flex: 1 1 0;
display: flex;
flex-direction: column;
gap: 24px
}

.ctus .imgstrip-accent {
width: 48px;
height: 4px;
background: #A4C1C8;
border-radius: 3px
}

.ctus .imgstrip-h {
font-size: 28px;
line-height: 1.2;
color: #fff;
font-weight: 700;
margin: 0
}

.ctus .imgstrip-p {
font-size: 18px;
line-height: 1.6;
color: #A4C1C8;
margin: 0
}

.ctus .stat-row {
display: flex;
flex-direction: row;
gap: 48px;
margin-top: 12px
}

.ctus .stat-item {
display: flex;
flex-direction: column;
gap: 6px
}

.ctus .stat-num {
font-size: 40px;
line-height: 1.2;
color: #A4C1C8;
font-weight: 800
}

.ctus .stat-desc {
font-size: 16px;
color: #6A929E;
line-height: 1.4
}

.ctus .dots-deco {
position: absolute;
bottom: 24px;
right: 24px;
display: grid;
grid-template-columns: repeat(4, auto);
gap: 8px;
pointer-events: none
}

.ctus .dot {
border-radius: 28px;
background: #A4C1C8;
opacity: .25
}

.ctus .dot.sm {
width: 6px;
height: 6px
}

.ctus .dot.md {
width: 10px;
height: 10px
}

.ctus .dot.lg {
width: 16px;
height: 16px
}

@keyframes colwash {
0% {
background-color: #e8eff3
}

50% {
background-color: #d0e2e7
}

100% {
background-color: #e8eff3
}
}

.ctus .reach-band {
animation: colwash 8s ease infinite
}

@media (max-width: 960px) {
.ctus .reach-inner {
flex-direction: column
}

.ctus .reach-right {
padding: 24px
}

.ctus .imgstrip-inner {
flex-direction: column
}

.ctus .imgstrip-imgwrap {
flex: 0 0 auto;
width: 100%
}

.ctus .stat-row {
gap: 24px
}
}

@media (max-width: 480px) {
.ctus .reach-heading {
font-size: 28px
}

.ctus .reach-band {
padding: 48px 12px 24px
}

.ctus .reach-right {
padding: 24px 12px
}

.ctus .imgstrip {
padding: 48px 12px
}

.ctus .stat-row {
flex-direction: column;
gap: 24px
}

.ctus .submit-btn {
width: 100%;
text-align: center
}
}

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

.lrnprog .maxw {
max-width: 1140px;
margin-left: auto;
margin-right: auto;
padding-left: 24px;
padding-right: 24px
}

.lrnprog .titblock {
padding-top: 96px;
padding-bottom: 96px;
background: #fff;
position: relative
}

.lrnprog .titblock .twoCol {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 48px;
align-items: start
}

.lrnprog .titblock .textZone {
padding-top: 48px;
padding-bottom: 24px;
display: flex;
flex-direction: column;
gap: 24px
}

.lrnprog .titblock .imgZone {
position: relative;
padding: 12px
}

.lrnprog .titblock .imgZone img {
width: 100%;
height: 520px;
object-fit: cover;
display: block;
border: 1px solid #A4C1C8;
border-radius: 16px;
filter: saturate(0.7) brightness(0.88);
transition: filter .6s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.lrnprog .titblock .imgZone img:hover {
filter: saturate(0.9) brightness(1.05)
}

.lrnprog .titblock .imgZone .deco-line {
position: absolute;
bottom: 48px;
left: -12px;
width: 4px;
height: 120px;
background: linear-gradient(353deg, #6A929E, transparent);
border-radius: 3px
}

.lrnprog .titblock .imgZone .deco-dot {
position: absolute;
top: 0;
right: 0;
width: 28px;
height: 28px;
border-radius: 28px;
background: #A4C1C8;
opacity: .6
}

.lrnprog .titblock .accentword {
color: #1E3053;
display: inline-block;
background: linear-gradient(353deg, #A4C1C8 60%, transparent);
padding: 0 12px;
border-radius: 3px
}

.lrnprog .titblock h1 {
font-size: 72px;
line-height: 1.2;
color: #1E3053;
margin: 0
}

.lrnprog .titblock .subdesc {
font-size: 18px;
line-height: 1.6;
color: #3a5068;
margin: 0
}

.lrnprog .titblock .tagrow {
display: flex;
flex-direction: row;
flex-wrap: wrap;
gap: 12px
}

.lrnprog .titblock .tag {
font-size: 16px;
line-height: 1.4;
color: #1E3053;
border: 1px solid #A4C1C8;
border-radius: 28px;
padding: 6px 24px;
background: #f0f6f8
}

.lrnprog .titblock .ctabtn {
display: inline-block;
font-size: 16px;
line-height: 1.4;
color: #fff;
background: #1E3053;
border: none;
border-radius: 3px;
padding: 12px 48px;
cursor: pointer;
text-decoration: none;
position: relative;
overflow: hidden;
transition: color .5s ease;
align-self: flex-start
}

.lrnprog .titblock .ctabtn::before {
content: "";
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: #6A929E;
transition: left .6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
z-index: 0
}

.lrnprog .titblock .ctabtn:hover::before {
left: 0
}

.lrnprog .titblock .ctabtn span {
position: relative;
z-index: 1
}

.lrnprog .titblock .deco-hline {
display: flex;
flex-direction: row;
align-items: center;
gap: 12px;
margin-top: 48px
}

.lrnprog .titblock .deco-hline .line {
flex: 1;
height: 1px;
background: linear-gradient(353deg, #6A929E, transparent)
}

.lrnprog .titblock .deco-hline .center-el {
width: 12px;
height: 12px;
border-radius: 0;
background: #1E3053;
transform: rotate(45deg)
}

.lrnprog .detailsec {
background: #1E3053;
padding-top: 96px;
padding-bottom: 96px;
position: relative;
overflow: hidden
}

.lrnprog .detailsec .bgcircles {
position: absolute;
top: -60px;
right: -60px;
width: 320px;
height: 320px;
pointer-events: none
}

.lrnprog .detailsec .bgcircles circle {
fill: none;
stroke: #a4c1c814
}

.lrnprog .detailsec .dslayout {
display: grid;
grid-template-columns: 1fr 1.4fr;
gap: 48px;
align-items: start
}

.lrnprog .detailsec .dsleft {
display: flex;
flex-direction: column;
gap: 24px
}

.lrnprog .detailsec h2 {
font-size: 40px;
line-height: 1.2;
color: #fff;
margin: 0
}

.lrnprog .detailsec .hstrip {
display: inline;
background: #a4c1c82e;
padding: 0 12px;
border-radius: 3px
}

.lrnprog .detailsec .dsdesc {
font-size: 18px;
line-height: 1.6;
color: #A4C1C8;
margin: 0
}

.lrnprog .detailsec .statrow {
display: flex;
flex-direction: row;
gap: 24px;
flex-wrap: wrap
}

.lrnprog .detailsec .statitem {
display: flex;
flex-direction: column;
gap: 6px
}

.lrnprog .detailsec .statnum {
font-size: 40px;
line-height: 1.2;
color: #A4C1C8;
font-weight: 700
}

.lrnprog .detailsec .statlabel {
font-size: 16px;
line-height: 1.4;
color: #6A929E
}

.lrnprog .detailsec .dsright {
display: flex;
flex-direction: column;
gap: 24px
}

.lrnprog .detailsec .steptracker {
display: flex;
flex-direction: column;
gap: 0
}

.lrnprog .detailsec .steprow {
display: flex;
flex-direction: row;
align-items: stretch;
gap: 24px
}

.lrnprog .detailsec .stepline-col {
display: flex;
flex-direction: column;
align-items: center;
width: 40px;
flex-shrink: 0
}

.lrnprog .detailsec .stepnum {
width: 40px;
height: 40px;
border-radius: 28px;
background: #6A929E;
color: #fff;
font-size: 16px;
line-height: 1;
display: flex;
align-items: center;
justify-content: center;
font-weight: 700;
flex-shrink: 0;
border-top: 3px solid #A4C1C8;
transition: background .5s ease
}

.lrnprog .detailsec .steprow:hover .stepnum {
background: #A4C1C8
}

.lrnprog .detailsec .stepconnect {
flex: 1;
width: 2px;
background: #6a929e59;
margin-top: 0;
margin-bottom: 0
}

.lrnprog .detailsec .stepbody {
padding-top: 6px;
padding-bottom: 24px;
flex: 1;
display: flex;
flex-direction: column;
gap: 6px
}

.lrnprog .detailsec .steprow:last-child .stepbody {
padding-bottom: 0
}

.lrnprog .detailsec .steptitle {
font-size: 18px;
line-height: 1.4;
color: #fff;
margin: 0;
font-weight: 600
}

.lrnprog .detailsec .steptext {
font-size: 16px;
line-height: 1.6;
color: #A4C1C8;
margin: 0
}

.lrnprog .detailsec .offercard {
background: #ffffff0d;
border-radius: 16px;
padding: 24px;
display: flex;
flex-direction: column;
gap: 12px;
border-top: 3px solid #6A929E
}

.lrnprog .detailsec .offercard .offtitle {
font-size: 22px;
line-height: 1.4;
color: #fff;
margin: 0
}

.lrnprog .detailsec .offercard .offlist {
list-style: none;
padding: 0;
margin: 0;
display: flex;
flex-direction: column;
gap: 12px
}

.lrnprog .detailsec .offercard .offlist li {
display: flex;
flex-direction: row;
align-items: flex-start;
gap: 12px;
font-size: 16px;
line-height: 1.6;
color: #A4C1C8
}

.lrnprog .detailsec .offercard .offlist li:nth-child(odd) {
color: #fff
}

.lrnprog .detailsec .offercard .offlist li .icobox {
width: 22px;
height: 22px;
flex-shrink: 0;
margin-top: 2px
}

.lrnprog .detailsec .imgwrap {
border-radius: 16px;
overflow: hidden;
border: 1px solid #a4c1c840
}

.lrnprog .detailsec .imgwrap img {
width: 100%;
height: 240px;
object-fit: cover;
display: block;
filter: saturate(0.5) brightness(0.75);
transition: filter .7s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.lrnprog .detailsec .imgwrap img:hover {
filter: saturate(0.75) brightness(0.95)
}

.lrnprog .detailsec .enrollbtn {
display: inline-block;
font-size: 18px;
line-height: 1.4;
color: #1E3053;
background: #A4C1C8;
border: none;
border-radius: 3px;
padding: 12px 48px;
cursor: pointer;
text-decoration: none;
position: relative;
overflow: hidden;
transition: color .6s ease;
align-self: flex-start
}

.lrnprog .detailsec .enrollbtn::before {
content: "";
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: #fff;
transition: left .7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
z-index: 0
}

.lrnprog .detailsec .enrollbtn:hover::before {
left: 0
}

.lrnprog .detailsec .enrollbtn span {
position: relative;
z-index: 1
}

.lrnprog .detailsec .divzigzag {
position: absolute;
top: 0;
left: 0;
width: 100%;
overflow: hidden;
line-height: 0
}

.lrnprog .detailsec .divzigzag svg {
display: block;
width: 100%
}

@media (max-width: 960px) {
.lrnprog .titblock h1 {
font-size: 40px
}

.lrnprog .titblock .twoCol {
grid-template-columns: 1fr;
gap: 24px
}

.lrnprog .titblock .imgZone img {
height: 320px
}

.lrnprog .titblock .textZone {
padding-top: 24px
}

.lrnprog .detailsec .dslayout {
grid-template-columns: 1fr;
gap: 48px
}
}

@media (max-width: 480px) {
.lrnprog .titblock {
padding-top: 48px;
padding-bottom: 48px
}

.lrnprog .titblock h1 {
font-size: 28px
}

.lrnprog .detailsec {
padding-top: 48px;
padding-bottom: 48px
}

.lrnprog .detailsec h2 {
font-size: 28px
}

.lrnprog .detailsec .statnum {
font-size: 28px
}
}

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

.strt .pg-wrap {
max-width: 1140px;
margin: 0 auto;
padding: 0 24px
}

.strt .ttl-blk {
background: #f5f7f9;
position: relative;
padding: 96px 0
}

.strt .ttl-blk::before {
content: "";
position: absolute;
inset: 0;
background-image: repeating-linear-gradient(135deg, #1e305308 0px, #1e305308 1px, transparent 1px, transparent 18px);
pointer-events: none
}

.strt .ttl-inner {
max-width: 1140px;
margin: 0 auto;
padding: 0 24px;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 48px;
align-items: start
}

.strt .ttl-text {
position: relative;
z-index: 1
}

.strt .ttl-eyebrow {
display: inline-block;
font-size: 16px;
line-height: 1.4;
color: #6A929E;
letter-spacing: .12em;
text-transform: uppercase;
margin-bottom: 24px
}

.strt .ttl-h1 {
font-size: 72px;
line-height: 1.2;
color: #1E3053;
margin-bottom: 24px
}

.strt .ttl-sub {
font-size: 22px;
line-height: 1.6;
color: #2d3f5e;
margin-bottom: 48px
}

.strt .ttl-theses {
display: flex;
flex-direction: column;
gap: 12px
}

.strt .thesis-item {
font-size: 18px;
line-height: 1.6;
color: #1E3053;
padding: 12px 24px;
background: #a4c1c82e;
border-radius: 3px
}

.strt .ttl-img-col {
position: relative;
z-index: 1
}

.strt .ttl-img-frame {
position: relative;
border-radius: 16px;
overflow: hidden;
border: 1px solid #6a929e38;
box-shadow: 2px 12px 48px -1px #1e30531a
}

.strt .ttl-img-frame img {
width: 100%;
height: 480px;
object-fit: cover;
display: block;
mask-image: linear-gradient(to bottom, #0000004d 0%, #000f 35%);
-webkit-mask-image: linear-gradient(to bottom, #0000004d 0%, #000f 35%)
}

.strt .ttl-cta {
display: inline-block;
margin-top: 48px;
padding: 16px 48px;
background: #1E3053;
color: #fff;
font-size: 18px;
line-height: 1.4;
border-radius: 3px;
text-decoration: none;
position: relative;
overflow: hidden;
transition: color .6s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.strt .ttl-cta::before {
content: "";
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: #6A929E;
transition: left .6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
z-index: 0
}

.strt .ttl-cta:hover::before {
left: 0
}

.strt .ttl-cta span {
position: relative;
z-index: 1
}

.strt .ttl-wave {
position: absolute;
bottom: 0;
left: 0;
right: 0;
height: 24px;
overflow: hidden
}

.strt .ttl-wave svg {
width: 100%;
height: 24px
}

.strt .val-sec {
padding: 96px 0;
background: #fff
}

.strt .val-inner {
max-width: 1140px;
margin: 0 auto;
padding: 0 24px;
display: grid;
grid-template-columns: 5fr 7fr;
gap: 48px;
align-items: start
}

.strt .val-sidebar {
display: flex;
flex-direction: column;
gap: 24px
}

.strt .val-icon-item {
display: flex;
flex-direction: column;
align-items: center;
gap: 12px;
padding: 24px 12px;
border-radius: 16px;
background: #a4c1c81f;
box-shadow: 2px 2px 6px -1px #1e30530d
}

.strt .val-icon-item i {
font-size: 28px;
color: #6A929E
}

.strt .val-icon-label {
font-size: 16px;
line-height: 1.4;
color: #1E3053;
text-align: center
}

.strt .sec-heading-strip {
display: inline-block;
background: #a4c1c847;
padding: 6px 12px;
border-radius: 3px;
font-size: 28px;
line-height: 1.4;
color: #1E3053;
margin-bottom: 24px
}

.strt .val-body p {
font-size: 18px;
line-height: 1.9;
color: #2d3f5e;
margin-bottom: 24px
}

.strt .val-stat-row {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 24px;
margin-top: 24px
}

.strt .val-stat {
padding: 24px;
border-radius: 16px;
border: 1px solid #6a929e33;
box-shadow: 2px 7px 22px -1px #6a929e1c
}

.strt .val-stat-num {
font-size: 40px;
line-height: 1.2;
color: #1E3053;
display: block
}

.strt .val-stat-label {
font-size: 16px;
line-height: 1.6;
color: #6A929E
}

.strt .avail-sec {
padding: 96px 0;
background: #A4C1C8;
position: relative
}

.strt .avail-wave-top {
position: absolute;
top: 0;
left: 0;
right: 0;
height: 24px;
overflow: hidden
}

.strt .avail-wave-top svg {
width: 100%;
height: 24px
}

.strt .avail-inner {
max-width: 1140px;
margin: 0 auto;
padding: 0 24px
}

.strt .avail-head {
margin-bottom: 48px
}

.strt .avail-head .sec-heading-strip {
background: #1e30531f;
color: #1E3053
}

.strt .avail-head p {
font-size: 18px;
line-height: 1.6;
color: #1E3053;
max-width: 640px
}

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

.strt .avail-card {
background: #fff;
border-radius: 16px;
overflow: hidden;
box-shadow: 2px 7px 22px -1px #1e30531c;
border: 1px solid #1e305314;
display: flex;
flex-direction: column
}

.strt .avail-card-img {
position: relative;
overflow: hidden
}

.strt .avail-card-img img {
width: 100%;
height: 200px;
object-fit: cover;
display: block;
transition: transform .7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
border-bottom: 1px solid #6a929e2e
}

.strt .avail-card:hover .avail-card-img img {
transform: scale(1.04)
}

.strt .avail-caption {
position: absolute;
inset: 0;
background: #1e3053d1;
display: flex;
align-items: center;
justify-content: center;
padding: 24px;
opacity: 0;
transition: opacity .6s ease
}

.strt .avail-card:hover .avail-caption {
opacity: 1
}

.strt .avail-caption p {
font-size: 16px;
line-height: 1.6;
color: #fff;
text-align: center
}

.strt .avail-card-body {
padding: 24px;
flex: 1;
display: flex;
flex-direction: column;
gap: 12px
}

.strt .avail-card-tag {
font-size: 16px;
line-height: 1.4;
color: #6A929E;
letter-spacing: .08em;
text-transform: uppercase
}

.strt .avail-card h4 {
font-size: 22px;
line-height: 1.4;
color: #1E3053
}

.strt .avail-card p {
font-size: 16px;
line-height: 1.6;
color: #2d3f5e;
flex: 1
}

.strt .avail-card-lnk {
display: inline-block;
font-size: 16px;
line-height: 1.4;
color: #1E3053;
text-decoration: none;
padding: 6px 12px;
border-radius: 28px;
transition: background .5s ease, color .5s ease;
align-self: flex-start
}

.strt .avail-card-lnk:hover {
background: #1E3053;
color: #fff
}

.strt .exp-sec {
padding: 96px 0;
background: #fff;
position: relative
}

.strt .exp-inner {
max-width: 1140px;
margin: 0 auto;
padding: 0 24px
}

.strt .exp-layout {
display: grid;
grid-template-columns: 7fr 5fr;
gap: 48px;
align-items: start
}

.strt .exp-text p {
font-size: 18px;
line-height: 1.9;
color: #2d3f5e;
margin-bottom: 24px
}

.strt .exp-phases {
display: flex;
flex-direction: column;
gap: 12px;
margin-top: 24px
}

.strt .exp-phase {
display: flex;
flex-direction: row;
gap: 12px;
align-items: flex-start;
padding: 12px;
border-radius: 3px
}

.strt .exp-phase.odd {
background: #a4c1c826
}

.strt .exp-phase.even {
background: #1e30530d
}

.strt .exp-phase-num {
font-size: 40px;
line-height: 1.2;
color: #A4C1C8;
min-width: 48px
}

.strt .exp-phase-txt h5 {
font-size: 18px;
line-height: 1.4;
color: #1E3053;
margin-bottom: 6px
}

.strt .exp-phase-txt p {
font-size: 16px;
line-height: 1.6;
color: #2d3f5e;
margin-bottom: 0
}

.strt .exp-img-col {
position: relative
}

.strt .exp-img-frame {
border-radius: 16px;
overflow: hidden;
border: 1px solid #6a929e38;
box-shadow: 2px 12px 48px -1px #1e30531a;
position: relative
}

.strt .exp-img-frame img {
width: 100%;
height: 420px;
object-fit: cover;
display: block
}

.strt .exp-img-caption {
position: absolute;
inset: 0;
background: #1e3053cc;
display: flex;
align-items: center;
justify-content: center;
padding: 24px;
opacity: 0;
transition: opacity .7s ease
}

.strt .exp-img-frame:hover .exp-img-caption {
opacity: 1
}

.strt .exp-img-caption p {
font-size: 16px;
line-height: 1.6;
color: #fff;
text-align: center;
margin-bottom: 0
}

.strt .exp-wave-bot {
position: absolute;
bottom: 0;
left: 0;
right: 0;
height: 24px;
overflow: hidden
}

.strt .exp-wave-bot svg {
width: 100%;
height: 24px
}

.strt .sup-sec {
padding: 96px 0;
background: #1E3053;
position: relative;
overflow: hidden
}

.strt .sup-bg-anim {
position: absolute;
inset: 0;
background: radial-gradient(ellipse 60% 80% at 20% 50%, #6a929e2e 0%, transparent 70%);
animation: lightmove 7s ease infinite alternate;
pointer-events: none
}

@keyframes lightmove {
0% {
background: radial-gradient(ellipse 60% 80% at 20% 50%, #6a929e2e 0%, transparent 70%)
}

100% {
background: radial-gradient(ellipse 60% 80% at 80% 50%, #a4c1c824 0%, transparent 70%)
}
}

.strt .sup-inner {
max-width: 1140px;
margin: 0 auto;
padding: 0 24px;
position: relative;
z-index: 1
}

.strt .sup-layout {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 48px;
align-items: start
}

.strt .sup-text .sec-heading-strip {
background: #a4c1c833;
color: #fff
}

.strt .sup-text p {
font-size: 18px;
line-height: 1.9;
color: #ffffffd9;
margin-bottom: 24px
}

.strt .sup-items {
display: flex;
flex-direction: column;
gap: 24px
}

.strt .sup-item {
display: flex;
flex-direction: row;
gap: 12px;
align-items: flex-start;
padding: 24px;
border-radius: 16px;
background: #ffffff12;
border: 1px solid #a4c1c826;
box-shadow: 2px 7px 22px -1px #1e30531c
}

.strt .sup-item i {
font-size: 28px;
color: #A4C1C8;
margin-top: 6px
}

.strt .sup-item-txt h5 {
font-size: 18px;
line-height: 1.4;
color: #fff;
margin-bottom: 6px
}

.strt .sup-item-txt p {
font-size: 16px;
line-height: 1.6;
color: #ffffffbf;
margin-bottom: 0
}

.strt .who-sec {
padding: 96px 0;
background: #f5f7f9;
position: relative
}

.strt .who-inner {
max-width: 1140px;
margin: 0 auto;
padding: 0 24px
}

.strt .who-top {
margin-bottom: 48px
}

.strt .who-top p {
font-size: 18px;
line-height: 1.6;
color: #2d3f5e;
max-width: 680px;
margin-top: 12px
}

.strt .who-cols {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 48px
}

.strt .who-col-head {
font-size: 22px;
line-height: 1.4;
color: #1E3053;
margin-bottom: 24px;
padding-bottom: 12px;
border-bottom: 2px solid #6a929e4d
}

.strt .who-list {
list-style: none;
padding: 0;
margin: 0;
display: flex;
flex-direction: column;
gap: 12px
}

.strt .who-list li {
font-size: 18px;
line-height: 1.6;
color: #2d3f5e;
padding: 12px 24px;
border-radius: 3px;
display: flex;
flex-direction: row;
gap: 12px;
align-items: flex-start
}

.strt .who-list li:nth-child(odd) {
background: #a4c1c82e
}

.strt .who-list li:nth-child(even) {
background: #1e30530f
}

.strt .who-list li i {
color: #6A929E;
font-size: 22px;
margin-top: 2px;
flex-shrink: 0
}

.strt .who-img-row {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 24px;
margin-top: 48px
}

.strt .who-img-frame {
border-radius: 16px;
overflow: hidden;
border: 1px solid #6a929e33;
box-shadow: 2px 7px 22px -1px #1e30531c;
position: relative
}

.strt .who-img-frame img {
width: 100%;
height: 240px;
object-fit: cover;
display: block
}

.strt .who-img-cap {
position: absolute;
inset: 0;
background: #1e3053cc;
display: flex;
align-items: center;
justify-content: center;
padding: 24px;
opacity: 0;
transition: opacity .65s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.strt .who-img-frame:hover .who-img-cap {
opacity: 1
}

.strt .who-img-cap p {
font-size: 16px;
line-height: 1.6;
color: #fff;
text-align: center
}

.strt .diff-sec {
padding: 96px 0;
background: #fff;
position: relative
}

.strt .diff-wave-top {
position: absolute;
top: 0;
left: 0;
right: 0;
height: 24px;
overflow: hidden
}

.strt .diff-wave-top svg {
width: 100%;
height: 24px
}

.strt .diff-inner {
max-width: 1140px;
margin: 0 auto;
padding: 0 24px
}

.strt .diff-layout {
display: grid;
grid-template-columns: 5fr 7fr;
gap: 48px;
align-items: start
}

.strt .diff-img-frame {
border-radius: 16px;
overflow: hidden;
border: 1px solid #6a929e38;
box-shadow: 2px 12px 48px -1px #1e30531a;
position: relative
}

.strt .diff-img-frame img {
width: 100%;
height: 380px;
object-fit: cover;
display: block
}

.strt .diff-img-cap {
position: absolute;
inset: 0;
background: #1e3053cc;
display: flex;
align-items: center;
justify-content: center;
padding: 24px;
opacity: 0;
transition: opacity .55s ease
}

.strt .diff-img-frame:hover .diff-img-cap {
opacity: 1
}

.strt .diff-img-cap p {
font-size: 16px;
line-height: 1.6;
color: #fff;
text-align: center
}

.strt .diff-body p {
font-size: 18px;
line-height: 1.9;
color: #2d3f5e;
margin-bottom: 24px
}

.strt .diff-points {
display: flex;
flex-direction: column;
gap: 12px;
margin-top: 24px
}

.strt .diff-pt {
padding: 12px 24px;
border-radius: 3px;
font-size: 18px;
line-height: 1.6;
color: #1E3053
}

.strt .diff-pt.odd {
background: #a4c1c833
}

.strt .diff-pt.even {
background: #1e305312
}

.strt .diff-pt h5 {
font-size: 18px;
line-height: 1.4;
color: #1E3053;
margin-bottom: 6px
}

.strt .diff-pt p {
font-size: 16px;
line-height: 1.6;
color: #2d3f5e;
margin-bottom: 0
}

.strt .diff-lnk {
display: inline-block;
margin-top: 24px;
padding: 16px 48px;
background: #1E3053;
color: #fff;
font-size: 18px;
line-height: 1.4;
border-radius: 3px;
text-decoration: none;
position: relative;
overflow: hidden;
transition: color .6s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.strt .diff-lnk::before {
content: "";
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: #6A929E;
transition: left .6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
z-index: 0
}

.strt .diff-lnk:hover::before {
left: 0
}

.strt .diff-lnk span {
position: relative;
z-index: 1
}

.strt input:invalid.shaken,
.strt textarea:invalid.shaken {
animation: shakeinput .5s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

@keyframes shakeinput {

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

20% {
transform: translateX(-6px)
}

40% {
transform: translateX(6px)
}

60% {
transform: translateX(-4px)
}

80% {
transform: translateX(4px)
}
}

@media (max-width: 960px) {
.strt .ttl-inner {
grid-template-columns: 1fr
}

.strt .ttl-h1 {
font-size: 40px
}

.strt .ttl-img-frame img {
height: 300px
}

.strt .val-inner {
grid-template-columns: 1fr
}

.strt .val-sidebar {
flex-direction: row;
flex-wrap: wrap
}

.strt .val-icon-item {
flex: 1 1 calc(50% - 12px)
}

.strt .avail-grid {
grid-template-columns: 1fr 1fr
}

.strt .exp-layout {
grid-template-columns: 1fr
}

.strt .sup-layout {
grid-template-columns: 1fr
}

.strt .who-cols {
grid-template-columns: 1fr
}

.strt .who-img-row {
grid-template-columns: 1fr
}

.strt .diff-layout {
grid-template-columns: 1fr
}
}

@media (max-width: 480px) {
.strt .ttl-h1 {
font-size: 40px
}

.strt .avail-grid {
grid-template-columns: 1fr
}

.strt .val-stat-row {
grid-template-columns: 1fr
}

.strt .val-icon-item {
flex: 1 1 100%
}
}

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

.abtus .img-frame {
border: 1.5px solid #A4C1C8;
border-radius: 16px;
overflow: hidden
}

.abtus .dash-accent {
display: inline-block;
width: 28px;
height: 3px;
background: #6A929E;
border-radius: 3px;
vertical-align: middle;
margin-right: 12px
}

.abtus .strip-label {
display: inline-block;
background: #A4C1C8;
color: #1E3053;
font-size: 16px;
font-weight: 700;
letter-spacing: .08em;
text-transform: uppercase;
padding: 6px 24px;
border-radius: 3px;
margin-bottom: 24px
}

.abtus .blurred-divider {
width: 100%;
height: 2px;
background: linear-gradient(353deg, #6A929E, transparent);
filter: blur(1.5px);
border-radius: 3px;
margin: 0
}

.abtus .identity-block {
max-width: 1140px;
margin: 0 auto;
padding: 96px 48px;
display: grid;
grid-template-columns: 1fr 1.4fr;
gap: 48px;
align-items: center;
animation: scaleReveal .7s cubic-bezier(0.25, 0.46, 0.45, 0.94) both
}

@keyframes scaleReveal {
from {
transform: scale(0.9);
opacity: 0
}

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

.abtus .identity-imgzone {
position: relative
}

.abtus .identity-imgzone .bg-num {
position: absolute;
top: -24px;
left: -12px;
font-size: 72px;
font-weight: 900;
color: #A4C1C8;
opacity: .22;
line-height: 1.2;
pointer-events: none;
user-select: none;
z-index: 0
}

.abtus .identity-imgzone .img-frame {
position: relative;
z-index: 1
}

.abtus .identity-imgzone img {
width: 100%;
height: 420px;
object-fit: cover;
display: block;
border-radius: 16px;
filter: contrast(1.04) saturate(1.06)
}

.abtus .identity-text {
padding: 24px 0 24px 24px
}

.abtus .identity-text h1 {
font-size: 40px;
line-height: 1.2;
color: #1E3053;
margin-bottom: 24px;
font-weight: 800
}

.abtus .identity-text h1 em {
font-style: normal;
color: #6A929E
}

.abtus .identity-text p {
font-size: 18px;
line-height: 1.6;
color: #2d3e56;
margin-bottom: 24px
}

.abtus .identity-text .stat-row {
display: flex;
flex-direction: row;
gap: 48px;
margin-top: 24px
}

.abtus .stat-item {
display: flex;
flex-direction: column;
gap: 6px
}

.abtus .stat-item .stat-num {
font-size: 40px;
font-weight: 900;
color: #1E3053;
line-height: 1.2
}

.abtus .stat-item .stat-desc {
font-size: 16px;
color: #6A929E;
line-height: 1.4
}

.abtus .identity-text .careers-link {
display: inline-block;
margin-top: 24px;
background: #1E3053;
color: #fff;
font-size: 16px;
font-weight: 700;
padding: 12px 24px;
border-radius: 3px;
text-decoration: none;
position: relative;
overflow: hidden;
transition: color .6s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.abtus .identity-text .careers-link::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: #6A929E;
transition: left .55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
z-index: 0
}

.abtus .identity-text .careers-link:hover::before {
left: 0
}

.abtus .identity-text .careers-link span {
position: relative;
z-index: 1
}

.abtus .identity-text .careers-link:focus {
outline: 3px solid #1E3053;
outline-offset: 3px
}

.abtus .team-section {
background: linear-gradient(353deg, #e8f0f3, #f4f8f9);
padding: 96px 0 48px;
animation: scaleReveal .8s cubic-bezier(0.25, 0.46, 0.45, 0.94) .15s both
}

.abtus .team-inner {
max-width: 1140px;
margin: 0 auto;
padding: 0 48px
}

.abtus .team-intro {
display: grid;
grid-template-columns: 1.2fr 1fr;
gap: 48px;
align-items: start;
margin-bottom: 48px
}

.abtus .team-intro-text h2 {
font-size: 28px;
line-height: 1.4;
color: #1E3053;
font-weight: 800;
margin-bottom: 24px
}

.abtus .team-intro-text p {
font-size: 18px;
line-height: 1.6;
color: #2d3e56;
margin-bottom: 24px
}

.abtus .team-intro-text p:last-child {
margin-bottom: 0
}

.abtus .team-intro-img .img-frame img {
width: 100%;
height: 320px;
object-fit: cover;
display: block;
border-radius: 16px
}

.abtus .team-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 24px;
margin-bottom: 48px
}

.abtus .member-card {
background: #fff;
border-radius: 16px;
box-shadow: 2px 7px 22px -1px #1e30531c;
overflow: hidden;
transition: transform .6s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow .6s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.abtus .member-card:hover {
transform: translateY(-6px);
box-shadow: 2px 12px 48px -1px #1e30531a
}

.abtus .member-card .img-frame {
border-radius: 0;
border: none !important;
border-bottom: 1.5px solid #A4C1C8 !important
}

.abtus .member-card img {
width: 100%;
height: 240px;
object-fit: cover;
display: block
}

.abtus .member-info {
padding: 24px
}

.abtus .member-info h4 {
font-size: 18px;
font-weight: 700;
color: #1E3053;
line-height: 1.4;
margin-bottom: 6px
}

.abtus .member-info .role-tag {
font-size: 16px;
color: #6A929E;
font-weight: 600;
margin-bottom: 12px
}

.abtus .member-info p {
font-size: 16px;
line-height: 1.6;
color: #3a4f66
}

.abtus .values-strip {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 24px;
padding: 48px 0;
border-top: 1.5px solid #A4C1C8
}

.abtus .value-item {
display: flex;
flex-direction: column;
gap: 12px
}

.abtus .value-item .val-icon {
width: 40px;
height: 40px;
background: #1E3053;
border-radius: 3px;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0
}

.abtus .value-item .val-icon i {
color: #A4C1C8;
font-size: 22px
}

.abtus .value-item h5 {
font-size: 18px;
font-weight: 700;
color: #1E3053;
line-height: 1.4;
margin: 0
}

.abtus .value-item p {
font-size: 16px;
line-height: 1.6;
color: #3a4f66;
margin: 0
}

.abtus .closing-img-row {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 24px;
padding-bottom: 48px
}

.abtus .closing-img-row .img-frame img {
width: 100%;
height: 260px;
object-fit: cover;
display: block;
border-radius: 16px
}

.abtus .closing-img-row .img-caption {
padding: 12px 0 0;
font-size: 16px;
color: #6A929E;
line-height: 1.4
}

@media (max-width: 960px) {
.abtus .identity-block {
grid-template-columns: 1fr;
padding: 48px 24px;
gap: 24px
}

.abtus .identity-imgzone img {
height: 320px
}

.abtus .identity-text {
padding: 0
}

.abtus .identity-text .stat-row {
gap: 24px
}

.abtus .team-inner {
padding: 0 24px
}

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

.abtus .team-grid {
grid-template-columns: repeat(2, 1fr)
}

.abtus .values-strip {
grid-template-columns: repeat(2, 1fr)
}

.abtus .closing-img-row {
grid-template-columns: 1fr
}
}

@media (max-width: 480px) {
.abtus .identity-block {
padding: 48px 12px
}

.abtus .identity-text h1 {
font-size: 28px
}

.abtus .identity-text .stat-row {
flex-direction: column;
gap: 12px
}

.abtus .team-section {
padding: 48px 0 24px
}

.abtus .team-inner {
padding: 0 12px
}

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

.abtus .values-strip {
grid-template-columns: 1fr
}

.abtus .team-intro-text h2 {
font-size: 22px
}
}

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

.successPage .cardWrap {
max-width: 560px;
width: 100%;
background: linear-gradient(353deg, #6A929E18, transparent 70%);
border: 1px solid #A4C1C840;
border-radius: 28px;
padding: 48px;
box-shadow: 2px 7px 22px -1px #1e30531c;
text-align: center
}

.successPage .iconRing {
width: 72px;
height: 72px;
border-radius: 16px;
background: #A4C1C820;
border: 2px solid #6A929E40;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 24px
}

.successPage .iconRing svg {
display: block
}

.successPage .headingStrip {
display: inline-block;
background: #1E305312;
border-radius: 3px;
padding: 6px 12px;
margin-bottom: 24px
}

.successPage .headingStrip h1 {
font-size: 28px;
line-height: 1.2;
color: #1E3053;
margin: 0
}

.successPage .bodyText {
font-size: 18px;
line-height: 1.6;
color: #2c3e50;
margin: 0 0 24px
}

.successPage .subText {
font-size: 16px;
line-height: 1.6;
color: #4a5568;
margin: 0 0 48px
}

.successPage .subText a {
color: #1E3053;
text-decoration: underline;
text-underline-offset: 3px;
transition: color .5s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.successPage .subText a:hover {
color: #6A929E
}

.successPage .btnReturn {
display: inline-block;
position: relative;
overflow: hidden;
background: #1E3053;
color: #fff;
font-size: 16px;
line-height: 1.4;
padding: 12px 48px;
border-radius: 16px;
text-decoration: none;
border: none;
cursor: pointer;
transition: color .6s ease;
box-shadow: 2px 2px 6px -1px #1e30530d
}

.successPage .btnReturn::before {
content: "";
position: absolute;
inset: 0;
background: #6A929E;
transform: translateX(-100%);
transition: transform .6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
border-radius: 16px;
z-index: 0
}

.successPage .btnReturn:hover::before {
transform: translateX(0)
}

.successPage .btnReturn span {
position: relative;
z-index: 1
}

.successPage .dividerLine {
width: 48px;
height: 2px;
background: linear-gradient(353deg, #6A929E, #A4C1C8);
border-radius: 3px;
margin: 48px auto 24px
}

.successPage .contactNote {
font-size: 16px;
line-height: 1.6;
color: #4a5568;
margin: 0
}

.successPage .contactNote a {
color: #1E3053;
text-decoration: none;
padding: 0 6px;
border-radius: 3px;
transition: background .7s ease, color .7s ease
}

.successPage .contactNote a:hover {
background: #A4C1C830;
color: #1E3053
}

@media (max-width: 480px) {
.successPage {
padding: 48px 12px
}

.successPage .cardWrap {
padding: 24px
}

.successPage .headingStrip h1 {
font-size: 22px
}
}