* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
}
p{
	margin: 0px;
	line-height: 1.5;
}
:root {
    --bg: #f6f2e9;
    --surface: #fffaf0;
    --ink: #153d31;
    --muted: #65716a;
    --line: rgba(21, 61, 49, .18);
    --accent: #1f5b47;
    --gold: #c9a936;
    --deep: #08251d;
    --shadow: 0 24px 70px rgba(8, 37, 29, .12);
    --radius: 28px;
    --motion-ease: cubic-bezier(.22,1,.36,1);
    --motion-fast: 220ms;
    --motion-medium: 760ms;
    --motion-slow: 1200ms;
	--motion-progress: 0.668;
}
.header {
    border-bottom: 0;
    padding: 28px 0;
    background: var(--bg);
    box-shadow: none;
    transition: background .28s ease, border-color .28s ease, box-shadow .28s ease;
    position: sticky;
    top: 0;
    z-index: 99;
}
.header-inner {
    min-height: auto;
    height: auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    grid-gap: 40px;
    gap: 40px;
    border: 0;
    border-radius: 0;
    background: var(--bg);
    box-shadow: none;
    padding: 0;
    margin: 0px auto;
}
.header > .container {
    width: min(1180px, calc(100% - 40px));
}
.container {
    width: min(1180px,calc(100% - 40px));
    margin: 0 auto;
}
.header-inner > a:first-child {
    justify-self: start;
}
.brand {
    display: inline-flex;
    align-items: center;
    line-height: 1;
}
.brand-logo {
    display: block;
    height: 46px;
    width: auto;
    max-width: 210px;
    object-fit: contain;
}
.nav {
    display: flex;
    gap: 28px;
    border: 0;
    border-radius: 0;
    background: transparent;
    padding: 0;
    margin: 0;
    justify-self: center;
    box-shadow: none;
}
.drop-label,
.nav,
.nav a {
    align-items: center;
}
.drop-label,
.nav a {
    display: inline-flex;
    border-radius: 999px;
    padding: 12px 4px;
    font-size: 16px;
    line-height: 1;
    font-weight: 800;
    color: var(--deep);
    opacity: .72;
    transition: color .2s ease, opacity .2s ease;
    text-decoration: none;
}
.drop:hover .drop-label, .nav a:hover {
    background: transparent;
    opacity: 1;
    color: var(--deep);
}
.drop {
    position: relative;
    padding: 0;
}
.drop-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    width: 620px;
    transform: translateX(-50%) !important;
    padding: 16px 0 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
    z-index: 60;
    animation: menuReveal .22s ease both;
    color: var(--ink);
}
.drop:hover .drop-menu {
    display: grid;
}
@keyframes menuReveal {
    0% {
        opacity: 0;
        transform: translateY(8px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
.drop-menu > a,
.drop-menu > span {
    position: relative;
}
.drop-menu-head {
    grid-column: 1/-1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
    padding: 0 0 13px;
    margin: 18px 18px 4px;
}
.drop-menu:after {
    top: 16px;
    bottom: 0;
    border-radius: 28px;
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: 0 24px 64px rgba(8, 37, 29, .13);
    z-index: -1;
}
.drop-menu:after,
.drop-menu:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
}
.drop-menu:before {
    top: 0;
    height: 16px;
}
.drop-menu a:first-of-type {
    grid-column: auto;
    margin-top: 0;
}
.drop-menu a {
    display: grid;
    grid-gap: 4px;
    gap: 4px;
    padding: 14px;
    border-radius: 18px;
    margin: 0 8px;
    opacity: 1;
}
.drop-menu a:hover {
    background: var(--bg);
    transform: none;
}
.drop-menu-head strong {
    font-family: Georgia, Times New Roman, serif;
    font-size: 28px;
    line-height: 1;
    letter-spacing: -.06em;
    color: var(--deep);
}
.drop-menu-head em {
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: .18em;
    font-size: 11px;
    font-weight: 800;
    color: var(--muted);
}
.drop-menu a strong {
    font-size: 14px;
    line-height: 1.15;
    color: var(--deep);
}
.drop-menu a span {
    font-size: 13px;
    line-height: 1.25;
    color: var(--muted);
}
.header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: end;
    border-radius: 999px;
    background: var(--deep);
    color: var(--surface) !important;
    font-weight: 800;
    font-size: 16px;
    padding: 16px 30px;
    white-space: nowrap;
    box-shadow: 0 12px 32px rgba(8, 37, 29, .14);
    transition: background .2s ease, transform .2s ease;
    text-decoration: none;
}
.header-cta:hover {
    background: var(--accent);
    transform: translateY(-1px);
}
.mobile-nav {
    display: none;
}
.home-baner {
    position: relative;
    overflow: hidden;
    background: var(--bg);
    color: var(--ink);
    padding: 112px 0 88px;
}
.baner-inner {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    grid-gap: 56px;
    gap: 56px;
    align-items: end;
    position: relative;
}
.top-text {
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: 12px;
    color: var(--muted);
    font-weight: 800;
    margin: 0;
}
.banner-left h1 {
    font-size: clamp(64px, 10vw, 140px);
    line-height: .86;
    letter-spacing: -.08em;
    font-weight: 700;
    margin: 28px 0 0;
}
.banner-left h1 span {
    color: var(--accent);
}
.banner-right p {
    font-size: 26px;
    line-height: 1.2;
    color: var(--muted);
    max-width: 540px;
    margin: 0;
}
.banner-right .banner-btn {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 36px;
    align-items: center;
}
.cta-btn {
    padding: 14px 20px;
    background: var(--accent);
    border: 1px solid var(--accent);
    box-shadow: 0 10px 30px rgba(31, 91, 71, .18);
    transition: transform var(--motion-fast) ease, background var(--motion-fast) ease, border-color var(--motion-fast) ease, color var(--motion-fast) ease, opacity var(--motion-fast) ease, box-shadow var(--motion-fast) ease;
    color: var(--surface) !important;
    font-weight: 800;
    text-decoration: none;
    border-radius: 50px;
}
.banner-right .banner-btn a.how-we {
    transition: transform var(--motion-fast) ease, background var(--motion-fast) ease, border-color var(--motion-fast) ease, color var(--motion-fast) ease, opacity var(--motion-fast) ease, box-shadow var(--motion-fast) ease;
    color: var(--ink);
    box-shadow: none;
    background: transparent;
    border: 1px solid var(--line);
    padding: 14px 20px;
    border-radius: 50px;
    font-weight: 800;
    text-decoration: none;
}
.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(31,91,71,.22);
}
.banner-right .banner-btn a.how-we:hover {
    background: var(--surface);
    border-color: rgba(31,91,71,.28);
    box-shadow: 0 12px 34px rgba(8,37,29,.08);
    transform: translateY(-2px);
}
.baner-inner::after {
    position: absolute;
    content: '';
    right: 0;
    top: -40px;
    width: 520px;
    height: 520px;
    border-radius: 999px;
    opacity: .35;
    pointer-events: none;
    background: radial-gradient(circle, rgba(31, 91, 71, .35) 0 2px, transparent 3px);
    background-size: 18px 18px;
    animation: homeSlowFloat 10s ease-in-out infinite;
}
@keyframes homeSlowFloat {
    0%, 100% {
        transform: translateZ(0) scale(1);
    }
    50% {
        transform: translate3d(-24px,18px,0) scale(1.04);
    }
}
[data-animate=slide] {
    opacity: 0;
    transform: translate3d(0,24px,0);
    transition: opacity var(--motion-medium) var(--motion-ease),transform var(--motion-medium) var(--motion-ease),filter var(--motion-medium) var(--motion-ease);
    transition-delay: calc(var(--motion-index,0) * 70ms);
    will-change: opacity,transform;
}
[data-animate=slide].is-show {
    opacity: 1;
    transform: translateZ(0) scale(1);
    filter: saturate(1);
}
.fade-up {
    animation: homeFadeUp .8s ease both;
}
@keyframes homeFadeUp {
    0% {
        opacity: 0;
        transform: translateY(18px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
.logo-section {
    background: var(--bg);
    padding: 48px 0px;
}
.logo-inner p {
    color: var(--muted);
    margin: 0 0 20px;
}
.logo-slide {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 27.5px 0;
    overflow: hidden;
    white-space: nowrap;
}
.logo-slide-inner {
    gap: 72px;
    min-width: max-content;
    animation: homeMarquee 30s linear infinite;
}
@keyframes homeMarquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-33.333%);
    }
}
.logo-slide-inner, .logo-slide-img {
    display: flex;
    align-items: center;
}
.logo-slide-img {
    width: 220px;
    height: 76px;
    justify-content: center;
    flex: 0 0 auto;
}
.logo-slide-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: .95;
}
.financial-right-col h2 {
    font-family: Georgia,Times New Roman,serif;
    font-size: clamp(48px,7vw,108px);
    line-height: .86;
    letter-spacing: -.08em;
    margin: 20px 0 0;
    color: var(--ink);
    font-weight: bold;
}
.financial-left-col {
    position: relative;
    overflow: hidden;
    min-height: 360px;
    border-radius: 42px;
    background: var(--deep);
}
.financial-content {
    display: grid;
    grid-template-columns: .72fr 1.28fr;
    grid-gap: 48px;
    gap: 48px;
    align-items: end;
}
.financial-section {
    background: var(--bg);
    padding: 82px 0px;
}
.financial-left-col::after {
    position: absolute;
    content: '';
    right: 8%;
    top: 12%;
    width: 520px;
    height: 520px;
    border-radius: 999px;
    opacity: .35;
    pointer-events: none;
    background: radial-gradient(circle, rgba(31, 91, 71, .35) 0 2px, transparent 3px);
    background-size: 18px 18px;
    animation: homeSlowFloat 10s ease-in-out infinite;
    inset: 0;
    margin: auto;
}
.matters-section {
    background: var(--bg);
    padding: 82px 0px;
}
.matters-inner {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    grid-gap: 56px;
    gap: 56px;
}
.matters-left-col h2 {
    font-family: Georgia, Times New Roman, serif;
    font-size: clamp(48px, 7vw, 108px);
    line-height: .86;
    letter-spacing: -.08em;
    margin: 20px 0 0;
    color: var(--ink);
    font-weight: bold;
}
.matters-inner .top-row {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-gap: 32px;
    gap: 32px;
    margin-bottom: 42px;
}
.matters-box, .matters-item {
    border-top: 1px solid var(--line);
    padding-top: 18px;
}
.matters-box h3 {
    display: block;
    font-family: Georgia, Times New Roman, serif;
    font-size: 64px;
    line-height: .94;
    letter-spacing: -.08em;
    color: var(--ink);
    font-weight: bold;
}
.matters-box p, .matters-item  p {
    color: var(--muted);
}
.matters-inner .bottom-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 22px;
    gap: 22px;
}
.matters-item  h3 {
    font-family: Georgia,Times New Roman,serif;
    font-size: 30px;
    line-height: 1;
    letter-spacing: -.05em;
    margin: 0;
    color: var(--ink);
    font-weight: bold;
}
.matters-item p {
    margin: 16px 0px;
    line-height: 1.5;
}
.the-network-section {
    position: relative;
    overflow: hidden;
    min-height: 360px;
    display: flex;
    align-items: center;
    background: var(--deep);
    color: var(--surface);
    padding: 44px 0;
    background-attachment: fixed;
}
.the-network {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: .65fr 1.35fr;
    grid-gap: 48px;
    gap: 48px;
    align-items: center;
}
.the-network-right-col h2 {
    font-family: Georgia, Times New Roman, serif;
    font-size: clamp(34px, 5vw, 72px);
    line-height: .9;
    letter-spacing: -.07em;
    margin: 0;
    max-width: 980px;
    font-weight: bold;
}
.the-network-section:after, .the-network-section:before {
    content: "";
    position: absolute;
    inset: -22%;
    opacity: .42;
    background-image: radial-gradient(circle,rgba(255,250,240,.26) 0 4px,transparent 4.8px);
    background-size: 18px 18px;
    transform: translateY(calc(var(--parallax-y,0px) * .35)) scale(1.04);
    transition: transform .12s linear;
}
.the-network-section:after {
    opacity: .18;
    inset: -28%;
    background-size: 22px 22px;
    transform: translateY(calc(var(--parallax-y,0px) * -.22)) scale(1.14);
}
.the-network .top-text {
    color: hsla(0,0%,100%,.6);
}
.the-network-bg {
    position: absolute;
    inset: 0;
    opacity: .45;
    background: radial-gradient(ellipse at 48% 45%,rgba(255,250,240,.12),transparent 52%);
}
section.our-service-section {
    background: var(--bg);
    color: var(--ink);
    padding: 88px 0px;
}
.our-service {
    display: grid;
    grid-template-columns: .7fr 1.3fr;
    gap: 48px;
}
.our-service-left-col h2 {
    font-family: Georgia, Times New Roman, serif;
    font-size: clamp(48px, 7vw, 108px);
    line-height: .86;
    letter-spacing: -.08em;
    margin: 20px 0 0;
    font-weight: bold;
}
.our-service-right-col {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    position: relative;
    --progress: 0%;
}
.our-service-right-col::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 1px;
    height: 100%;
    background: #0000;
}
.our-service-right-col::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 1px;
    height: var(--progress);
    background: linear-gradient(to bottom, var(--gold), var(--accent));
    transition: height .2s linear;
}
.service-box a {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    gap: 32px;
    align-items: center;
    padding: 28px 0;
    border-bottom: 1px solid var(--line);
    text-decoration: none;
    position: relative;
}
.service-box:last-child a{
    border-bottom: 0;
}
.service-box a:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: linear-gradient(90deg,var(--gold),transparent);
    opacity: 0;
    transform: scaleX(.2);
    transform-origin: left;
    transition: opacity var(--motion-fast) ease,transform var(--motion-fast) ease;
}
.service-box a:hover:after {
    opacity: .85;
    transform: scaleX(1);
}
.service-box a:hover {
    background: var(--surface);
}
.service-box a span {
    font-size: 50px;
    line-height: .9;
    letter-spacing: -.08em;
    color: var(--accent);
    font-family: Georgia, Times New Roman, serif;
}
.service-box .info h3 {
    font-size: 40px;
    line-height: 1;
    letter-spacing: -.06em;
    margin: 0;
    font-family: Georgia, Times New Roman, serif;
    color: var(--ink);
    font-weight: bold;
}
.service-box .info p {
    color: var(--muted);
    margin: 6px 0 0;
}
.service-box a strong {
    color: var(--ink);
}
.service-box a:hover strong {
    transform: translateX(4px);
}
.structure-section {
    padding: 64px 0 88px;
}
.structure-inner {
    position: relative;
    overflow: hidden;
    min-height: 390px;
    border-radius: 46px;
    background: var(--deep);
    color: var(--surface);
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.structure-inner:after {
    content: "";
    position: absolute;
    inset: -30%;
    pointer-events: none;
    background: radial-gradient(circle at 65% 45%,rgba(201,169,54,.16),transparent 42%);
    opacity: 1;
    transform: scale(1);
    transition: opacity 1.2s var(--motion-ease),transform 1.2s var(--motion-ease);
}
.structure-top {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    gap: 32px;
}
.structure-top .top-text {
    color: hsla(0,0%,100%,.6);
    font-size: 12px;
}
.structure-top p {
    max-width: 430px;
    margin: 0;
    color: hsla(0,0%,100%,.7);
    font-size: 20px;
    line-height: 1.35;
}
.structure-bottom {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr auto;
    grid-gap: 32px;
    gap: 32px;
    align-items: end;
}
.structure-bottom h4 {
    font-family: Georgia,Times New Roman,serif;
    font-size: clamp(44px, 7vw, 92px);
    max-width: 880px;
    line-height: .86;
    letter-spacing: -.08em;
    margin: 20px 0 0;
    font-weight: bold;
}
.cta-white {
    background: var(--surface);
    color: var(--accent);
    border-color: var(--surface);
    white-space: nowrap;
    border-radius: 999px;
    font-weight: 800;
    text-decoration: none;
    padding: 14px 20px;
    border: 1px solid var(--accent);
    box-shadow: 0 10px 30px rgba(31, 91, 71, .18);
    transition: transform var(--motion-fast) ease, background var(--motion-fast) ease, border-color var(--motion-fast) ease, color var(--motion-fast) ease, opacity var(--motion-fast) ease, box-shadow var(--motion-fast) ease;
}
.cta-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(31,91,71,.22);
	color: var(--accent);
}
/*************** solutions page css ******************/
.solution-section {
    padding: 96px 0 78px;
    background: var(--bg);
}
.solution-inner {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 64px;
    align-items: end;
}
.solution-left h1 {
    font-size: clamp(58px, 8vw, 118px);
    line-height: .84;
    letter-spacing: -.08em;
    margin-top: 24px;
    font-family: Georgia,Times New Roman,serif;
    color: var(--ink);
    font-weight: bold;
}
.solution-right > p {
    font-size: 26px;
    line-height: 1.18;
    color: var(--muted);
    margin: 0;
}
.solution-right .top-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    border-top: 1px solid var(--line);
    margin-top: 40px;
    padding-top: 24px;
}
.solution-right .top-row .matters-box {
    padding: 0;
    border: none;
}
.solution-right .top-row .matters-box p {
    font-size: 14px;
}
.management-section {
    padding: 76px 0;
    background: var(--bg);
}
.management-inner {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 48px;
    align-items: stretch;
}
.management-left {
    min-height: 540px;
    border-radius: 44px;
    background: var(--deep);
    color: var(--surface);
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.management-left h3 {
    font-family: Georgia, Times New Roman, serif;
    font-size: clamp(48px, 6vw, 88px);
    line-height: .88;
    letter-spacing: -.075em;
    margin: 0;
}
.management-right {
    display: grid;
    align-content: space-between;
}
.management-right p {
    font-size: 26px;
    line-height: 1.2;
    color: var(--muted);
    margin: 0;
    max-width: 700px;
}
.management-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 48px;
    margin-top: 40px;
}
.management-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 0;
}
.management-item .icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: var(--accent);
    display: flex;
    place-items: center;
    justify-content: center;
}
.management-item .icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: var(--accent);
    color: var(--surface);
    display: flex;
    place-items: center;
    justify-content: center;
    font-family: Georgia, Times New Roman, serif;
    font-size: 24px;
    position: relative;
    flex: none;
}
.management-item .icon span {
    font-family: Georgia, Times New Roman, serif !important;
}
.management-item .icon i {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
    right: 10px;
    bottom: 10px;
}
.management-item .text h4 {
    display: block;
    line-height: 1.1;
    color: var(--ink);
    font-size: 16px;
    margin: 0;
}
.management-item .text h6 {
    font-size: 14px;
    color: var(--muted);
    font-weight: normal;
    line-height: 1.5;
    margin: 0;
}
.commercial-section {
    padding: 96px 0;
    background: var(--bg);
}
.commercial-top {
    display: flex;
    justify-content: space-between;
    gap: 32px;
    align-items: end;
    margin-bottom: 40px;
}
.commercial-top h3 {
    max-width: 760px;
    width: 100%;
    margin-top: 14px;
    font-size: clamp(32px, 4vw, 58px);
    line-height: 1;
    font-family: Georgia, Times New Roman, serif;
    letter-spacing: -.05em;
    color: var(--ink);
    font-weight: bold;
}
.commercial-top p {
    max-width: 420px;
    color: var(--muted);
    margin: 0;
    line-height: 1.5;
}
.commercial-bottom .service-box a strong {
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 12px 18px;
}
.commercial-bottom .service-box a:hover strong {
    background: var(--accent);
    color: var(--surface);
    border-color: var(--accent);
}
.solution-cta {
    padding: 86px 0;
    background: var(--bg);
}
.solution-cta-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 32px;
    align-items: end;
    border-top: 1px solid var(--line);
    padding-top: 42px;
}
.solution-cta-left h3 {
    font-family: Georgia, Times New Roman, serif;
    font-size: clamp(44px, 6vw, 82px);
    line-height: .9;
    letter-spacing: -.075em;
    margin: 16px 0 0;
    max-width: 900px;
    color: var(--ink);
    font-weight: bold;
}
/********** footer css **********/
footer.footer {
    padding: 72px 0 15px;
    background: var(--deep);
    color: var(--surface);
}
.footer-inner {
    display: grid;
    grid-template-columns: 1.2fr repeat(3, 1fr);
    gap: 36px;
}
.footer-info img {
    display: block;
    width: 74px;
    height: 74px;
    border-radius: 18px;
    object-fit: contain;
    margin-bottom: 18px;
}
.footer-info p {
    color: hsla(0,0%,100%,.72);
}
.footer-col {
    display: grid;
    gap: 12px;
    align-content: start;
}
.footer-col .title {
    font-size: 16px;
    font-weight: bold;
    margin: 0;
}
.footer-col ul {
    display: flex;
    flex-flow: column;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 12px;
}
.footer-col ul a {
    color: hsla(0,0%,100%,.72);
    text-decoration: none;
    transition: transform var(--motion-fast) ease, background var(--motion-fast) ease, border-color var(--motion-fast) ease, color var(--motion-fast) ease, opacity var(--motion-fast) ease, box-shadow var(--motion-fast) ease;
    display: block;
}
.footer-col ul a:hover {
    opacity: 1;
    color: var(--surface);
    transform: translateX(2px);
}
.footer-col p {
    color: hsla(0,0%,100%,.72);
    margin: 16px 0px;
}
.footer-info ul {
    display: flex;
    flex-flow: column;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 16px 0px 0px;
}
.footer-info ul a {
    display: flex;
    gap: 5px;
    color: hsla(0,0%,100%,.72);
    text-decoration: none;
    font-size: 16px;
}
.footer-info ul a:hover {
    color: #fff;
}
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 15px;
    margin-top: 30px;
    border-top: 1px solid rgb(21 61 49);
}
.footer-bottom p {
    color: hsla(0,0%,100%,.72);
    font-size: 14px;
    margin: 0;
}

/******** sentinel page css ************/
.sentinel-banner {
    padding: 92px 0 82px;
    background: var(--bg);
    color: var(--ink);	
}
.sentinel-inner h1 {
    font-family: Georgia, Times New Roman, serif;
    font-size: clamp(42px,6vw,84px);
    line-height: .95;
    letter-spacing: -.05em;
    max-width: 650px;
    margin: 24px 0 0;
    font-weight: bold;
}
.sentinel-bottom {
    margin-top: 56px;
    display: grid;
    grid-template-columns: .42fr 1fr;
    gap: 48px;
}
.sentinel-bottom p {
    font-size: 20px;
    line-height: 1.35;
    color: var(--muted);
    margin: 0;
}
.sentinel-right {
    position: relative;
    overflow: hidden;
    min-height: 360px;
    border-radius: 36px;
    background: var(--surface);
    border: 1px solid var(--line);
}
.sentinel-right span {
    position: absolute;
    left: 32px;
    top: 32px;
    text-transform: uppercase;
    letter-spacing: .16em;
    font-size: 12px;
    font-weight: 800;
    color: rgba(21, 61, 49, .46);
}
.sentinel-right i {
    position: absolute;
    right: 32px;
    bottom: 32px;
    width: 112px;
    height: 112px;
    border-radius: 999px;
    background: rgba(201, 169, 54, .7);
}
.sentinel-right::after {
    position: absolute;
    content: '';
    inset: 0;
    opacity: .5;
    background-image: radial-gradient(circle, rgba(201, 169, 54, .5) 0 2px, transparent 2.8px);
    background-size: 18px 18px;
}
.sentinel-workflow {
    padding: 84px 0;
    background: var(--bg);
    color: var(--ink);
}
.workflow-top-row {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 48px;
    align-items: end;
    margin-bottom: 48px;
}
.workflow-top-row h3 {
    font-family: Georgia, Times New Roman, serif;
    font-size: clamp(44px, 6vw, 72px);
    line-height: .92;
    letter-spacing: -.07em;
    margin: 16px 0 0;
    font-weight: bold;
}
.workflow-top-row > p {
    font-size: 24px;
    line-height: 1.2;
    color: var(--muted);
    margin: 0;
}
.workflow-bottom-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.workflow-card {
    min-height: 220px;
    border-radius: 30px;
    border: 1px solid var(--line);
    background: var(--surface);
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform var(--motion-fast) ease, background var(--motion-fast) ease, border-color var(--motion-fast) ease, color var(--motion-fast) ease, opacity var(--motion-fast) ease, box-shadow var(--motion-fast) ease;
    position: relative;
    overflow: hidden;
}
.workflow-card::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
    opacity: 0;
    transform: scaleX(.2);
    transform-origin: left;
    transition: opacity var(--motion-fast) ease, transform var(--motion-fast) ease;
}
.workflow-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 55px rgba(8,37,29,.1);
}
.workflow-card:hover:after {
    opacity: .85;
    transform: scaleX(1);
}
.workflow-card h3 {
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: 12px;
    font-weight: 800;
    color: var(--muted);
}
.workflow-card h5 {
    font-family: Georgia, Times New Roman, serif;
    font-size: 38px;
    line-height: 1;
    letter-spacing: -.06em;
    margin: 0;
    font-weight: bold;
}
.workflow-card p {
    color: var(--muted);
    margin: 0;
}
.workflow-bottom-row .workflow-card:nth-of-type(2) {
    background: var(--deep);
    color: var(--surface);
    border-color: var(--deep);
}
.workflow-bottom-row .workflow-card:nth-of-type(2) p {
    color: hsla(0,0%,100%,.65);
}
.precision-section {
    padding: 84px 0;
    background: var(--bg);
    color: var(--ink);
}
.precision-top {
    display: grid;
    grid-template-columns: 1fr .75fr;
    gap: 48px;
    align-items: end;
    margin-bottom: 48px;
}
.precision-top h3 {
    font-family: Georgia, Times New Roman, serif;
    font-size: clamp(44px, 6vw, 72px);
    line-height: .92;
    letter-spacing: -.07em;
    margin: 16px 0 0;
    font-weight: bold;
}
.precision-top p {
    font-size: 24px;
    line-height: 1.2;
    color: var(--muted);
    margin: 0;
}
.precision-bottom {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    position: relative;
}
.precision-bottom::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 2px;
    width: 100%;
    background: linear-gradient(90deg, var(--gold), transparent);
    transform: scaleX(var(--motion-progress, 0));
    transform-origin: left;
    opacity: .7;
    pointer-events: none;
}
.precision-item {
    padding: 28px;
    border-right: 1px solid var(--line);
}
.precision-item h3 {
    font-family: Georgia, Times New Roman, serif;
    font-size: 30px;
    line-height: 1;
    letter-spacing: -.05em;
    margin: 0;
    font-weight: bold;
}
.precision-item p {
    color: var(--muted);
    margin: 16px 0px;
}
.precision-item:last-child {
    border-right: 0;
}
.coverage-section {
    padding: 84px 0;
    background: var(--bg);
    color: var(--ink);
}
.coverage-inner {
    display: grid;
    grid-template-columns: .75fr 1.25fr;
    gap: 48px;
}
.coverage-left h3 {
    font-family: Georgia, Times New Roman, serif;
    font-size: clamp(44px, 6vw, 72px);
    line-height: .92;
    letter-spacing: -.07em;
    margin: 16px 0 0;
    font-weight: bold;
}
.coverage-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 48px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 16px 0;
    height: 100%;
}
.coverage-item {
    padding: 20px 0px;
    border-bottom: 1px solid var(--line);
}
.coverage-item h5 {
    font-size: 20px;
    color: var(--ink);
    font-weight: 700;
    margin: 0;
}
.sentinel-cta-section {
    padding: 64px 0 88px;
    background: var(--bg);
}
.sentinel-cta-inner {
    position: relative;
    overflow: hidden;
    min-height: 340px;
    border-radius: 46px;
    background: var(--deep);
    color: var(--surface);
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.sentinel-cta-inner:before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .25;
    background-image: radial-gradient(circle,rgba(255,250,240,.3) 0 2px,transparent 2.8px);
    background-size: 20px 20px;
}
.sentinel-cta-inner:after{
    content: "";
    position: absolute;
    inset: -30%;
    pointer-events: none;
    background: radial-gradient(circle at 65% 45%,rgba(201,169,54,.16),transparent 42%);
    opacity: 0;
    transform: scale(.9);
    transition: opacity 1.2s var(--motion-ease),transform 1.2s var(--motion-ease);
	opacity: 1;
    transform: scale(1);
}
.sentinel-cta-bottom {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 32px;
    align-items: end;
    position: relative;
    z-index: 1;
}
.sentinel-cta-bottom h3 {
    font-family: Georgia, Times New Roman, serif;
    font-size: clamp(44px, 6vw, 72px);
    line-height: .92;
    letter-spacing: -.07em;
    margin: 16px 0 0;
    font-weight: bold;
}
.sentinel-cta-inner p.top-text {
    color: hsla(0,0%,100%,.6);
}

/************ we work page **************/
.we-work-banner {
    background: var(--deep);
    padding: 80px 0px;
}
.we-work-img img {
    width: 100%;
    border-radius: 25px;
    height: 450px;
    object-fit: cover;
}
.we-work-section {
    background: var(--bg);
    color: var(--ink);
    padding: 56px 0;
}
.we-work {
    margin: 0 auto;
    border-radius: 46px;
    background: var(--deep);
    color: var(--surface);
    min-height: 620px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.we-work-top {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    gap: 32px;
}
.we-work-top p {
    max-width: 430px;
    margin: 0;
    color: hsla(0, 0%, 100%, .7);
    font-size: 20px;
    line-height: 1.35;
}
.we-work h1 {
    position: relative;
    z-index: 1;
    font-family: Georgia, Times New Roman, serif;
    font-size: clamp(62px, 10vw, 132px);
    line-height: .82;
    letter-spacing: -.085em;
    max-width: 1000px;
    margin: 0;
    font-weight: bold;
}
.we-work::after {
    position: absolute;
    content: '';
    inset: 0;
    opacity: .36;
    background-image: radial-gradient(circle, rgba(255, 250, 240, .28) 0 2px, transparent 2.8px);
    background-size: 19px 19px;
    pointer-events: none;
}
.process-section {
    background: var(--bg);
    color: var(--ink);
    padding: 80px 0;
}
.process-inner {
    display: grid;
    grid-template-columns: .75fr 1.25fr;
    gap: 56px;
}
.process-left h3 {
    font-family: Georgia, Times New Roman, serif;
    line-height: .86;
    letter-spacing: -.08em;
    margin: 0;
    font-size: clamp(50px, 7vw, 96px);
    margin-top: 20px;
    font-weight: bold;
}
.process-left p {
    font-size: 20px;
    color: var(--muted);
    line-height: 1.35;
    margin-top: 28px;
    max-width: 420px;
}
.process-items {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.process-item {
    display: grid;
    grid-template-columns: 90px .55fr 1fr;
    gap: 32px;
    padding: 32px 0;
    border-bottom: 1px solid var(--line);
    align-items: start;
}
.process-item span {
    font-family: Georgia, Times New Roman, serif;
    font-size: 60px;
    line-height: .88;
    letter-spacing: -.08em;
    color: rgba(21, 61, 49, .35);
}
.process-item .process-info h3 {
    font-family: Georgia, Times New Roman, serif;
    font-size: 50px;
    line-height: .9;
    letter-spacing: -.065em;
    margin: 0;
    font-weight: bold;
}
.process-item .process-info p {
    display: block;
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: 12px;
    color: var(--gold);
    margin-top: 14px;
    font-weight: bold;
}
.process-item > p {
    font-size: 20px;
    line-height: 1.3;
    color: var(--muted);
    margin: 0;
}
.process-item:last-child {
    border-bottom: 0;
}
.process-left {
    position: sticky;
    top: 104px;
    height: max-content;
}
.we-work-cta {
    background: var(--deep);
    color: var(--surface);
    padding: 80px 0px;
}
.work-cta {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 32px;
    align-items: end;
}
.work-cta h3 {
    font-family: Georgia, Times New Roman, serif;
    line-height: .86;
    letter-spacing: -.08em;
    margin: 0;
    font-size: clamp(44px, 6vw, 82px);
    margin-top: 16px;
    max-width: 860px;
    font-weight: bold;
}

/*************** about us page css ****************/
.aboutus-section {
    padding: 86px 0 64px;
    background: var(--bg);
}
.about-us {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 54px;
    align-items: end;
}
.about-us-in h1 {
    font-family: Georgia, Times New Roman, serif;
    margin: 0;
    letter-spacing: -.05em;
    font-size: clamp(42px, 6vw, 84px);
    line-height: .95;
    font-weight: bold;
    color: var(--ink);
}
.about-us-in p {
    font-size: clamp(18px, 2vw, 22px);
    max-width: 780px;
    color: var(--muted);
    margin: 16px 0px;
}
.about-us-in a.cta-btn {
    display: block;
    width: max-content;
}
.about-us-in {
    display: grid;
    gap: 26px;
}
.aboutus-items {
    padding: 92px 0;
    background: var(--bg);
}
.about-lists {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(3, 1fr);
}
.about-list {
    transition: transform var(--motion-fast) ease, background var(--motion-fast) ease, border-color var(--motion-fast) ease, color var(--motion-fast) ease, opacity var(--motion-fast) ease, box-shadow var(--motion-fast) ease;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 26px;
    box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .5);
}
.about-list h3 {
    font-family: Georgia, Times New Roman, serif;
    margin: 0;
    letter-spacing: -.05em;
    font-size: 26px;
    line-height: 1.06;
    color: var(--ink);
    font-weight: bold;
}
.about-list p {
    color: var(--muted);
    font-size: 14px;
    margin-top: 16px;
}
.about-list:hover{
    transform: translateY(-4px);
    box-shadow: 0 18px 55px rgba(8,37,29,.1);
}
.faq-section, .about-cta {
    padding: 56px 0;
    background: var(--bg);
}
.faq-items details {
    border-top: 1px solid var(--line);
    padding: 20px 0;
}
.faq-items summary {
    cursor: pointer;
    font-weight: 800;
    font-size: 18px;
    color: var(--ink);
}
.faq-items details p {
    color: var(--ink);
    margin: 16px 0px;
}
.about-step {
    background: var(--deep);
    color: var(--surface);
    border-radius: 38px;
    padding: 42px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    align-items: center;
}
.about-step-left h3 {
    font-family: Georgia, Times New Roman, serif;
    margin: 0;
    letter-spacing: -.05em;
    font-size: clamp(32px, 4vw, 58px);
    line-height: 1;
    font-weight: bold;
}
.about-step-left p {
    color: hsla(0,0%,100%,.72);
    font-size: clamp(18px, 2vw, 22px);
    max-width: 780px;
    margin: 16px 0px 0px;
}

/*********** news banner ***********/
.news-banner .top-text, .subscribe-section .top-text, .news-invess .top-text{
    font-size: 14px;
    font-weight: 500;
}
.news-banner {
    padding: 86px 0 64px;
    background: var(--bg);
}
.news-inner {
    display: grid;
    grid-template-columns: 2fr .5fr;
    gap: 54px;
    align-items: end;
}
.news-inner-in {
    display: grid;
    gap: 26px;
}
.news-inner-in h1 {
    font-family: Georgia, Times New Roman, serif;
    margin: 0;
    letter-spacing: -.05em;
    font-size: clamp(42px, 6vw, 84px);
    line-height: .95;
    font-weight: bold;
    color: var(--ink);
}
.news-inner-in p {
    font-size: clamp(18px, 2vw, 22px);
    max-width: 780px;
    color: var(--muted);
    margin: 16px 0px;
}
.subscribe-section {
    padding: 56px 0px;
    background: var(--bg);
}
.subscribe-inner {
    display: grid;
    grid-template-columns: .8fr 1.5fr;
    gap: 54px;
    padding-top: 56px;
    align-items: self-start;
    border-top: 1px solid #c9a936;
}
.subscribe-left-in {
    background: var(--deep);
    padding: 30px;
    border-radius: 20px;
    display: grid;
    gap: 16px;
}
.subscribe-left-in svg {
    width: 25px;
    height: 25px;
}
.subscribe-left-in path {
    color: #c9a936;
}
.subscribe-left-in h4 {
    font-family: Georgia, Times New Roman, serif;
    margin: 0;
    letter-spacing: -.05em;
    font-size: 30px;
    line-height: 1.3;
    color: var(--surface);
}
.subscribe-left-in h6 {
    color: hsla(0,0%,100%,.72);
    margin: 0;
}
.subscribe-left-in p {
    color: hsla(0,0%,100%,.72);
    font-size: 14px;
    line-height: 1.3;
}
.subscribe-right {
    display: grid;
    gap: 26px;
}
.subscribe-items {
    display: grid;
    gap: 26px;
}
.subscribe-item a {
    background: #fff;
    padding: 30px;
    display: grid;
    gap: 16px;
    border-radius: 20px;
    border: 1px solid #c9a9366b;
}
.subscribe-item a .top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.subscribe-item a .top span {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--muted);
}
.subscribe-item a .top span svg, .subscribe-item a .top p i {
    color: #c9a936;
}
.subscribe-item a .top p {
    margin: 0;
}
.subscribe-item a h3 {
    font-family: Georgia, Times New Roman, serif;
    margin: 0;
    letter-spacing: -.05em;
    font-size: 30px;
    line-height: 1.3;
    color: var(--deep);
}
.subscribe-item a p {
    color: var(--muted);
    margin: 0;
}
.subscribe-form {
    display: flex;
    flex-flow: column;
    gap: 15px;
    margin-top: 20px;
}
.subscribe-form p {
    margin: 0;
    position: relative;
}
.subscribe-form .form-inputs input {
    border: 1px solid hsla(0,0%,100%,.72);
    border-radius: 10px;
    color: #fff;
    outline: none;
    height: 45px;
    background: hsl(0deg 0% 100% / 18%);
}
.subscribe-form .subscribe {
    height: 45px;
    background: #c9a936 !important;
    border: none;
    border-radius: 10px;
    color: var(--deep) !important;
    font-size: 16px;
    width: 100%;
}
.subscribe-form .form-inputs input::placeholder {
    color: #ffffff69;
}
.subscribe-form p .wpcf7-spinner {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}
.subscribe-left-in .wpcf7-response-output {
    color: #fff;
}
.subscribe-img-box {
    margin-top: 26px;
    border: 1px solid #65716a5e;
    padding: 20px;
    border-radius: 15px;
}
.subscribe-img-box img {
    width: 100%;
    border-radius: 10px;
}
.news-invess-section {
    padding: 56px 0px;
    background: var(--bg);
}
.news-invess > h3 {
    font-family: Georgia, Times New Roman, serif;
    margin: 0;
    letter-spacing: -.05em;
    font-size: 50px;
    line-height: .95;
    font-weight: bold;
    color: var(--ink);
    margin-top: 25px;
}
.invess-item {
    display: flex;
    padding: 25px 0px;
    border-bottom: 1px solid #65716a5e;
}
.invess-item div:first-child {
    max-width: 130px;
    width: 100%;
}
.invess-item span, .invess-item:hover h3 {
    color: #c9a936;
}
.invess-item  h3 {
    font-family: Georgia, Times New Roman, serif;
    margin: 0;
    letter-spacing: -.05em;
    font-size: 30px;
    line-height: 1.3;
    color: var(--deep);
}
.invess-item p {
    color: var(--muted);
    margin: 0;
}
.invess-item div:last-child {
    display: grid;
    gap: 10px;
}
.invess-items {
    margin-top: 50px;
}












/********** media query **********/


@media (max-width: 960px) {
    .nav, .header-cta {
        display: none !important;
    }
    .mobile-nav {
        display: block;
        position: relative;
    }
    .mobile-nav>summary {
        list-style: none;
        cursor: pointer;
        border-radius: 999px;
        background: var(--deep);
        color: var(--surface);
        padding: 11px 18px;
        font-size: 14px;
        font-weight: 800;
    }
    .mobile-nav-panel {
        position: absolute;
        right: 0;
        top: calc(100% + 12px);
        width: min(86vw, 380px);
        max-height: calc(100vh - 96px);
        overflow: auto;
        background: var(--surface);
        border: 1px solid var(--line);
        border-radius: 28px;
        box-shadow: 0 24px 64px rgba(8, 37, 29, 0.16);
        padding: 18px;
        display: grid;
        grid-gap: 8px;
        gap: 8px;
    }
    .mobile-nav-panel>a,
    .mobile-solutions>summary {
        border-radius: 18px;
        padding: 14px;
        font-size: 17px;
        font-weight: 800;
        color: var(--deep);
    }
    .mobile-solutions,
    .mobile-solutions>div {
        display: grid;
        grid-gap: 8px;
        gap: 8px;
    }
    .mobile-nav-panel>a,
    .mobile-solutions>summary {
        border-radius: 18px;
        padding: 14px;
        font-size: 17px;
        font-weight: 800;
        color: var(--deep);
        text-decoration: none;
    }
    .mobile-solutions>div {
        padding: 0 0 6px;
    }
    .mobile-solutions a {
        display: grid;
        grid-gap: 3px;
        gap: 3px;
        border-radius: 18px;
        padding: 13px 14px;
        background: var(--bg);
        color: var(--deep);
        text-decoration: none;
    }
    .mobile-solutions a strong {
        font-size: 14px;
        line-height: 1.2;
    }
    .mobile-solutions a span {
        font-size: 13px;
        line-height: 1.25;
        color: var(--muted);
    }
    .header-inner {
        display: flex;
        min-height: 60px;
        gap: 16px;
        justify-content: space-between;
        align-items: center;
    }
    .header {
        padding: 14px 0;
        position: -webkit-sticky;
        position: sticky;
        top: 0;
        z-index: 80;
    }
    .header>.container {
        width: min(100% - 28px, 1180px);
    }
    .mobile-nav-panel>a:hover,
    .mobile-solutions>summary:hover {
        background: var(--bg);
    }
    .mobile-contact {
        background: var(--deep);
        color: var(--surface) !important;
        text-align: center;
        border-radius: 999px !important;
        margin-top: 8px;
    }
    .mobile-nav-panel>a:hover, .mobile-solutions>summary:hover {
        background: var(--bg)!important;
        color: var(--deep)!important;
    }
.footer-inner {
    grid-template-columns: 1fr;
}
.footer-bottom {
    flex-flow: column;
    justify-content: center;
}
.footer-bottom p {
    margin: 0;
    text-align: center;
}
.baner-inner {
    grid-template-columns: 1fr;
}
.home-baner {
    padding: 80px 0 64px;
}
.logo-slide-inner {
    gap: 36px;
}
.financial-content, .matters-inner, .matters-inner .top-row, .matters-inner .bottom-row,.the-network, .our-service, .structure-bottom, .service-box a, .sentinel-bottom, .workflow-top-row, .workflow-bottom-row, .precision-top, .precision-bottom, .coverage-inner, .sentinel-cta-bottom, .solution-inner, .solution-right .top-row, .management-inner, .solution-cta-inner, .process-inner, .work-cta, .about-lists, .about-us, .subscribe-inner, .news-inner{
    grid-template-columns: 1fr;
}
.precision-section, .sentinel-workflow, .sentinel-bannerm,.solution-section, .management-section, .commercial-section, .solution-cta, .we-work-section, .we-work-cta, .faq-section, .about-cta, .aboutus-items, .news-banner {
    padding: 60px 0;
}
.structure-top, .commercial-top, .we-work-top, .invess-item  {
    flex-flow: column;
}
.service-box .info h3 {
    font-size: 30px;
}
.service-box a {
    gap: 15px;
}
.precision-item {
    border-right: 0px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.precision-item:last-child {
    border-bottom: 0;
}
.commercial-bottom .service-box a strong {
    width: max-content;
}
.management-items {
    gap: 8px 25px;
}
.management-item {
    gap: 10px;
}
.management-right p {
    font-size: 18px;
}
.management-left {
    min-height: 450px;
    padding: 25px;
}
.we-work-img img {
    height: 300px;
}
.we-work h1 {
    font-size: 45px;
}
.process-left {
    position: unset;
}
.process-item {
    grid-template-columns: 1fr;
    gap: 12px;
}
.cta-white {
    white-space: pre-wrap;
	text-align: center;
}
.we-work {
    min-height: 550px;
}
.about-us-in a.cta-btn, .cta-btn {
    width: auto;
	text-align: center;
	display: block;
}
.about-step {
    padding: 25px;
    grid-template-columns: 1fr;
}
.subscribe-item a {
    padding: 20px;
}
.subscribe-item a h3, .invess-item h3 {
    font-size: 25px;
}
.news-invess > h3 {
    font-size: 40px;
}



}


@media (max-width: 374px){
.management-items {
    grid-template-columns: 1fr;
    gap: 8px 25px;
}
.we-work h1 {
    font-size: 35px;
}


}