@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

:root{
  --green:#38d430;
  --green2:#20b82f;
  --dark:#031633;
  --text:#20334d;
  --line:#e7edf5;
}

body{
  font-family:'Inter',sans-serif;
  background:#fff;
  color:var(--dark);
  overflow-x:hidden;
}

a{
  text-decoration:none;
  color:inherit;
}

img{
  max-width:100%;
  display:block;
}

.ce-wrap{
  width:min(1720px,96%);
  margin:auto;
}

/* HEADER - CONTACT STANDARD */

.ce-header{
  position:sticky;
  top:0;
  z-index:1000;
  background:#fff;
  border-bottom:1px solid #e8edf4;
}

.ce-nav{
  height:95px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
}

.ce-logo img{
  height:72px;
  width:auto;
  object-fit:contain;
}

.ce-nav nav{
  display:flex;
  align-items:center;
  gap:34px;
}

.ce-nav nav a{
  font-size:14px;
  font-weight:800;
  color:#061b38;
  padding:36px 0;
  position:relative;
}

.ce-nav nav a.active{
  color:var(--green2);
}

.ce-nav nav a.active::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:100%;
  height:3px;
  background:var(--green2);
}

.ce-quote,
.ce-green{
  min-width:170px;
  height:52px;
  padding:0 16px;

  border-radius:14px;

  display:inline-flex;
  align-items:center;
  justify-content:center;

  background:linear-gradient(
    135deg,
    #16bf31,
    #5eff49
  );

  color:#fff;
  font-size:12px;
  font-weight:900;
  letter-spacing:.3px;
  text-transform:uppercase;

  box-shadow:
  0 10px 28px rgba(56,212,48,.22);
}

.mobile-menu-btn{
  display:none;
  width:58px;
  height:58px;
  border-radius:16px;
  border:1px solid #dbe6f1;
  background:#fff;
  font-size:28px;
  color:#062041;
  cursor:pointer;
  margin-left:auto;
}

.ce-outline{
  min-height:58px;
  padding:0 26px;
  border-radius:14px;
  border:1px solid var(--green2);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color:#08772b;
  background:#fff;
  font-size:14px;
  font-weight:900;
  text-transform:uppercase;
}

.ce-outline.small{
  margin-top:26px;
}

/* HERO */

.ce-hero{
  position:relative;
  min-height:640px;
  display:flex;
  align-items:center;
  overflow:hidden;
  background:#fff;
}

.ce-hero > img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
}

.ce-hero::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    90deg,
    rgba(255,255,255,.94) 0%,
    rgba(255,255,255,.82) 38%,
    rgba(255,255,255,.35) 70%,
    rgba(255,255,255,.05) 100%
  );
}

.ce-hero-content{
  position:relative;
  z-index:2;
  padding:80px 70px;
}

.ce-hero-content span,
.ce-label{
  display:block;
  color:var(--green2);
  font-size:18px;
  font-weight:900;
  text-transform:uppercase;
}

.ce-hero h1{
  margin-top:22px;
  max-width:850px;
  font-size:78px;
  line-height:1;
  letter-spacing:-3px;
  font-weight:900;
  color:#041935;
}

.ce-hero h1 em{
  color:#39a644;
  font-style:normal;
}

.ce-hero p{
  margin-top:34px;
  max-width:680px;
  color:#28405f;
  font-size:24px;
  line-height:1.7;
}

.ce-actions{
  margin-top:34px;
  display:flex;
  gap:18px;
}

/* WHO */

.ce-who{
  padding:70px 0 50px;
  background:#fff;
}

.ce-who-grid{
  display:grid;
  grid-template-columns:1.05fr 1.05fr .75fr .75fr;
  gap:28px;
  align-items:stretch;
}

.ce-who h2{
  margin-top:18px;
  font-size:50px;
  line-height:1.06;
  letter-spacing:-1.8px;
  font-weight:900;
}

.ce-who h2::after{
  content:"";
  display:block;
  width:54px;
  height:4px;
  margin-top:20px;
  background:var(--green2);
  border-radius:50px;
}

.ce-who p{
  margin-top:22px;
  font-size:17px;
  line-height:1.85;
  color:#30455f;
}

.ce-who-img{
  width:100%;
  height:100%;
  min-height:420px;
  object-fit:cover;
  border-radius:24px;
  box-shadow:0 10px 30px rgba(7,26,51,.06);
}

.ce-card{
  min-height:420px;
  padding:42px 34px;
  border:1px solid #e8edf4;
  border-radius:24px;
  background:#fff;
  box-shadow:0 10px 30px rgba(7,26,51,.04);
  border-bottom:5px solid var(--green2);
  text-align:center;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
}

.ce-icon{
  width:72px;
  height:72px;
  border-radius:50%;
  background:#effbef;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:34px;
  margin:0 auto 28px;
  color:var(--green2);
}

.ce-card h3{
  font-size:24px;
  font-weight:900;
  color:#041935;
}

.ce-card p{
  font-size:14px;
  line-height:1.9;
  text-align:center;
  max-width:440px;
  margin-left:auto;
  margin-right:auto;
}

/* EXPERTISE */

.ce-expertise{
  padding:50px 0 80px;
  background:#fff;
}

.center{
  text-align:center;
}

.ce-center-title{
  margin-top:16px;
  text-align:center;
  font-size:56px;
  line-height:1.08;
  letter-spacing:-2px;
  font-weight:900;
}

.ce-expertise-grid{
  margin-top:54px;
  display:grid;
  grid-template-columns:repeat(7,1fr);
}

.ce-expertise-grid div{
  min-height:200px;
  padding:20px 24px;
  text-align:center;
  border-right:1px solid var(--line);
}

.ce-expertise-grid div:last-child{
  border-right:none;
}

.ce-expertise-grid i,
.ce-why-grid i{
  display:block;
  color:var(--green2);
  font-style:normal;
  font-size:50px;
  margin-bottom:20px;
}

.ce-expertise-grid h3,
.ce-why-grid h3{
  font-size:18px;
  font-weight:900;
  line-height:1.3;
}

.ce-expertise-grid p,
.ce-why-grid p{
  margin-top:14px;
  color:#30465f;
  font-size:14px;
  line-height:1.65;
}

/* RECORD */

.ce-record{
  padding:30px 0 80px;
}

.ce-record-panel{
  padding:44px 54px 52px;
  border-radius:28px;
  background:
    linear-gradient(135deg,rgba(2,19,43,.90),rgba(4,45,82,.72)),
    url("../images/11.webp") center/cover no-repeat;
  color:#fff;
  box-shadow:0 24px 65px rgba(7,26,51,.18);
}

.ce-record-panel > span{
  display:block;
  color:var(--green2);
  text-align:center;
  font-size:14px;
  font-weight:900;
  text-transform:uppercase;
  margin-bottom:34px;
}

.ce-record-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
}

.ce-record-grid div{
  padding:0 34px;
  border-right:1px solid rgba(255,255,255,.20);
  text-align:center;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
}

.ce-record-grid div:last-child{
  border-right:none;
}

.ce-record-grid i{
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--green2);
  font-style:normal;
  font-size:52px;
  margin-bottom:18px;
}

.ce-record-grid strong{
  color:#fff;
  font-size:60px;
  line-height:1;
  font-weight:900;
}

.ce-record-grid h3{
  margin-top:10px;
  color:var(--green2);
  font-size:15px;
  font-weight:900;
  text-transform:uppercase;
}

.ce-record-grid p{
  margin-top:14px;
  color:#e7f3ff;
  font-size:14px;
  line-height:1.65;
  max-width:270px;
}

/* WHY */

.ce-why{
  padding:40px 0 90px;
  background:#fff;
}

.ce-why-grid{
  margin-top:54px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
}

.ce-why-grid div{
  text-align:center;
  padding:20px 44px;
  border-right:1px solid var(--line);
}

.ce-why-grid div:last-child{
  border-right:none;
}

/* CTA */

.ce-cta{
  padding:90px 40px 96px;
  text-align:center;
  color:#fff;
  background:
    linear-gradient(135deg,rgba(2,18,42,.76),rgba(3,44,80,.45)),
    url("../images/12.webp") center/cover no-repeat;
}

.ce-cta h2{
  font-size:56px;
  line-height:1.08;
  letter-spacing:-2px;
  font-weight:900;
}

.ce-cta p{
  margin-top:18px;
  font-size:19px;
  color:#e7f2ff;
}

.ce-cta .big{
  margin-top:34px;
  min-width:300px;
  height:64px;
}

/* RESPONSIVE */

@media(max-width:1400px){
  .ce-who-grid{
    grid-template-columns:1fr 1fr;
  }

  .ce-expertise-grid{
    grid-template-columns:repeat(3,1fr);
    gap:24px;
  }

  .ce-expertise-grid div{
    border-right:none;
    border:1px solid var(--line);
    border-radius:20px;
  }

  .ce-record-grid,
  .ce-why-grid{
    grid-template-columns:repeat(2,1fr);
    gap:30px;
  }

  .ce-record-grid div,
  .ce-why-grid div{
    border-right:none;
  }
}

@media(max-width:1200px){
  .ce-nav nav{
    position:absolute;
    top:96px;
    left:0;
    width:100%;
    padding:24px;
    background:#fff;
    display:none;
    flex-direction:column;
    align-items:flex-start;
    gap:0;
    box-shadow:0 20px 40px rgba(7,26,51,.08);
  }

  .ce-nav nav.open{
    display:flex;
  }

  .mobile-menu-btn{
    display:flex;
    align-items:center;
    justify-content:center;
  }
}

@media(max-width:900px){

  .mobile-menu-btn{
    display:flex;
    align-items:center;
    justify-content:center;
    margin-left:auto;
    order:3;
  }

  .ce-nav nav{
    position:absolute;
    top:96px;
    left:0;
    width:100%;
    background:#fff;
    flex-direction:column;
    align-items:flex-start;
    padding:30px;
    gap:0;
    border-bottom:1px solid #e8edf4;
    display:none;
  }

  .ce-nav nav.open{
    display:flex;
  }

  .ce-nav nav a{
    width:100%;
    padding:18px 0;
  }

.ce-quote{
  min-width:138px;
  height:48px;
  font-size:11px;
  padding:0 12px;
}

  .ce-nav{
    justify-content:space-between;
  }

  .ce-logo img{
    height:78px;
  }
}

@media(max-width:600px){

  .ce-wrap{
    width:94%;
  }

  .ce-nav{
    height:92px;
    gap:14px;
  }

  .ce-logo img{
    height:84px;
  }

.ce-quote{
  min-width:132px;
  height:46px;
  font-size:10px;
  padding:0 10px;
}

  .mobile-menu-btn{
    width:52px;
    height:52px;
    font-size:24px;
  }

  .ce-hero{
    min-height:auto;
    padding:55px 0 50px;
  }

  .ce-hero > img{
    opacity:.38;
    object-position:78% center;
  }

  .ce-hero::after{
    background:linear-gradient(
      180deg,
      rgba(255,255,255,.88) 0%,
      rgba(255,255,255,.70) 40%,
      rgba(255,255,255,.30) 100%
    );
  }

  .ce-hero-content{
    padding:55px 26px;
  }

  .ce-hero h1{
    font-size:44px;
    line-height:1.02;
    letter-spacing:-2px;
  }

  .ce-hero p{
    font-size:18px;
    line-height:1.8;
  }

  .ce-actions{
    flex-direction:column;
    gap:16px;
  }

  .ce-green,
  .ce-outline{
    width:100%;
    justify-content:center;
  }

  .ce-who-grid,
  .ce-expertise-grid,
  .ce-record-grid,
  .ce-why-grid{
    grid-template-columns:1fr;
  }

  .ce-who,
  .ce-expertise,
  .ce-record,
  .ce-why{
    padding-left:18px;
    padding-right:18px;
  }

  .ce-who h2,
  .ce-center-title,
  .ce-cta h2{
    font-size:38px;
    line-height:1.08;
    letter-spacing:-1.4px;
  }

  .ce-who-img{
    min-height:300px;
  }

  .ce-card{
    min-height:auto;
    padding:34px 26px;
  }

  .ce-record-panel{
    padding:34px 24px;
  }

  .ce-record-grid strong{
    font-size:46px;
  }

  .ce-why-grid div,
  .ce-expertise-grid div,
  .ce-record-grid div{
    border-right:none;
  }

  .ce-cta{
    padding:70px 18px;
  }

  .ce-cta p{
    font-size:17px;
    line-height:1.7;
  }
}

/* CONTACTUS HEADER STANDARD OVERRIDE */

/* HEADER */

.ce-header{
  position:sticky !important;
  top:0 !important;
  z-index:1000 !important;
  background:#fff !important;
  border-bottom:1px solid #e8edf4 !important;
}

.ce-nav{
  height:95px !important;
  display:flex !important;
  align-items:center !important;
  justify-content:space-between !important;
  gap:30px !important;
}

.ce-logo img{
  height:72px !important;
  width:auto !important;
  object-fit:contain !important;
}

/* NAV */

.ce-nav nav{
  display:flex !important;
  align-items:center !important;
  gap:34px !important;
}

.ce-nav nav a{
  font-size:14px !important;
  font-weight:800 !important;
  color:#061b38 !important;
  padding:36px 0 !important;
  position:relative !important;
}

.ce-nav nav a.active{
  color:var(--green2) !important;
}

.ce-nav nav a.active::after{
  content:"" !important;
  position:absolute !important;
  left:0 !important;
  bottom:0 !important;
  width:100% !important;
  height:3px !important;
  background:var(--green2) !important;
}

/* GET A QUOTE */

.ce-quote{
  min-width:185px;
  height:54px;

  padding:0 18px;

  border-radius:14px;

  display:flex;
  align-items:center;
  justify-content:center;

  background:
  linear-gradient(
    135deg,
    #16bf31,
    #5eff49
  );

  color:#fff;
  font-size:13px;
  font-weight:900;
  text-transform:uppercase;

  box-shadow:
  0 10px 28px rgba(56,212,48,.25);
}

/* MOBILE BUTTON */

.mobile-menu-btn{
  display:none;
  width:58px;
  height:58px;
  border-radius:16px;
  border:1px solid #dbe6f1;
  background:#fff;
  font-size:28px;
  color:#062041;
  cursor:pointer;
  margin-left:auto;
}

/* TABLET */

@media(max-width:1200px){

  .ce-nav nav{
    position:absolute !important;
    top:96px !important;
    left:0 !important;

    width:100% !important;

    padding:24px !important;

    background:#fff !important;

    display:none !important;

    flex-direction:column !important;
    align-items:flex-start !important;
    gap:0 !important;

    box-shadow:
    0 20px 40px rgba(7,26,51,.08) !important;
  }

  .ce-nav nav.open{
    display:flex !important;
  }

  .mobile-menu-btn{
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
  }
}

/* MOBILE */

@media(max-width:900px){

  .mobile-menu-btn{
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    margin-left:auto !important;
    order:3 !important;
  }

  .ce-nav nav{
    position:absolute !important;
    top:96px !important;
    left:0 !important;

    width:100% !important;

    background:#fff !important;

    flex-direction:column !important;
    align-items:flex-start !important;

    padding:30px !important;

    gap:0 !important;

    border-bottom:1px solid #e8edf4 !important;

    display:none !important;
  }

  .ce-nav nav.open{
    display:flex !important;
  }

  .ce-nav nav a{
    width:100% !important;
    padding:18px 0 !important;
  }

  .ce-quote{
  min-width:145px;
  height:52px;
  font-size:12px;
  padding:0 14px;
}

  .ce-nav{
    justify-content:space-between !important;
  }

  .ce-logo img{
    height:78px !important;
  }
}

/* SMALL MOBILE */

@media(max-width:600px){

  .ce-wrap{
    width:94% !important;
  }

  .ce-nav{
    height:92px !important;
    gap:14px !important;
  }

  .ce-logo img{
    height:84px !important;
  }

  .ce-quote{
  min-width:138px;
  height:50px;
  font-size:11px;
  padding:0 12px;
}

  .mobile-menu-btn{
    width:52px !important;
    height:52px !important;
    font-size:24px !important;
  }
}

/* =========================
   CUSTOM LANG SWITCHER
========================= */

.ce-lang{
display:flex;
align-items:center;
gap:5px;
margin-left:14px;
flex-wrap:wrap;
max-width:270px;
}

.ce-lang button{

width:34px;
height:34px;

border:none;

border-radius:10px;

background:#fff;

border:1px solid #dfe7f1;

font-size:10px;
font-weight:900;

color:#061b38;

cursor:pointer;

transition:.2s;
}

.ce-lang button:hover{

background:#20b82f;
color:#fff;

}

/* =========================
   GOOGLE FULL HIDE
========================= */

#google_translate_element{

position:absolute !important;

left:-99999px !important;
top:-99999px !important;

opacity:0 !important;

pointer-events:none !important;

width:0 !important;
height:0 !important;

overflow:hidden !important;
}

.goog-te-banner-frame{
display:none !important;
}

.skiptranslate iframe{
display:none !important;
}

.goog-logo-link{
display:none !important;
}

.goog-te-gadget{
font-size:0 !important;
color:transparent !important;
height:0 !important;
overflow:hidden !important;
}

.goog-te-combo{
display:none !important;
}

body{
top:0 !important;
}

/* MOBILE */

@media(max-width:900px){

.ce-lang{
display:none;
}

}

