 *,
 *::before,
 *::after {
     box-sizing: border-box;
     margin: 0;
     padding: 0
 }
 
 :root {
     --teal: #0D6B6E;
     --tmd: #12868A;
     --tlt: #E8F5F5;
     --tdk: #095456;
     --grn: #3CC47C;
     --glt: #E8F9F1;
     --ink: #1A2B2B;
     --mut: #4A6060;
     --mlt: #8AABAB;
     --brd: #D0E4E4;
     --crm: #F5F9F8;
     --wht: #FFFFFF;
     --nh: 68px
 }
 
 html {
     scroll-behavior: smooth
 }
 
 body {
     font-family: "Nunito Sans", sans-serif;
     background: var(--wht);
     color: var(--ink);
     line-height: 1.6;
     overflow-x: hidden
 }
 
 h1 {
     font-size: clamp(1.9rem, 4vw, 3.2rem);
     font-weight: 800;
     line-height: 1.12
 }
 
 h2 {
     font-size: clamp(1.5rem, 2.6vw, 2.1rem);
     font-weight: 800;
     line-height: 1.2
 }
 
 h3 {
     font-size: 1rem;
     font-weight: 700
 }
 
 p {
     line-height: 1.75;
     color: var(--mut);
     font-size: .93rem
 }
 
 a {
     color: inherit;
     text-decoration: none
 }
 
 .lbl {
     font-size: .65rem;
     font-weight: 800;
     letter-spacing: .15em;
     text-transform: uppercase;
     color: var(--grn);
     display: block;
     margin-bottom: .55rem
 }
 
 .bar {
     width: 32px;
     height: 3px;
     background: var(--grn);
     border-radius: 2px;
     margin: 1rem 0 1.3rem
 }
 
 section {
     padding: 88px 5%
 }
 
 .inner {
     max-width: 1160px;
     margin: 0 auto
 }
 
 .rev {
/*      opacity: 0; */
     transform: translateY(20px);
     transition: opacity .55s ease, transform .55s ease
 }
 
 .rev.on {
     opacity: 1;
     transform: none
 }
 
 .d1 {
     transition-delay: .08s
 }
 
 .d2 {
     transition-delay: .16s
 }
 
 .d3 {
     transition-delay: .24s
 }
 /* SEARCH */
 
 .sb2 {
     background: none;
     border: none;
     cursor: pointer;
     padding: 6px 8px;
     display: flex;
     align-items: center;
     color: var(--mut);
     transition: color .2s
 }
 
 .sb2:hover {
     color: var(--teal)
 }
 
 .sb2 svg {
     width: 17px;
     height: 17px;
     stroke: currentColor;
     fill: none;
     stroke-width: 2
 }
 
 .sov {
     position: fixed;
     inset: 0;
     z-index: 999;
     background: rgba(10, 35, 35, .78);
     backdrop-filter: blur(8px);
     display: none;
     align-items: flex-start;
     justify-content: center;
     padding-top: 90px
 }
 
 .sov.open {
     display: flex
 }
 
 .sbox {
     background: white;
     border-radius: 14px;
     width: 100%;
     max-width: 660px;
     margin: 0 18px;
     box-shadow: 0 20px 60px rgba(0, 0, 0, .3);
     overflow: hidden
 }
 
 .srow {
     display: flex;
     align-items: center;
     padding: 1.1rem 1.4rem;
     gap: 12px;
     border-bottom: 1px solid var(--brd)
 }
 
 .srow>svg {
     width: 18px;
     height: 18px;
     stroke: var(--mlt);
     fill: none;
     stroke-width: 2;
     flex-shrink: 0
 }
 
 #sinp {
     flex: 1;
     border: none;
     outline: none;
     font-family: "Nunito Sans", sans-serif;
     font-size: 1rem;
     font-weight: 600;
     color: var(--ink);
     background: transparent
 }
 
 #sinp::placeholder {
     color: var(--mlt);
     font-weight: 400
 }
 
 .scl {
     background: none;
     border: none;
     cursor: pointer;
     color: var(--mut);
     width: 26px;
     height: 26px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: .9rem;
     transition: background .2s;
     flex-shrink: 0
 }
 
 .scl:hover {
     background: var(--tlt);
     color: var(--teal)
 }
 
 #sres {
     max-height: 440px;
     overflow-y: auto;
     padding: .4rem 0
 }
 
 .se {
     padding: 1.75rem 1.4rem;
     text-align: center;
     color: var(--mut);
     font-size: .88rem
 }
 
 .sit {
     display: block;
     padding: .8rem 1.4rem;
     border-bottom: 1px solid var(--brd);
     transition: background .13s;
     cursor: pointer
 }
 
 .sit:last-child {
     border-bottom: none
 }
 
 .sit:hover {
     background: var(--crm)
 }
 
 .stag {
     font-size: .62rem;
     font-weight: 800;
     text-transform: uppercase;
     letter-spacing: .1em;
     color: var(--grn);
     margin-bottom: 2px
 }
 
 .sttl {
     font-size: .92rem;
     font-weight: 700;
     color: var(--teal);
     margin-bottom: 2px
 }
 
 .ssnp {
     font-size: .79rem;
     color: var(--mut);
     line-height: 1.45
 }
 
 .shl {
     background: #D2FFE8;
     border-radius: 2px;
     font-weight: 700;
     color: var(--tdk);
     padding: 0 2px
 }
 
 .shnt {
     padding: .55rem 1.4rem;
     font-size: .7rem;
     color: var(--mlt);
     border-top: 1px solid var(--brd);
     display: flex;
     justify-content: space-between
 }
 
 kbd {
     background: var(--crm);
     border: 1px solid var(--brd);
     border-radius: 3px;
     padding: 1px 5px;
     font-size: .66rem
 }
 /* NAV */
 
 nav {
     position: fixed;
     top: 0;
     left: 0;
     right: 0;
     z-index: 200;
     height: var(--nh);
     background: var(--wht);
     border-bottom: 1px solid var(--brd);
     display: flex;
     align-items: center;
     padding: 0 5%;
     justify-content: space-between;
     transition: box-shadow .3s
 }
 
 nav.sc {
     box-shadow: 0 2px 14px rgba(13, 107, 110, .09)
 }
 
 .nlinks {
     display: flex;
     gap: 1.5rem;
     align-items: center
 }
 
 .nlinks a {
     font-size: .85rem;
     font-weight: 600;
     color: var(--mut);
     transition: color .2s
 }
 
 .nlinks a:hover {
     color: var(--teal)
 }
 
 .ncta {
     background: var(--teal)!important;
     color: white!important;
     padding: 8px 20px;
     border-radius: 6px;
     font-size: .83rem;
     font-weight: 700;
     transition: all .2s
 }
 
 .ncta:hover {
     background: var(--tmd)!important;
     transform: translateY(-1px)
 }
 /* HERO */
 
 #hero {
     min-height: 100vh;
     padding-top: var(--nh);
     display: grid;
     grid-template-columns: 56% 44%;
     overflow: hidden
 }
 
 .hl {
     display: flex;
     flex-direction: column;
     justify-content: center;
     padding: 72px 6% 72px 5%;
     background: var(--wht)
 }
 
 .hr2 {
     position: relative;
     overflow: hidden;
     background: linear-gradient(145deg, var(--tdk) 0%, var(--teal) 45%, #1E9B6E 100%)
 }
 
 .heye {
     display: inline-flex;
     align-items: center;
     gap: 7px;
     background: var(--glt);
     color: var(--teal);
     padding: 5px 13px;
     border-radius: 100px;
     font-size: .68rem;
     font-weight: 800;
     letter-spacing: .12em;
     text-transform: uppercase;
     margin-bottom: 1.4rem;
     width: fit-content
 }
 
 .heye::before {
     content: "";
     width: 5px;
     height: 5px;
     border-radius: 50%;
     background: var(--grn);
     flex-shrink: 0
 }
 
 .hl h1 {
     color: var(--ink);
     margin-bottom: 1.2rem
 }
 
 .hl h1 span {
     color: var(--teal)
 }
 
 .htag {
     display: inline-flex;
     align-items: center;
     gap: 7px;
     border: 1.5px solid var(--brd);
     border-radius: 6px;
     padding: 7px 14px;
     font-size: .79rem;
     color: var(--mut);
     font-weight: 600;
     margin-bottom: 1.8rem;
     width: fit-content
 }
 
 .htag svg {
     width: 14px;
     height: 14px;
     stroke: var(--teal);
     fill: none;
     stroke-width: 2
 }
 
 .hsub {
     font-size: .97rem;
     color: var(--mut);
     max-width: 480px;
     margin-bottom: 1.8rem;
     line-height: 1.78
 }
 
 .hact {
     display: flex;
     gap: 11px;
     flex-wrap: wrap
 }
 
 .bp {
     background: var(--teal);
     color: white;
     padding: 12px 26px;
     border-radius: 6px;
     font-size: .9rem;
     font-weight: 700;
     transition: all .2s;
     display: inline-block
 }
 
 .bp:hover {
     background: var(--tmd);
     transform: translateY(-2px);
     box-shadow: 0 8px 22px rgba(13, 107, 110, .28)
 }
 
 .bo {
     border: 2px solid var(--teal);
     color: var(--teal);
     padding: 10px 24px;
     border-radius: 6px;
     font-size: .9rem;
     font-weight: 700;
     transition: all .2s;
     display: inline-block
 }
 
 .bo:hover {
     background: var(--teal);
     color: white
 }
 
 .hdec {
     position: absolute;
     inset: 0;
     display: flex;
     align-items: center;
     justify-content: center;
     opacity: .11
 }
 
 .hdec svg {
     width: 80%;
     height: 80%
 }
 /* ABOUT */
 
 #about {
     background: var(--wht);
     padding: 88px 5%
 }
 
 .awrap {
     display: grid;
     grid-template-columns: 1fr 1.1fr;
     gap: 5rem;
     align-items: center;
     max-width: 1160px;
     margin: 0 auto
 }
 
 .aimgsl {
     position: relative
 }
 
 .aimgbx {
     width: 100%;
     aspect-ratio: 3/4;
     border-radius: 16px;
     overflow: hidden;
     background: linear-gradient(150deg, var(--tdk) 0%, var(--teal) 55%, var(--grn) 100%);
     display: flex;
     align-items: center;
     justify-content: center
 }
 
 .aimgbx .phtxt {
     color: rgba(255, 255, 255, .25);
     font-size: .73rem;
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: .1em;
     text-align: center;
     padding: 1rem
 }
 
 .ageo {
     position: absolute;
     top: -18px;
     right: -18px;
     background: var(--grn);
     color: white;
     padding: 1.1rem 1.4rem;
     border-radius: 10px;
     text-align: center
 }
 
 .ageo .gn {
     font-size: 1.9rem;
     font-weight: 800;
     line-height: 1
 }
 
 .ageo .gl {
     font-size: .68rem;
     opacity: .88;
     margin-top: 3px
 }
 
 .ccards {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 1rem;
     margin-top: 1.75rem
 }
 
 .cc {
     background: var(--crm);
     border: 1px solid var(--brd);
     border-radius: 10px;
     padding: 1.4rem 1.25rem;
     transition: border-color .2s, transform .2s
 }
 
 .cc:hover {
     border-color: var(--teal);
     transform: translateY(-3px)
 }
 
 .ccic {
     width: 40px;
     height: 40px;
     border-radius: 8px;
     background: var(--teal);
     display: flex;
     align-items: center;
     justify-content: center;
     margin-bottom: .85rem
 }
 
 .ccic svg {
     width: 20px;
     height: 20px;
     stroke: white;
     fill: none;
     stroke-width: 1.8
 }
 
 .cc h3 {
     font-size: .86rem;
     color: var(--teal);
     margin-bottom: .25rem;
     font-weight: 800
 }
 
 .cc p {
     font-size: .78rem;
     line-height: 1.6
 }
 /* STATS */
 
 #stats {
     background: var(--teal);
     padding: 62px 5%
 }
 
 .ss {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     max-width: 1160px;
     margin: 0 auto
 }
 
 .ssb {
     padding: 1.75rem 1.25rem;
     text-align: center;
     position: relative
 }
 
 .ssb+.ssb::before {
     content: "";
     position: absolute;
     left: 0;
     top: 22%;
     bottom: 22%;
     width: 1px;
     background: rgba(255, 255, 255, .14)
 }
 
 .ssb .n {
     font-size: 2.6rem;
     font-weight: 800;
     color: var(--grn);
     display: block;
     line-height: 1;
     margin-bottom: .35rem
 }
 
 .ssb .l {
     font-size: .8rem;
     color: rgba(255, 255, 255, .62)
 }
 /* APPROACH */
 
 #approach {
     background: var(--crm)
 }
 
 .apg {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 4rem;
     align-items: start
 }
 
 .pll {
     display: grid;
     gap: .85rem;
     margin-top: 1.6rem
 }
 
 .pl {
     background: white;
     border: 1px solid var(--brd);
     border-radius: 10px;
     padding: 1.25rem;
     display: flex;
     gap: .85rem;
     align-items: flex-start;
     transition: border-color .2s
 }
 
 .pl:hover {
     border-color: var(--teal)
 }
 
 .plic {
     width: 36px;
     height: 36px;
     border-radius: 7px;
     background: var(--teal);
     display: flex;
     align-items: center;
     justify-content: center;
     flex-shrink: 0
 }
 
 .plic svg {
     width: 17px;
     height: 17px;
     stroke: white;
     fill: none;
     stroke-width: 1.8
 }
 
 .pl h3 {
     font-size: .88rem;
     color: var(--teal);
     margin-bottom: .18rem
 }
 
 .pl p {
     font-size: .8rem
 }
 
 .stl {
     margin-top: 1.6rem
 }
 
 .st {
     display: flex;
     gap: .85rem;
     padding: 1rem 0;
     border-bottom: 1px solid var(--brd)
 }
 
 .st:last-child {
     border-bottom: none
 }
 
 .stn {
     width: 28px;
     height: 28px;
     border-radius: 50%;
     background: var(--teal);
     color: white;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: .72rem;
     font-weight: 800;
     flex-shrink: 0
 }
 
 .st h3 {
     font-size: .88rem;
     color: var(--ink);
     margin-bottom: .14rem
 }
 
 .st p {
     font-size: .8rem
 }
 /* SERVICES */
 
 #services {
     background: var(--wht)
 }
 
 .svhdr {
     margin-bottom: 2.6rem
 }
 
 .svgrid {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 1.4rem
 }
 
 .svc {
     border: 1px solid var(--brd);
     border-radius: 12px;
     overflow: hidden;
     background: white;
     transition: transform .2s, box-shadow .2s
 }
 
 .svc:hover {
     transform: translateY(-4px);
     box-shadow: 0 12px 36px rgba(13, 107, 110, .09)
 }
 
 .svhd {
     background: var(--teal);
     padding: 1.5rem 1.65rem 1.3rem
 }
 
 .svhd.alt {
     background: var(--tdk)
 }
 
 .svic {
     width: 42px;
     height: 42px;
     border-radius: 50%;
     background: rgba(255, 255, 255, .14);
     display: flex;
     align-items: center;
     justify-content: center;
     margin-bottom: .85rem
 }
 
 .svic svg {
     width: 21px;
     height: 21px;
     stroke: white;
     fill: none;
     stroke-width: 1.8
 }
 
 .svtg {
     background: rgba(255, 255, 255, .14);
     color: rgba(255, 255, 255, .88);
     font-size: .62rem;
     font-weight: 800;
     letter-spacing: .1em;
     text-transform: uppercase;
     padding: 3px 10px;
     border-radius: 100px;
     display: inline-block;
     margin-bottom: .5rem
 }
 
 .svhd h3 {
     color: white;
     font-size: 1rem
 }
 
 .svbd {
     padding: 1.5rem 1.65rem
 }
 
 .svbd p {
     font-size: .84rem;
     margin-bottom: 1rem
 }
 
 .svul {
     list-style: none
 }
 
 .svul li {
     font-size: .82rem;
     color: var(--mut);
     padding: 3px 0 3px 1rem;
     position: relative;
     line-height: 1.5
 }
 
 .svul li::before {
     content: "";
     position: absolute;
     left: 0;
     top: 9px;
     width: 4px;
     height: 4px;
     border-radius: 50%;
     background: var(--grn)
 }
 
 .svft {
     margin-top: 1rem;
     padding-top: 1rem;
     border-top: 1px solid var(--brd)
 }
 
 .svfl {
     font-size: .62rem;
     font-weight: 800;
     color: var(--grn);
     text-transform: uppercase;
     letter-spacing: .1em;
     margin-bottom: 2px
 }
 
 .svfn {
     font-weight: 700;
     color: var(--teal);
     font-size: .82rem
 }
 /* SLIDESHOW */
 
 #experience {
     background: var(--crm);
     overflow: hidden
 }
 
 .exphdr {
     margin-bottom: 2.5rem
 }
 
 .sshl {
     position: relative
 }
 
 .stk {
     display: flex;
     transition: transform .45s cubic-bezier(.4, 0, .2, 1);
     will-change: transform
 }
 
 .sld {
     flex: 0 0 100%;
     min-width: 0
 }
 
 .sldi {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 2rem;
     align-items: stretch;
     min-height: 400px
 }
 
 .sll {
     background: var(--teal);
     border-radius: 14px;
     padding: 2.25rem 2rem;
     display: flex;
     flex-direction: column;
     justify-content: space-between
 }
 
 .sll.grn {
     background: #1A6B44
 }
 
 .sll.amb {
     background: #7C4F00
 }
 
 .sll.pur {
     background: #3A2A7A
 }
 
 .sll.nvy {
     background: #0D2D5E
 }
 
 .sitag {
     display: inline-block;
     padding: 3px 12px;
     border-radius: 100px;
     font-size: .63rem;
     font-weight: 800;
     letter-spacing: .09em;
     text-transform: uppercase;
     margin-bottom: .9rem;
     background: rgba(255, 255, 255, .16);
     color: rgba(255, 255, 255, .9)
 }
 
 .sll h3 {
     color: white;
     font-size: 1.2rem;
     font-weight: 800;
     line-height: 1.25;
     margin-bottom: .85rem
 }
 
 .sll p {
     color: rgba(255, 255, 255, .72);
     font-size: .85rem;
     line-height: 1.7;
     flex-grow: 1
 }
 
 .slst {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: .75rem;
     margin-top: 1.5rem
 }
 
 .slst .sn {
     font-size: 1.6rem;
     font-weight: 800;
     color: var(--grn);
     line-height: 1
 }
 
 .sll.amb .slst .sn {
     color: #FFCF72
 }
 
 .sll.pur .slst .sn {
     color: #B8A9FF
 }
 
 .sll.nvy .slst .sn {
     color: #72C5FF
 }
 
 .slst .sl {
     font-size: .7rem;
     color: rgba(255, 255, 255, .58);
     margin-top: 2px
 }
 
 .slr {
     background: white;
     border-radius: 14px;
     padding: 2.25rem;
     border: 1px solid var(--brd);
     display: flex;
     flex-direction: column
 }
 
 .slr h4 {
     font-size: .75rem;
     font-weight: 800;
     text-transform: uppercase;
     letter-spacing: .11em;
     color: var(--teal);
     margin-bottom: .6rem
 }
 
 .slr p {
     font-size: .84rem;
     line-height: 1.7;
     color: var(--mut)
 }
 
 .sltags {
     display: flex;
     flex-wrap: wrap;
     gap: .5rem;
     margin-top: .9rem
 }
 
 .sltag {
     background: var(--tlt);
     color: var(--teal);
     font-size: .7rem;
     font-weight: 700;
     padding: 3px 10px;
     border-radius: 100px
 }
 
 .slimg {
     flex-grow: 1;
     margin: 1.1rem 0;
     background: var(--crm);
     border-radius: 8px;
     display: flex;
     align-items: center;
     justify-content: center;
     min-height: 90px
 }
 
 .slimg svg {
     width: 40px;
     height: 40px;
     stroke: var(--teal);
     fill: none;
     opacity: .2
 }
 
 .slcl {
     display: flex;
     align-items: center;
     gap: 8px;
     padding-top: 1rem;
     border-top: 1px solid var(--brd);
     margin-top: auto
 }
 
 .slcld {
     width: 30px;
     height: 30px;
     border-radius: 6px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: .6rem;
     font-weight: 900;
     color: white;
     flex-shrink: 0
 }
 
 .slcln {
     font-size: .8rem;
     font-weight: 700;
     color: var(--ink)
 }
 
 .slclt {
     font-size: .7rem;
     color: var(--mlt)
 }
 
 .sctrl {
     display: flex;
     align-items: center;
     justify-content: space-between;
     margin-top: 1.4rem
 }
 
 .sdts {
     display: flex;
     gap: 8px;
     align-items: center
 }
 
 .sdt {
     width: 8px;
     height: 8px;
     border-radius: 50%;
     background: var(--brd);
     border: none;
     cursor: pointer;
     transition: all .2s;
     padding: 0
 }
 
 .sdt.act {
     background: var(--teal);
     width: 22px;
     border-radius: 4px
 }
 
 .sarrs {
     display: flex;
     gap: 10px
 }
 
 .sarr {
     width: 38px;
     height: 38px;
     border-radius: 50%;
     border: 1.5px solid var(--brd);
     background: white;
     cursor: pointer;
     display: flex;
     align-items: center;
     justify-content: center;
     transition: all .2s
 }
 
 .sarr:hover {
     border-color: var(--teal);
     background: var(--tlt)
 }
 
 .sarr svg {
     width: 16px;
     height: 16px;
     stroke: var(--teal);
     fill: none;
     stroke-width: 2
 }
 /* TICKER */
 
 #clients {
     background: var(--wht);
     padding: 78px 5%;
     overflow: hidden
 }
 
 .tks {
     margin-bottom: 1.4rem
 }
 
 .tkl {
     font-size: .65rem;
     font-weight: 800;
     text-transform: uppercase;
     letter-spacing: .13em;
     color: var(--mlt);
     margin-bottom: .7rem;
     max-width: 1160px;
     margin-left: auto;
     margin-right: auto
 }
 
 .tkw {
     overflow: hidden;
     position: relative
 }
 
 .tkw::before,
 .tkw::after {
     content: "";
     position: absolute;
     top: 0;
     bottom: 0;
     width: 60px;
     z-index: 2;
     pointer-events: none
 }
 
 .tkw::before {
     left: 0;
     background: linear-gradient(to right, white, transparent)
 }
 
 .tkw::after {
     right: 0;
     background: linear-gradient(to left, white, transparent)
 }
 
 .tkt {
     display: flex;
     width: max-content;
     animation: tkr 36s linear infinite
 }
 
 .tkt:hover {
     animation-play-state: paused
 }
 
 .tkt.sl {
     animation-duration: 48s
 }
 
 .tkt.rv {
     animation-direction: reverse
 }
 
 @keyframes tkr {
     from {
         transform: translateX(0)
     }
     to {
         transform: translateX(-50%)
     }
 }
 
 .tki {
     display: inline-flex;
     align-items: center;
     gap: 7px;
     padding: 7px 18px;
     font-size: .82rem;
     font-weight: 700;
     color: var(--mut);
     border-right: 1px solid var(--brd);
     white-space: nowrap;
     flex-shrink: 0;
     transition: color .2s
 }
 
 .tki:hover {
     color: var(--teal)
 }
 
 .bbl {
     width: 26px;
     height: 26px;
     border-radius: 5px;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     font-size: .52rem;
     font-weight: 900;
     flex-shrink: 0;
     color: white;
     font-family: "Nunito Sans", sans-serif
 }
 /* CTA */
 
 #cta {
     background: var(--teal);
     padding: 84px 5%
 }
 
 .ctin {
     max-width: 700px;
     margin: 0 auto;
     text-align: center
 }
 
 .ctin h2 {
     color: white;
     margin-bottom: 1rem
 }
 
 .ctin p {
     color: rgba(255, 255, 255, .7);
     font-size: 1.02rem;
     margin-bottom: 2.4rem
 }
 
 .ctas {
     display: flex;
     gap: 13px;
     justify-content: center;
     flex-wrap: wrap
 }
 
 .bw {
     background: white;
     color: var(--teal);
     padding: 12px 26px;
     border-radius: 6px;
     font-size: .9rem;
     font-weight: 800;
     transition: all .2s;
     display: inline-block
 }
 
 .bw:hover {
     background: var(--glt);
     transform: translateY(-2px)
 }
 
 .bwo {
     border: 2px solid rgba(255, 255, 255, .45);
     color: white;
     padding: 10px 24px;
     border-radius: 6px;
     font-size: .9rem;
     font-weight: 700;
     transition: all .2s;
     display: inline-block
 }
 
 .bwo:hover {
     border-color: white;
     background: rgba(255, 255, 255, .1)
 }
 /* CONTACT */
 
 #contact {
     background: var(--crm)
 }
 
 .cgg {
     display: grid;
     /* grid-template-columns: 1fr 1fr; */
     gap: 5rem;
     align-items: start;
     max-width: 1160px;
     margin: 0 auto
 }
 
 .clft h2 {
     color: var(--teal);
     margin-bottom: 1rem
 }
 
 .cppl {
     display: flex;
     flex-direction: column;
     gap: .9rem;
     margin-top: 1.6rem
 }
 
 .cpc {
     background: white;
     border: 1px solid var(--brd);
     border-radius: 10px;
     padding: 1.2rem 1.35rem;
     width: 33%;
 }
 
 .cpn {
     font-weight: 800;
     color: var(--ink);
     font-size: .92rem;
     margin-bottom: 2px
 }
 
 .cpr {
     font-size: .78rem;
     color: var(--mlt);
     margin-bottom: .65rem
 }
 
 .cplk {
     display: flex;
     align-items: center;
     gap: 5px;
     color: var(--teal);
     font-size: .81rem;
     font-weight: 700;
     margin-top: 4px;
     transition: color .2s;
     cursor: pointer
 }
 
 .cplk:hover {
     color: var(--grn)
 }
 
 .cplk svg {
     width: 12px;
     height: 12px;
     stroke: currentColor;
     fill: none;
     stroke-width: 2;
     flex-shrink: 0
 }
 
 .cfrm {
     background: white;
     border-radius: 12px;
     padding: 2.1rem;
     border: 1px solid var(--brd)
 }
 
 .cfrm h3 {
     font-size: 1.1rem;
     color: var(--teal);
     margin-bottom: 1.5rem
 }
 
 .fr {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: .9rem
 }
 
 .fg {
     margin-bottom: .85rem
 }
 
 .fg label {
     display: block;
     font-size: .7rem;
     font-weight: 800;
     color: var(--mut);
     margin-bottom: 4px;
     letter-spacing: .03em;
     text-transform: uppercase
 }
 
 .fg input,
 .fg textarea,
 .fg select {
     width: 100%;
     padding: 9px 12px;
     border: 1.5px solid var(--brd);
     border-radius: 6px;
     font-family: "Nunito Sans", sans-serif;
     font-size: .88rem;
     color: var(--ink);
     background: var(--crm);
     outline: none;
     transition: border-color .2s, box-shadow .2s;
     -webkit-appearance: none
 }
 
 .fg input:focus,
 .fg textarea:focus,
 .fg select:focus {
     border-color: var(--teal);
     box-shadow: 0 0 0 3px rgba(13, 107, 110, .09)
 }
 
 .fg textarea {
     resize: vertical;
     min-height: 90px
 }
 
 .fsub {
     width: 100%;
     background: var(--teal);
     color: white;
     padding: 12px;
     border: none;
     border-radius: 6px;
     font-family: "Nunito Sans", sans-serif;
     font-size: .9rem;
     font-weight: 800;
     cursor: pointer;
     transition: all .2s
 }
 
 .fsub:hover {
     background: var(--tmd);
     transform: translateY(-1px)
 }
 /* FOOTER */
 
 footer {
     background: var(--ink);
     padding: 52px 5% 26px
 }
 
 .fin {
     max-width: 1160px;
     margin: 0 auto
 }
 
 .ftop {
     display: grid;
     grid-template-columns: 2fr 1fr 1fr 1fr;
     gap: 2.75rem;
     margin-bottom: 2.5rem
 }
 
 .ftg {
     font-size: .8rem;
     color: rgba(255, 255, 255, .38);
     max-width: 220px;
     line-height: 1.65;
     margin-top: .7rem
 }
 
 .fc h4 {
     font-size: .62rem;
     font-weight: 800;
     letter-spacing: .15em;
     text-transform: uppercase;
     color: rgba(255, 255, 255, .32);
     margin-bottom: 1rem
 }
 
 .fc a {
     display: block;
     font-size: .8rem;
     color: rgba(255, 255, 255, .52);
     padding: 3px 0;
     transition: color .2s
 }
 
 .fc a:hover {
     color: var(--grn)
 }
 
 .fbot {
     border-top: 1px solid rgba(255, 255, 255, .08);
     padding-top: 1.3rem;
     display: flex;
     justify-content: space-between;
     align-items: center;
     flex-wrap: wrap;
     gap: .9rem
 }
 
 .fbot p {
     font-size: .74rem;
     color: rgba(255, 255, 255, .28)
 }
 
 .soc {
     display: flex;
     gap: 9px
 }
 
 .soc a {
     width: 29px;
     height: 29px;
     border-radius: 50%;
     border: 1px solid rgba(255, 255, 255, .14);
     display: flex;
     align-items: center;
     justify-content: center;
     color: rgba(255, 255, 255, .4);
     font-size: .7rem;
     font-weight: 800;
     transition: all .2s
 }
 
 .soc a:hover {
     border-color: var(--grn);
     color: var(--grn)
 }
 
 @media(max-width:900px) {
     #hero,
     .awrap,
     .apg,
     .cgg {
         grid-template-columns: 1fr
     }
     .hr2 {
         min-height: 180px
     }
     .awrap,
     .apg,
     .cgg {
         gap: 2.4rem
     }
     .svgrid {
         grid-template-columns: 1fr
     }
     .sldi {
         grid-template-columns: 1fr
     }
     .ss {
         grid-template-columns: repeat(2, 1fr)
     }
     .ssb::before {
         display: none
     }
     .ftop {
         grid-template-columns: 1fr 1fr
     }
     .nlinks {
         display: none
     }
     .fr {
         grid-template-columns: 1fr
     }
     .ccards,
     .fr {
         grid-template-columns: 1fr
     }
 }
 


.divider {
    width: 48px;
    height: 3px;
    background: var(--forest-lt);
    border-radius: 2px;
    margin: 1.25rem 0;
}

.section-label {
    margin-bottom: 0.75rem;
}

.contact-inner {
  display: block;
}

.contact-left.full-width {
  width: 100%;
  
}

.contact-person-wrapper {
  display: flex;
  gap: 20px;
}

.contact-person {
  width: 50%;
}


@media (max-width: 768px) {
  .contact-person-wrapper {
    flex-direction: column;
  }

  .contact-person {
    width: 100%;
  }
}

