/***Typo Css Start****/
:root {
  --page-width: 1310px;
  --base-fm:  "Hanken Grotesk", sans-serif;
  --base-size: 16px;
  --h1-size: 45px;
  --h2-size: 38px;
  --h3-size: 30px;
  --h4-size: 25px;
  --h5-size: 21px;
  --h6-size: 18px;
  --base-clr: #43474F;
  --white-clr: #ffffff;
  --black-clr: #000000;
  --bg-clr: #F2F5F2;
  --light-bg-clr: #FBF9F8;
  --ftr-bg-clr:#001638;
  --theme-clr: #022A5D;
  --sec-theme-clr: #d39822;
}

* {
  box-sizing: border-box;
  outline: none !important;
}

body {
  margin: 0px;
  font-family: var(--base-fm);
  color: var(--base-clr);
  font-size: var(--base-size);
  line-height: 1.5;
  background-color: var(--white-clr);
  font-weight: 400;
  padding-top: 80px;
}

p {
  margin: 0 0 20px 0;
  line-height: 1.5;
}
.hd-b-paragraph {
  font-size: 18px;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, li, a {
  list-style: none;
  text-decoration: none;
  padding: 0px;
  margin: 0px;
}

h1, .h1 {
  font-size: var(--h1-size);
  color: var(--white-clr);
  font-weight: 700;
  margin: 0px 0px 25px 0px;
  font-style: normal;
  line-height: 1.1;
}

h2, .h2 {
  font-size: var(--h2-size);
  font-weight: 700;
  margin: 0px 0px 18px 0px;
  line-height: 1.2;
  color: var(--theme-clr);
}

h3, .h3 {
  font-size: var(--h3-size);
  font-weight: 600;
  margin: 0px 0px 14px 0px;
  line-height: 1.2;
  color: var(--theme-clr);
}

h4, .h4 {
  font-size: var(--h4-size);
  font-weight: 600;
  margin: 0px 0px 12px 0px;
  line-height: 1.2;
  color: var(--theme-clr);
}

h5, .h5 {
  font-size: var(--h5-size);
  font-weight: 600;
  margin: 0px 0px 10px 0px;
  line-height: 1.2;
  color: var(--theme-clr);
}

h6, .h6 {
  font-size: var(--h6-size);
 color: var(--theme-clr);
  font-weight: 600;
  margin: 0px 0px 6px 0px;
  line-height: 1.2;
}


.theme-clr {
  color: var(--theme-clr);
}
.white-bg {
  background-color: var(--theme-clr);
}
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.d-flex {
  display: flex;
  flex-flow: row wrap;
}
.f-center {
  align-items: center;
}

.f-start {
  align-items: flex-start;
}

.f-end {
  align-items: flex-end;
}

.splide__arrow {
    width: 48px;
    height: 48px;
    opacity: 1;
    background-color: rgba(255,255, 255, 0.7);
}

.splide__arrow svg {
    fill: #fff;
}
.splide__pagination {
    bottom: 20px;
}
.splide__pagination li button {
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.80);
    opacity: 1;
    width: 10px;
    height: 10px;
    padding: 0;
    transform: none !important;
}
.splide__pagination li button.is-active {
    background-color: var(--sec-theme-clr);
    width: 30px;
}

.splide__pagination li {
    margin: 0px 2px;
}

section {
  width: 100%;
  padding: 60px 0px;
}
.light-bg {
   background: var(--light-bg-clr);
}

.light-theme-bg {
  background-color: #F7F8FA;
}
.container {
  max-width: var(--page-width);
  padding: 0px 15px;
  margin: auto;
  width: 100%;
}

.cmn-btn {
  transition: 0.5s all;
  cursor: pointer;
  background: var(--theme-clr);
  border-radius: 4px;
  color: var(--white-clr);
  padding: 10px 20px 10px 20px;
  display: inline-block;
  font-weight:600;
  border: none;
  font-family: var(--base-fm);
  font-size: var(--base-size);
  vertical-align: middle;
  
  line-height: 1.6;
}

.cmn-btn:hover {
  opacity: 0.85;
}

.cmn-bdr-btn {
  transition: 0.5s all;
  cursor: pointer;
  background: transparent;
  color: var(--theme-clr);
  border-radius: 4px;
  border: var(--theme-clr) 1px solid; 
  padding: 9px 20px 9px 20px;
  display: inline-block;
  font-weight:600;
  font-family: var(--base-fm);
  font-size: var(--base-size);
  vertical-align: middle;
  line-height: 1.6;
}
.cmn-bdr-btn:hover {
   background: var(--theme-clr);
  color: var(--white-clr);
}
.cmn-btn:hover{
  opacity: 0.85;
}


.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}




.main-header {
  padding: 5px 0;
  background: var(--white-clr);
  transition: 0.5s all;
  left: 0px;
  position: fixed;
  top: 0px;
  z-index: 999;
  width: 100%;
      border-bottom: #d7d7d7 1px solid;
}
.logo {
    max-width: 150px;
}
.fixed .main-header {
  top: 0px;
  padding: 4px 0;
}
  .mobile-toggle {
    display: none;
    width: 25px;
    height: 18px;
    margin-left: 10px;
    flex-flow: row wrap;
    align-content: space-between;
  }

  

  .mobile-toggle i {
    width: 100%;
    height: 2px;
    background-color: #000;
    display: inline-block;
  }
nav.nav-menu {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
}
.nav-menu ul {
  display: flex;
  align-items: center;
}

.nav-menu ul li {
  margin: 0 15px;
   font-size:16px; 
}

.nav-menu ul li a {
    font-weight: 500;
    color: var(--base-clr);
    transition: 0.3s;
    cursor: pointer;
   
}

.nav-menu ul li a:hover,
.nav-menu ul li.current_page_item a {
  color: var(--theme-clr);
}


.nav-menu ul li.menu-item-has-children>a:after {
 content: '';
 width: 8px;
 height: 8px;
 border-left: var(--black-clr) 1px solid;
 border-bottom: var(--black-clr) 1px solid;
 display: inline-block;
 transform: rotate(-45deg);
 margin-left: 8px;
 top: -3px;
 position: relative;
}

.nav-menu ul li a:hover {
 color: var(--theme-clr);
}

.nav-menu ul li:hover a, .nav-menu ul li.current_page_item a {
 color: var(--sec-theme-clr)
}

.nav-menu ul li ul {
 position: absolute;
 left: -20px;
 top: 100%;
 width: 340px;
 background-color: #fff;
 margin-top: 20px;
 transition: 0.5s all;
 pointer-events: none;
 opacity: 0;
 margin: 0px;
 flex-flow: row wrap;
 z-index: 99;
 box-shadow: #ccc 0px 8px 8px;
}

.nav-menu ul li:hover ul {
 opacity: 1;
 pointer-events: auto;
 margin-top: 0px;
}

.nav-menu ul li {
 position: relative;
}

.nav-menu ul li ul li {
 margin: 0px;
 width: 100%;
 padding: 0px;
 border-bottom: #ccc 1px solid
}

.nav-menu ul li ul li a {
 padding: 10px 20px;
 display: inline-block;
 font-size: 16px;
 width: 100%;
 font-weight: normal;
 color: var(--black-clr) !important;
}

.nav-menu ul li ul li:hover a, .nav-menu ul li ul li.current_page_item a {
 color: var(--sec-theme-clr) !important;
}

.header-btn {
  margin-left: 10px;
}
.header-btn a {
  font-size: 15px;
}




/* CTA */
.cta-section {
  background: var(--theme-clr);
  color: var(--white-clr);
  background-size: cover;
  position: relative;
}

.cta-inner {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: space-between;
}

.cta-inner .cta-cont-part {
    width: calc(100% - 200px);
}

.cta-section:before {
    background-color: rgb(56, 104, 69, 0.8);
    content: '';
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 8;
}

.cta-section .cta-inner {
    position: relative;
    z-index: 9;
}

.cta-section .cta-btn {
    background-color: var(--sec-theme-clr);background-var(
    --sec-theme-clr): ;
    color: var(--white-clr);
}

.cta-section h2,
.cta-section h3 {
  color: var(--white-clr);
}

.cta-section p {
  color: #e5e5e5;
  margin-bottom: 0px;
}

.cta-btn {
  background: var(--white-clr);
  color: var(--theme-clr);
  padding: 12px 30px;
  border-radius: 6px;
  display: inline-block;
  font-weight: 600;
}

.cta-btn:hover {
  opacity: 0.85;
}


/* -------------------- Shared -------------------- */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--sec-theme-clr);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 700;
  margin-bottom: 9px;
}

.eyebrow::before {
  content: normal;
  width: 20px;
  height: 1px;
  background: var(--sec-theme-clr);
}

.section-head {
  max-width: 900px;
  margin: 0 0 34px;
  
}
.section-head.text-center {
  text-align: center;
  margin: 0 auto 34px;
}

.section-head h2 {
  margin-bottom: 8px;
}

.section-head p {
  max-width: 850px;
  color: var(--muted-clr);
  font-size: 18px;
}

.gold-text {
  color: var(--sec-theme-clr);
}

/* -------------------- Hero -------------------- */

.hero {
  padding: 0;
  background: linear-gradient(90deg, #fbfaf7 0%, #fff 58%, #f3f1ed 100%);
}

.hero-inner {
  min-height: 385px;
  display: flex;
  align-items: center;
  gap: 65px;
  padding-top: 30px;
  padding-bottom: 30px;
}

.hero-copy {
  width: calc(58% - 32px);
  padding-left: 4px;
}

.hero-copy .eyebrow {
  background: #f4f0e7;
  border-radius: 20px;
  padding: 6px 12px;
  letter-spacing: .07em;
  font-size: 12px;
}

.hero-copy .eyebrow::before {
  display: none;
}

.hero-title {
  color: var(--theme-clr);
  line-height: 1.08;
  margin-bottom: 14px;
  max-width: 720px;
}

.hero-title span {
  color: var(--sec-theme-clr);
}

.hero-copy > p {
  max-width: 650px;
  margin-bottom: 18px;
}

.hero-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 20px;
}




.hero-trust {
  display: flex;
  gap: 22px;
  color: #555a60;
  
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 5px;
}

.hero-trust-item::before {
  content: "✓";
  color: var(--sec-theme-clr);
  font-weight: 800;
}

.hero-media {
  width: 42%;
  position: relative;
  min-height: 325px;
}

.hero-photo {
  width: 100%;
  max-width: 480px;
  object-fit: cover;
  margin-left: auto;
  border-radius: 8px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, .10);
}

.hero-card {
  position: absolute;
  left: -20px;
  bottom: 25px;
  max-width: 220px;
  background: #fff;
  border: 1px solid #e9e5db;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .12);
  padding: 12px 16px;
  border-radius: 6px;
  
}

.hero-card strong {
  display: block;
  color: var(--theme-clr);
  margin-bottom: 3px;
}

.hero-card span {
  display: block;
  color: var(--base-clr);
  font-size: 14px;
  
}

/* -------------------- Trust Strip -------------------- */

.trust-strip {
  background: var(--white-clr);
  padding: 40px 0;
  border-top: 1px solid #f1f1ef;
  border-bottom: 1px solid #f1f1ef;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1.5fr);
  gap: 20px;
}

.trust-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.trust-icon {
  width: 40px;
  height: 40px;
  padding: 6px;
  border-radius: 6px;
  background-color: #F5F3F3;
  object-fit: contain;
  flex: 0 0 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.trust-icon img {
  max-width: 24px;
  max-height: 24px;
}
.trust-item strong {
  display: block;
  color: var(--theme-clr);
  margin-bottom: 3px;
}

.trust-item p {
  line-height: 1.35;
  font-size: 14px;
  margin: 0;
}

.statement {
  margin-top: 25px;
  padding: 12px 18px;
  background: #f5f6f6;
  border-left: 3px solid var(--sec-theme-clr);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  border-radius: 8px;
}

.statement strong {
  display: block;
  color: var(--theme-clr);
  margin-bottom: 2px;
  font-size: 18px;
}

.statement p {
  margin: 0;
  color: var(--base-clr);
}

.statement .cmn-btn {
  font-weight: 500;
}

/* -------------------- Services -------------------- */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.service-card {
  min-height: 205px;
  padding: 28px 20px 18px;
  background: var(--white-clr);
  border: 1px solid #f1f0ee;
  box-shadow: 0 5px 18px rgba(25, 35, 45, .035);
  display: flex;
  flex-direction: column;
  border-radius: 8px;
}

.service-icon {
  width: 48px;
  height: 48px;
  background-color: #F5F3F3;
  border-radius: 4px;
  padding: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 14px;
}
.service-icon img {
  max-height: 70%
}
.service-card h3 {
  margin: 0 0 8px;
  font-size: 20px;
}

.service-card p {
  color: #73777d;
  line-height: 1.45;
  margin: 0 0 16px;
}

.learn-link,
.read-link {
  margin-top: auto;
  color: var(--theme-clr);
  font-weight: 600;
  font-size: 14px;
  transition: 0.5s all;
  position: relative;
  left: 0px;
}
.learn-link:hover,
.read-link:hover {
  left: 4px;

}
.learn-link::after,
.read-link::after {
  content: "";
  background-image: url(../images/link-icon.svg);
  background-size: cover;
  width: 12px;
  height: 12px;
  display: inline-block;
  margin-left:5px;
  position: relative;
  top: 1px; 
  color: var(--sec-theme-clr);
}

/* -------------------- Industries -------------------- */

.industries {
  background: #f5f4f3;
}

.industries-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 55px;
  align-items: center;
}

.industries-copy .section-label {
  color: var(--sec-theme-clr);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 700;
  margin-bottom: 7px;
}

.industries-copy h2 {
  line-height: 1.12;
  margin-bottom: 11px;
}

.industries-copy > p {
  color: #676c72;
  margin-bottom: 15px;
}

.check-list li {
  margin-bottom: 7px;
  color: #1B1C1C;
  position: relative;
  padding-left: 28px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0px;
  top: 2px;
  background-image: url(../images/cycle-check-arr.svg);
  background-size: 100% 100%;
  width: 20px;
  height: 20px;
  margin-right: 7px;
  display: inline-block;
  vertical-align: middle;
}
.industries-copy .learn-link{
 font-size: 16px;
 margin-top: 20px;
 display: inline-block;
}
.industries-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.industry-card {
  min-height: 105px;
  background: var(--white-clr);
  border: 1px solid #eceae7;
  padding: 20px;
  position: relative;
  border-radius: 8px;
}

.industry-card h3, 
.industry-card .h3 {
  margin: 0 0 0px;
  font-size: 20px;
}
.industry-icon-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.industry-icon {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #EFEDED;
    border-radius: 6px;
}
.industry-card p {
  line-height: 1.35;
  margin: 0 0 15px;
  font-size: 14px;
}


/* -------------------- Why Us -------------------- */

.why-us {
  background: #082f64;
  color: var(--white-clr);
}

.why-us .section-head {
  text-align: left;
  margin-left: 0;
  margin-bottom: 27px;
}

.why-us .section-head h2 {
  color: var(--white-clr);
}

.why-us .section-head p {
  color: rgba(255,255,255,.75);
  margin-left: 0;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.why-card {
  min-height: 125px;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.08);
  padding: 16px 16px;
  border-radius: 8px;
}
.why-us .eyebrow {
  color: #F6BD54;
}
.why-number {
  display: block;
  color: #F6BD54;
  font-weight: 700;
  font-size: 30px;
  margin-bottom: 4px;
}

.why-card h3,
.why-card .h3 {
  color: var(--white-clr);
  margin-bottom: 10px;
  font-size: 22px;
}

.why-card p {
  line-height: 1.4;
  margin: 0;
}

/* -------------------- Locations -------------------- */

.locations {
  background: var(--white-clr);
}

.location-list {
      display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
 
}

.location-pill {
  padding: 2px 12px;
  text-align: center;
  border: 1px solid #efeeec;
  background: var(--white-clr);
  box-shadow: 0 2px 8px rgba(0,0,0,.025);
  color: var(--theme-clr);
  font-weight: 600;
  border-radius: 5px;
  min-height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;
  
}

.location-pill::before {
  content: "";
  margin-right: 5px;
  background-image: url(../images/list-map-icon.svg);
  background-size: cover;
  width: 12px;
  height: 15px;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  top: -1px;
}

.location-cta {
  width: 100%;
  border-radius: 8px;
  margin: 22px auto 0;
  padding: 25px;
  background: #f7f6f5;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.location-cta strong {
  color: var(--theme-clr);
  display: block;
  margin-bottom: 2px;
  font-size: 20px;
}

.location-cta p {
  margin: 0;
  color: #74787e;
  
}



/* -------------------- Process -------------------- */

.process {
  background: #f5f4f3;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
  
}
.grid-3 {
  grid-template-columns: repeat(3, 1fr);
  
}
.grid-2 {
  grid-template-columns: repeat(2, 1fr);
  
}

.process-card {
  background: var(--white-clr);
  min-height: 145px;
  padding: 25px 16px;
  border: 1px solid #ecebea;
  border-radius: 8px;
}

.process-number {
  width: 40px;
  height: 40px;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f3eee4;
  color: var(--sec-theme-clr);
  font-weight: 800;
  margin-bottom: 10px;
}

.process-card h3,
.process-card .h3,
.process-card h5 {
  margin-bottom: 6px;
}

.process-card p {
  color: #73777d;
  line-height: 1.4;
  margin: 0;
}

/* -------------------- Testimonials -------------------- */

.testimonials {
  background: var(--white-clr);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.testimonial-card {
  border: 1px solid #ecebe9;
  padding: 20px 18px;
  min-height: 160px;
  background: var(--white-clr);
  border-radius: 8px;
}

.stars {
  color: var(--sec-theme-clr);
  letter-spacing: 1px;
  margin-bottom: 8px;
  font-size: 20px;
}

.testimonial-card blockquote {
  margin: 0 0 16px;
  color: #5c6167;
  line-height: 1.5;
  font-style: italic;
}

.testimonial-card strong {
  color: var(--theme-clr);
  display: block;
}

.testimonial-card span {
  color: #85898e;
  
}

/* -------------------- FAQ -------------------- */

.faq {
  background: #f5f4f3;
}

.faq-list {
  width: 760px;
  max-width: 100%;
  margin: 0 auto;
}

.faq-item {
  background: var(--white-clr);
  border: 1px solid #eae9e7;
  margin-bottom: 7px;
  border-radius: 6px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 15px 20px 12px 20px;
  border: 0;
  background: var(--white-clr);
  color: var(--theme-clr);
  font-family: var(--base-fm);
  font-size: 18px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question::after {
  content: "";
  background-image: url(../images/arrow-down-icon.svg);
  width: 12px;
  height: 8px;
  background-size: cover;
  display: inline-block;
  transition: 0.5s all;
}

.faq-answer {
  display: none;
  padding: 0 20px 20px;
  color: #6f747a;
  line-height: 1.5;
}

.faq-item.active .faq-answer {
  display: block;
}
.faq-item.active .faq-question::after {
  transform: rotate(-180deg);
}
/* -------------------- Final CTA -------------------- */

.final-cta {
  background: #082f64;
  padding: 62px 0 70px;
  text-align: center;
}

.final-cta .eyebrow {
  color: var(--sec-theme-clr);
}



.final-cta h2 {
  color: var(--white-clr);
  margin-bottom: 8px;
}

.final-cta p {
  color: var(--white-clr);
  max-width: 570px;
  margin: 0 auto 18px;
}

.final-cta .cmn-btn {
  background: var(--sec-theme-clr);
  color: var(--white-clr);

}

.final-note {
  color: var(--white-clr);
  padding-top: 35px;
}






/* FOOTER */
.ftr-scn {
  background: var(--ftr-bg-clr);
  color: var(--white-clr);
  padding-top: 40px;
}

/* GRID */
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.2fr 1.6fr;
  gap: 40px;
}

/* LOGO */
.footer-logo {
  max-width: 240px;
  margin-bottom: 15px;
}

/* TEXT */
.ftr-scn p {
  font-size: 14px;
  line-height: 1.6;
  max-width: 280px;
}

/* LINKS */
.footer-links h6,
.footer-contact h6 {
  color: var(--white-clr);
  margin-bottom: 20px;
  font-size:20px;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: #fff;
  font-size: 14px;
  transition: 0.3s;
}
.footer-links ul li a:before {
    content: '';
    width: 6px;
    height: 6px;
    border-bottom: #fff 2px solid;
    border-left: #fff 2px solid;
    display: inline-block;
    transform: rotate(-135deg);
    margin-right: 10px;
}
.footer-links ul li a:hover {
  color: var(--white-clr);
  padding-left: 5px;
}

/* SOCIAL */
.ftr-socialmedia{
  margin-top: 20px;
}
.socialmedia {
  
  display: flex;
  gap: 10px;
}

.socialmedia a {
  width: 35px;
  height: 35px;
  background: rgba(255,255,255, 0.10);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.socialmedia a:hover {
  background-color: var(--theme-clr);
}
.socialmedia img {
  width: 20px;
  height: 20px;
}

/* CONTACT */
.footer-contact p,
.footer-contact a {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--white-clr);
}
.ftr-scn .footer-contact p {
  max-width: inherit;
}
.footer-contact a:hover {
  color: var(--sec-theme-clr);
}
.footer-contact img {
  width: 16px;
  margin-top: 3px;
  filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(73deg) brightness(103%) contrast(103%);
}

/* BOTTOM BAR */
.footer-bottom {
 border-top: #5a5c5d 1px solid;
  margin-top: 30px;
  padding: 15px 0;
}

.footer-bottom-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom .copyright-part {
  color: var(--white-clr);
  font-size: 14px;
}

.footer-bottom-links a {
  color: var(--white-clr);
  margin-left: 20px;
  font-size: 14px;
}
.footer-bottom-links a:hover {
  color: var(--sec-theme-clr);
}
/***Typo Css Start****/
:root {
  --page-width: 1310px;
  --base-fm:  "Hanken Grotesk", sans-serif;
  --base-size: 16px;
  --h1-size: 45px;
  --h2-size: 38px;
  --h3-size: 30px;
  --h4-size: 25px;
  --h5-size: 21px;
  --h6-size: 18px;
  --base-clr: #43474F;
  --white-clr: #ffffff;
  --black-clr: #000000;
  --bg-clr: #F2F5F2;
  --light-bg-clr: #FBF9F8;
  --ftr-bg-clr:#001638;
  --theme-clr: #022A5D;
  --sec-theme-clr: #d39822;
}

* {
  box-sizing: border-box;
  outline: none !important;
}

body {
  margin: 0px;
  font-family: var(--base-fm);
  color: var(--base-clr);
  font-size: var(--base-size);
  line-height: 1.5;
  background-color: var(--white-clr);
  font-weight: 400;
  padding-top: 80px;
}

p {
  margin: 0 0 20px 0;
  line-height: 1.5;
}
.hd-b-paragraph {
  font-size: 18px;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, li, a {
  list-style: none;
  text-decoration: none;
  padding: 0px;
  margin: 0px;
}

h1, .h1 {
  font-size: var(--h1-size);
  color: var(--white-clr);
  font-weight: 700;
  margin: 0px 0px 25px 0px;
  font-style: normal;
  line-height: 1.1;
}

h2, .h2 {
  font-size: var(--h2-size);
  font-weight: 700;
  margin: 0px 0px 18px 0px;
  line-height: 1.2;
  color: var(--theme-clr);
}

h3, .h3 {
  font-size: var(--h3-size);
  font-weight: 600;
  margin: 0px 0px 14px 0px;
  line-height: 1.2;
  color: var(--theme-clr);
}

h4, .h4 {
  font-size: var(--h4-size);
  font-weight: 600;
  margin: 0px 0px 12px 0px;
  line-height: 1.2;
  color: var(--theme-clr);
}

h5, .h5 {
  font-size: var(--h5-size);
  font-weight: 600;
  margin: 0px 0px 10px 0px;
  line-height: 1.2;
  color: var(--theme-clr);
}

h6, .h6 {
  font-size: var(--h6-size);
 color: var(--theme-clr);
  font-weight: 600;
  margin: 0px 0px 6px 0px;
  line-height: 1.2;
}


.theme-clr {
  color: var(--theme-clr);
}
.white-bg {
  background-color: var(--theme-clr);
}
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.d-flex {
  display: flex;
  flex-flow: row wrap;
}
.f-center {
  align-items: center;
}

.f-start {
  align-items: flex-start;
}

.f-end {
  align-items: flex-end;
}

.splide__arrow {
    width: 48px;
    height: 48px;
    opacity: 1;
    background-color: rgba(255,255, 255, 0.7);
}

.splide__arrow svg {
    fill: #fff;
}
.splide__pagination {
    bottom: 20px;
}
.splide__pagination li button {
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.80);
    opacity: 1;
    width: 10px;
    height: 10px;
    padding: 0;
    transform: none !important;
}
.splide__pagination li button.is-active {
    background-color: var(--sec-theme-clr);
    width: 30px;
}

.splide__pagination li {
    margin: 0px 2px;
}

section {
  width: 100%;
  padding: 60px 0px;
}
.light-bg {
   background: var(--light-bg-clr);
}

.light-theme-bg {
  background-color: #F7F8FA;
}
.container {
  max-width: var(--page-width);
  padding: 0px 15px;
  margin: auto;
  width: 100%;
}

.cmn-btn {
  transition: 0.5s all;
  cursor: pointer;
  background: var(--theme-clr);
  border-radius: 4px;
  color: var(--white-clr);
  padding: 10px 20px 10px 20px;
  display: inline-block;
  font-weight:600;
  border: none;
  font-family: var(--base-fm);
  font-size: var(--base-size);
  vertical-align: middle;
  
  line-height: 1.6;
}

.cmn-btn:hover {
  opacity: 0.85;
}

.cmn-bdr-btn {
  transition: 0.5s all;
  cursor: pointer;
  background: transparent;
  color: var(--theme-clr);
  border-radius: 4px;
  border: var(--theme-clr) 1px solid; 
  padding: 9px 20px 9px 20px;
  display: inline-block;
  font-weight:600;
  font-family: var(--base-fm);
  font-size: var(--base-size);
  vertical-align: middle;
  line-height: 1.6;
}
.cmn-bdr-btn:hover {
   background: var(--theme-clr);
  color: var(--white-clr);
}
.cmn-btn:hover{
  opacity: 0.85;
}


.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}




.main-header {
  padding: 5px 0;
  background: var(--white-clr);
  transition: 0.5s all;
  left: 0px;
  position: fixed;
  top: 0px;
  z-index: 999;
  width: 100%;
      border-bottom: #d7d7d7 1px solid;
}
.logo {
    max-width: 150px;
}
.fixed .main-header {
  top: 0px;
  padding: 4px 0;
}
  .mobile-toggle {
    display: none;
    width: 25px;
    height: 18px;
    margin-left: 10px;
    flex-flow: row wrap;
    align-content: space-between;
  }

  

  .mobile-toggle i {
    width: 100%;
    height: 2px;
    background-color: #000;
    display: inline-block;
  }
nav.nav-menu {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
}
.nav-menu ul {
  display: flex;
  align-items: center;
}

.nav-menu ul li {
  margin: 0 15px;
   font-size:16px; 
}

.nav-menu ul li a {
    font-weight: 500;
    color: var(--base-clr);
    transition: 0.3s;
   
   
}

.nav-menu ul li a:hover,
.nav-menu ul li.current-menu-item a {
  color: var(--theme-clr);
}

.header-btn {
  margin-left: 10px;
}
.header-btn a {
  font-size: 15px;
}




/* CTA */
.cta-section {
  background: var(--theme-clr);
  color: var(--white-clr);
  background-size: cover;
  position: relative;
}

.cta-inner {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: space-between;
}

.cta-inner .cta-cont-part {
    width: calc(100% - 200px);
}

.cta-section:before {
    background-color: rgb(56, 104, 69, 0.8);
    content: '';
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 8;
}

.cta-section .cta-inner {
    position: relative;
    z-index: 9;
}

.cta-section .cta-btn {
    background-color: var(--sec-theme-clr);background-var(
    --sec-theme-clr): ;
    color: var(--white-clr);
}

.cta-section h2,
.cta-section h3 {
  color: var(--white-clr);
}

.cta-section p {
  color: #e5e5e5;
  margin-bottom: 0px;
}

.cta-btn {
  background: var(--white-clr);
  color: var(--theme-clr);
  padding: 12px 30px;
  border-radius: 6px;
  display: inline-block;
  font-weight: 600;
}

.cta-btn:hover {
  opacity: 0.85;
}


/* -------------------- Shared -------------------- */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--sec-theme-clr);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 700;
  margin-bottom: 9px;
}

.eyebrow::before {
  content: normal;
  width: 20px;
  height: 1px;
  background: var(--sec-theme-clr);
}

.section-head {
  max-width: 900px;
  margin: 0 0 34px;
  
}
.section-head.text-center {
  text-align: center;
  margin: 0 auto 34px;
}

.section-head h2 {
  margin-bottom: 8px;
}

.section-head p {
  max-width: 850px;
  color: var(--muted-clr);
  font-size: 18px;
}

.gold-text {
  color: var(--sec-theme-clr);
}

/* -------------------- Hero -------------------- */

.hero {
  padding: 0;
  background: linear-gradient(90deg, #fbfaf7 0%, #fff 58%, #f3f1ed 100%);
}

.hero-inner {
  min-height: 385px;
  display: flex;
  align-items: center;
  gap: 65px;
  padding-top: 30px;
  padding-bottom: 30px;
}

.hero-copy {
  width: calc(58% - 32px);
  padding-left: 4px;
}

.hero-copy .eyebrow {
  background: #f4f0e7;
  border-radius: 20px;
  padding: 6px 12px;
  letter-spacing: .07em;
  font-size: 12px;
}

.hero-copy .eyebrow::before {
  display: none;
}

.hero-title {
  color: var(--theme-clr);
  line-height: 1.08;
  margin-bottom: 14px;
  max-width: 720px;
}

.hero-title span {
  color: var(--sec-theme-clr);
}

.hero-copy > p {
  max-width: 650px;
  margin-bottom: 18px;
}

.hero-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 20px;
}




.hero-trust {
  display: flex;
  gap: 22px;
  color: #555a60;
  
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 5px;
}

.hero-trust-item::before {
  content: "✓";
  color: var(--sec-theme-clr);
  font-weight: 800;
}

.hero-media {
  width: 42%;
  position: relative;
  min-height: 325px;
}

.hero-photo {
  width: 100%;
  max-width: 480px;
  object-fit: cover;
  margin-left: auto;
  border-radius: 8px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, .10);
}

.hero-card {
  position: absolute;
  left: -20px;
  bottom: 25px;
  max-width: 220px;
  background: #fff;
  border: 1px solid #e9e5db;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .12);
  padding: 12px 16px;
  border-radius: 6px;
  
}

.hero-card strong {
  display: block;
  color: var(--theme-clr);
  margin-bottom: 3px;
}

.hero-card span {
  display: block;
  color: var(--base-clr);
  font-size: 14px;
  
}

/* -------------------- Trust Strip -------------------- */

.trust-strip {
  background: var(--white-clr);
  padding: 40px 0;
  border-top: 1px solid #f1f1ef;
  border-bottom: 1px solid #f1f1ef;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1.5fr);
  gap: 20px;
}

.trust-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.trust-icon {
  width: 40px;
  height: 40px;
  padding: 6px;
  border-radius: 6px;
  background-color: #F5F3F3;
  object-fit: contain;
  flex: 0 0 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.trust-icon img {
  max-width: 24px;
  max-height: 24px;
}
.trust-item strong {
  display: block;
  color: var(--theme-clr);
  margin-bottom: 3px;
}

.trust-item p {
  line-height: 1.35;
  font-size: 14px;
  margin: 0;
}

.statement {
  margin-top: 25px;
  padding: 12px 18px;
  background: #f5f6f6;
  border-left: 3px solid var(--sec-theme-clr);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  border-radius: 8px;
}

.statement strong {
  display: block;
  color: var(--theme-clr);
  margin-bottom: 2px;
  font-size: 18px;
}

.statement p {
  margin: 0;
  color: var(--base-clr);
}

.statement .cmn-btn {
  font-weight: 500;
}

/* -------------------- Services -------------------- */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.service-card {
  min-height: 205px;
  padding: 28px 20px 18px;
  background: var(--white-clr);
  border: 1px solid #f1f0ee;
  box-shadow: 0 5px 18px rgba(25, 35, 45, .035);
  display: flex;
  flex-direction: column;
  border-radius: 8px;
}

.service-icon {
  width: 48px;
  height: 48px;
  background-color: #F5F3F3;
  border-radius: 4px;
  padding: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 14px;
}
.service-icon img {
  max-height: 70%
}
.service-card h3 {
  margin: 0 0 8px;
  font-size: 20px;
}

.service-card p {
  color: #73777d;
  line-height: 1.45;
  margin: 0 0 16px;
}

.learn-link,
.read-link {
  margin-top: auto;
  color: var(--theme-clr);
  font-weight: 600;
  font-size: 14px;
  transition: 0.5s all;
  position: relative;
  left: 0px;
}
.learn-link:hover,
.read-link:hover {
  left: 4px;

}
.learn-link::after,
.read-link::after {
  content: "";
  background-image: url(../images/link-icon.svg);
  background-size: cover;
  width: 12px;
  height: 12px;
  display: inline-block;
  margin-left:5px;
  position: relative;
  top: 1px; 
  color: var(--sec-theme-clr);
}

/* -------------------- Industries -------------------- */

.industries {
  background: #f5f4f3;
}

.industries-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 55px;
  align-items: center;
}

.industries-copy .section-label {
  color: var(--sec-theme-clr);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 700;
  margin-bottom: 7px;
}

.industries-copy h2 {
  line-height: 1.12;
  margin-bottom: 11px;
}

.industries-copy > p {
  color: #676c72;
  margin-bottom: 15px;
}

.check-list li {
  margin-bottom: 7px;
  color: #1B1C1C;
  position: relative;
  padding-left: 28px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0px;
  top: 2px;
  background-image: url(../images/cycle-check-arr.svg);
  background-size: 100% 100%;
  width: 20px;
  height: 20px;
  margin-right: 7px;
  display: inline-block;
  vertical-align: middle;
}
.industries-copy .learn-link{
 font-size: 16px;
 margin-top: 20px;
 display: inline-block;
}
.industries-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.industry-card {
  min-height: 105px;
  background: var(--white-clr);
  border: 1px solid #eceae7;
  padding: 20px;
  position: relative;
  border-radius: 8px;
}

.industry-card h3, 
.industry-card .h3 {
  margin: 0 0 0px;
  font-size: 20px;
}
.industry-icon-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.industry-icon {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #EFEDED;
    border-radius: 6px;
}
.industry-card p {
  line-height: 1.35;
  margin: 0 0 15px;
  font-size: 14px;
}


/* -------------------- Why Us -------------------- */

.why-us {
  background: #082f64;
  color: var(--white-clr);
}

.why-us .section-head {
  text-align: left;
  margin-left: 0;
  margin-bottom: 27px;
}

.why-us .section-head h2 {
  color: var(--white-clr);
}

.why-us .section-head p {
  color: rgba(255,255,255,.75);
  margin-left: 0;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.why-card {
  min-height: 125px;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.08);
  padding: 16px 16px;
  border-radius: 8px;
}
.why-us .eyebrow {
  color: #F6BD54;
}
.why-number {
  display: block;
  color: #F6BD54;
  font-weight: 700;
  font-size: 30px;
  margin-bottom: 4px;
}

.why-card h3,
.why-card .h3 {
  color: var(--white-clr);
  margin-bottom: 10px;
  font-size: 22px;
}

.why-card p {
  line-height: 1.4;
  margin: 0;
}

/* -------------------- Locations -------------------- */

.locations {
  background: var(--white-clr);
}

.location-list {
      display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
 
}

.location-pill {
  padding: 2px 12px;
  text-align: center;
  border: 1px solid #efeeec;
  background: var(--white-clr);
  box-shadow: 0 2px 8px rgba(0,0,0,.025);
  color: var(--theme-clr);
  font-weight: 600;
  border-radius: 5px;
  min-height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;
  
}

.location-pill::before {
  content: "";
  margin-right: 5px;
  background-image: url(../images/list-map-icon.svg);
  background-size: cover;
  width: 12px;
  height: 15px;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  top: -1px;
}

.location-cta {
  width: 100%;
  border-radius: 8px;
  margin: 22px auto 0;
  padding: 25px;
  background: #f7f6f5;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.location-cta strong {
  color: var(--theme-clr);
  display: block;
  margin-bottom: 2px;
  font-size: 20px;
}

.location-cta p {
  margin: 0;
  color: #74787e;
  
}



/* -------------------- Process -------------------- */

.process {
  background: #f5f4f3;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
  
}
.grid-3 {
  grid-template-columns: repeat(3, 1fr);
  
}
.grid-2 {
  grid-template-columns: repeat(2, 1fr);
  
}

.process-card {
  background: var(--white-clr);
  min-height: 145px;
  padding: 25px 16px;
  border: 1px solid #ecebea;
  border-radius: 8px;
}

.process-number {
  width: 40px;
  height: 40px;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f3eee4;
  color: var(--sec-theme-clr);
  font-weight: 800;
  margin-bottom: 10px;
}

.process-card h3,
.process-card .h3,
.process-card h5 {
  margin-bottom: 6px;
}

.process-card p {
  color: #73777d;
  line-height: 1.4;
  margin: 0;
}

/* -------------------- Testimonials -------------------- */

.testimonials {
  background: var(--white-clr);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.testimonial-card {
  border: 1px solid #ecebe9;
  padding: 20px 18px;
  min-height: 160px;
  background: var(--white-clr);
  border-radius: 8px;
}

.stars {
  color: var(--sec-theme-clr);
  letter-spacing: 1px;
  margin-bottom: 8px;
  font-size: 20px;
}

.testimonial-card blockquote {
  margin: 0 0 16px;
  color: #5c6167;
  line-height: 1.5;
  font-style: italic;
}

.testimonial-card strong {
  color: var(--theme-clr);
  display: block;
}

.testimonial-card span {
  color: #85898e;
  
}

/* -------------------- FAQ -------------------- */

.faq {
  background: #f5f4f3;
}

.faq-list {
  width: 760px;
  max-width: 100%;
  margin: 0 auto;
}

.faq-item {
  background: var(--white-clr);
  border: 1px solid #eae9e7;
  margin-bottom: 7px;
  border-radius: 6px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 15px 20px 12px 20px;
  border: 0;
  background: var(--white-clr);
  color: var(--theme-clr);
  font-family: var(--base-fm);
  font-size: 18px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question::after {
  content: "";
  background-image: url(../images/arrow-down-icon.svg);
  width: 12px;
  height: 8px;
  background-size: cover;
  display: inline-block;
  transition: 0.5s all;
}

.faq-answer {
  display: none;
  padding: 0 20px 20px;
  color: #6f747a;
  line-height: 1.5;
}

.faq-item.active .faq-answer {
  display: block;
}
.faq-item.active .faq-question::after {
  transform: rotate(-180deg);
}
/* -------------------- Final CTA -------------------- */

.final-cta {
  background: #082f64;
  padding: 62px 0 70px;
  text-align: center;
}

.final-cta .eyebrow {
  color: var(--sec-theme-clr);
}



.final-cta h2 {
  color: var(--white-clr);
  margin-bottom: 8px;
}

.final-cta p {
  color: var(--white-clr);
  max-width: 570px;
  margin: 0 auto 18px;
}

.final-cta .cmn-btn {
  background: var(--sec-theme-clr);
  color: var(--white-clr);

}

.final-note {
  color: var(--white-clr);
  padding-top: 35px;
}






/* FOOTER */
.ftr-scn {
  background: var(--ftr-bg-clr);
  color: var(--white-clr);
  padding-top: 40px;
}

/* GRID */
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
  gap: 40px;
}

/* LOGO */
.footer-logo {
  max-width: 240px;
  margin-bottom: 15px;
}

/* TEXT */
.ftr-scn p {
  font-size: 14px;
  line-height: 1.6;
  max-width: 280px;
}

/* LINKS */
.footer-links h6,
.footer-contact h6 {
  color: var(--white-clr);
  margin-bottom: 20px;
  font-size:20px;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: #fff;
  font-size: 14px;
  transition: 0.3s;
}
.footer-links ul li a:before {
    content: '';
    width: 6px;
    height: 6px;
    border-bottom: #fff 2px solid;
    border-left: #fff 2px solid;
    display: inline-block;
    transform: rotate(-135deg);
    margin-right: 10px;
}
.footer-links ul li a:hover {
  color: var(--white-clr);
  padding-left: 5px;
}

/* SOCIAL */
.ftr-socialmedia{
  margin-top: 20px;
}
.socialmedia {
  
  display: flex;
  gap: 10px;
}

.socialmedia a {
  width: 35px;
  height: 35px;
  background: rgba(255,255,255, 0.10);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.socialmedia a:hover {
  background-color: var(--theme-clr);
}
.socialmedia img {
  width: 20px;
  height: 20px;
}

/* CONTACT */
.footer-contact p,
.footer-contact a {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--white-clr);
}
.footer-contact a:hover {
  color: var(--sec-theme-clr);
}
.footer-contact img {
  width: 16px;
  margin-top: 3px;
  filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(73deg) brightness(103%) contrast(103%);
}

/* BOTTOM BAR */
.footer-bottom {
 border-top: #5a5c5d 1px solid;
  margin-top: 30px;
  padding: 15px 0;
}

.footer-bottom-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom .copyright-part {
  color: var(--white-clr);
  font-size: 14px;
}

.footer-bottom-links a {
  color: var(--white-clr);
  margin-left: 20px;
  font-size: 14px;
}
.footer-bottom-links a:hover {
  color: var(--sec-theme-clr);
}


.chaty-channels-main {
 position: fixed;
 left: 20px;
 bottom: 40px;
 z-index: 10;
}

.chaty-channels-main .chaty-text {
 position: absolute;
 left: 100%;
 top: 7px;
 white-space: nowrap;
 margin-left: 10px;
 background-color: #fff;
 font-size: 12px;
 padding: 5px 10px;
 color: #000;
 border-radius: 4px;
 text-align: center;
 display: flex;
 justify-content: center;
 min-width: 59px;
 z-index: 99;
 box-shadow: #ccc 0px 0px 10px;
 transition: 0.5s all;
 opacity: 0;
 pointer-events: none;
}

.chaty-channels-list {
 display: flex;
 flex-direction: column;
 justify-content: center;
 gap: 10px;
 justify-items: center;
 transition: 0.5s all;
}

.chaty-channels-close .chaty-channels-list {
 opacity: 0;
 pointer-events: none;
}

.chaty-channels-list a {
 display: flex;
 justify-content: center;
 position: relative;
}

.chaty-channels-list a img {
 max-width: 40px;
}

.chaty-channels-list a:hover .chaty-text {
 opacity: 1;
 pointer-events: auto;
}

.chaty-c-btn {
 display: flex;
 border: none;
 width: 40px;
 padding: 0px;
 margin-top: 10px;
 background-color: transparent;
 cursor: pointer;
}

.chaty-c-btn img {
 display: none;
}

.chaty-c-btn img:first-child {
 display: block;
}

.chaty-channels-close .chaty-c-btn img {
 display: none;
}

.chaty-channels-close .chaty-c-btn img+img {
 display: block;
}


/**Contact Us Page**/
/* CONTACT SECTION */
.contact-section {
  background: #eef2ec;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: flex-start;
}

/* LEFT SIDE */
.contact-info h2 {
  margin-bottom: 15px;
}

.contact-info p {
  margin-bottom: 0px;
  max-width: 600px;
  color: var(--base-clr);
}
.contact-info p a {
  color: var(--base-clr);
}
.contact-info p a:hover {
  color: var(--theme-clr);
}
/* INFO ITEMS */
.info-item {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
   font-weight: 300;
}
.info-item div +div {
    width: calc(100% - 50px);
}
.info-item h5 {
  font-size: 20px;
  margin-bottom: 5px;
  font-weight: 600;
}
.info-item p {
  margin-bottom: 20px;

}
.info-item .icon {
  width: 50px;
  height: 50px;
  background: rgba(56, 104, 69, 0.10);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-item .icon img {
  width: 22px;
  
}

/* FORM BOX */
.contact-form-box {
  background: #fff;
  padding: 25px;
  border-radius: 8px;
}

.contact-form-box h4 {
  margin-bottom: 15px;
}

/* FORM */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.form-group {
  margin-bottom: 10px;
}

.form-group label {
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
  color: var(--black-clr);
}
.form-group label span {
  color: red;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-family: var(--base-fm);
  font-size: 14px;
}

.form-group textarea {
  height: 120px;
  resize: none;
}

/* BUTTON */
.full-btn {
  width: 100%;
  text-align: center;
}

.tagline {
    background-color: #EEF1EE;
    border-radius: 4px;
    padding: 10px 14px;
    color: var(--theme-clr);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    display: inline-block;
    line-height: 1.2;
}


.inner-bnr {
 min-height: 400px;
 display: flex;
 align-items: center;
 position: relative;
 background-size: cover;
 background-position: center center;
 padding: 20px 0px;
 flex-flow: row wrap;
}

.inner-bnr::before {
 content: "";
 position: absolute;
 inset: 0;
background: #022A5D;
background: linear-gradient(90deg, rgba(2, 42, 93, 0.94) 0%, rgba(2, 42, 93, 0.9) 50%, rgba(2, 42, 93, 0.7) 100%);
 z-index: 1;
}
.inner-bnr .container {
  position: relative;
}
.inner-bnr .inner-content {
 position: absolute;
 max-width: 830px;
 width: 100%;
 color: var(--white-clr);
 margin: auto;
 top: 50%;
 left: 0px;
 transform: translateY(-50%);
 z-index: 2;
 padding: 0px 15px;
 color: var(--white-clr);
}

.inner-bnr .inner-content h1 {
 color: var(--white-clr);
 margin-bottom: 15px;
}

.inner-bnr .inner-content p {
 color: var(--white-clr);
 font-size: 22px;
 margin-bottom: 0px;
}

.image-cont-inner {
 width: 100%;
 justify-content: space-between;
 align-items: center;
}




.image-cont-scn ul li {
 position: relative;
 color: #4B4B4B;
 margin: 4px 0px;
 padding: 0;
 align-items: center;
 display: flex;
 min-height: 32px;
 gap: 8px;
 font-weight: 500;
}

.image-cont-scn ul li:before {
 content: '';
 width: 20px;
 height: 20px;
 display: flex;
 align-items: center;
 justify-content: center;
 background-repeat: no-repeat;
 background-position: center center;
 background-size: 90% 90%;
 background-image: url(../images/cycle-check-arr.svg);
}

.image-cont-scn ol{
  padding: 0px 0px 0px 18px;
  list-style: decimal;
    
}
.image-cont-scn ol li {
  margin: 7px 0px;
    list-style: decimal;
    
}

.left-image {
 flex-direction: row-reverse;
}

.image-cont-inner .image-cont-left {
 width: 46%;
 position: relative;
}

.image-cont-inner .image-cont-left .about-img {
 overflow: hidden;
 border-radius: 10px;
}

.image-cont-inner .image-cont-img, .image-cont-inner .image-cont-img img {
 width: 100%;
 overflow: hidden;
 border-radius: 10px;
}

.image-cont-inner .image-cont-right {
 width: 50%;
 position: relative;
}

.image-cont-inner .image-cont-right img {
 width: 100%;
 overflow: hidden;
 border-radius: 10px;
}

.image-content-overlay {
 display: flex;
 flex-flow: row wrap;
 align-items: center;
 justify-content: center;
 align-content: center;
 color: var(--black-clr);
 font-size: 20px;
 font-weight: 600;
 position: absolute;
 left: 0px;
 right: 0px;
 margin: auto;
 bottom: 20px;
 max-width: 92%;
}

.ico-inner {
 background: rgba(255, 255, 255, 0.85);
 padding: 12px 25px;
 border-radius: 4px;
 text-align: center;
 box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
 min-width: 300px;
}

.image-cont-inner p:last-child {
 margin-bottom: 0px;
}

.image-cont-inner .cmn-btn {
 margin-top: 20px;
}

.image-cont-scn .tagline {
 background-color: #d9e5d9;
}


.title-desc-inner {
    display: flex;
    gap: 30px;
}

.title-desc-inner .title-desc-left {
    width: 500px;
}

.title-desc-inner .title-desc-right {
    width: calc(100% - 500px);
}

.ate-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.ate-list li {
    position: relative;
    padding-left: 28px;
    font-weight: 600;
    color: var(--theme-clr);
}
.ate-list li::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 2px;
    background-image: url(../images/cycle-check-arr.svg);
    background-size: 100% 100%;
    width: 20px;
    height: 20px;
    margin-right: 7px;
    display: inline-block;
    vertical-align: middle;
}
.ate-list li a {
    color: var(--theme-clr);
}

.ate-list li a:hover {
    color: var(--sec-theme-clr);
}

.c-custom-list {
    display: flex;
    gap: 15px;
    flex-direction: column;
    padding-top: 10px;
    padding-bottom: 10px;
}

.c-custom-list .c-custom-item {
    background-color: #F7F8FA;
    padding: 16px 20px 16px 36px;
    border-radius: 6px;
    border: #E4E8ED 1px solid;
    position: relative;
}

.c-custom-list .c-custom-item .cct-title {
    display: block;
    font-weight: 700;
    font-size: 18px;
    color: var(--theme-clr);
    margin-bottom: 4px;
}

.c-custom-list .c-custom-item:after {
    content: '';
    position: absolute;
    left: 20px;
    top: 27px;
    background-color: var(--theme-clr);
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 100%;
}

.c-custom-list .c-custom-item .cct-desc {
    font-size: 14px;
    line-height: 1.3;
    display: inline-block;
    width: 100%;
}


.service-card ul {
    border-top: #ccc 1px solid;
    padding-top: 10px;
}

.service-card ul li {
    margin: 5px 0px;
    position: relative;
    padding-left: 20px;
    font-weight: 300;
}

.service-card ul li:before {
    content: '';
    position: absolute;
    left: 0px;
    top: 7px;
    width: 8px;
    height: 4px;
    border-left: var(--sec-theme-clr) 2px solid;
    border-bottom: var(--sec-theme-clr)  2px solid;
    transform: rotate(-45deg);
}


/**Contact Us Page**/
/* CONTACT SECTION */
.contact-section {
  background: #eef2ec;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: flex-start;
}

/* LEFT SIDE */
.contact-info h2 {
  margin-bottom: 15px;
}

.contact-info p {
  margin-bottom: 0px;
  max-width: 600px;
  color: var(--base-clr);
}
.contact-info p a {
  color: var(--base-clr);
}
.contact-info p a:hover {
  color: var(--theme-clr);
}
/* INFO ITEMS */
.info-item {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
   font-weight: 300;
}
.info-item div +div {
    width: calc(100% - 50px);
}
.info-item h5 {
  font-size: 20px;
  margin-bottom: 5px;
  font-weight: 600;
}
.info-item p {
  margin-bottom: 20px;

}
.info-item .icon {
  width: 50px;
  height: 50px;
  background: rgba(56, 104, 69, 0.10);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-item .icon img {
  width: 22px;
  
}

/* FORM BOX */
.contact-form-box {
  background: #fff;
  padding: 25px;
  border-radius: 8px;
}

.contact-form-box h4 {
  margin-bottom: 15px;
}

/* FORM */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.form-group {
  margin-bottom: 10px;
}

.form-group label {
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
  color: var(--black-clr);
}
.form-group label span {
  color: red;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-family: var(--base-fm);
  font-size: 14px;
}

.form-group textarea {
  height: 120px;
  resize: none;
}

/* BUTTON */
.full-btn {
  width: 100%;
  text-align: center;
}

.tagline {
    background-color: #EEF1EE;
    border-radius: 4px;
    padding: 10px 14px;
    color: var(--theme-clr);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    display: inline-block;
    line-height: 1.2;
}


.inner-bnr {
 min-height: 400px;
 display: flex;
 align-items: center;
 position: relative;
 background-size: cover;
 background-position: center center;
 padding: 20px 0px;
 flex-flow: row wrap;
}

.inner-bnr::before {
 content: "";
 position: absolute;
 inset: 0;
background: #022A5D;
background: linear-gradient(90deg, rgba(2, 42, 93, 0.94) 0%, rgba(2, 42, 93, 0.9) 50%, rgba(2, 42, 93, 0.7) 100%);
 z-index: 1;
}
.inner-bnr .container {
  position: relative;
}
.inner-bnr .inner-content {
 position: absolute;
 max-width: 830px;
 width: 100%;
 color: var(--white-clr);
 margin: auto;
 top: 50%;
 left: 0px;
 transform: translateY(-50%);
 z-index: 2;
 padding: 0px 15px;
 color: var(--white-clr);
}

.inner-bnr .inner-content h1 {
 color: var(--white-clr);
 margin-bottom: 15px;
}

.inner-bnr .inner-content p {
 color: var(--white-clr);
 font-size: 22px;
 margin-bottom: 0px;
}

.image-cont-inner {
 width: 100%;
 justify-content: space-between;
 align-items: center;
}




.image-cont-scn ul li {
 position: relative;
 color: #4B4B4B;
 margin: 4px 0px;
 padding: 0;
 align-items: center;
 display: flex;
 min-height: 32px;
 gap: 8px;
 font-weight: 500;
}

.image-cont-scn ul li:before {
 content: '';
 width: 20px;
 height: 20px;
 display: flex;
 align-items: center;
 justify-content: center;
 background-repeat: no-repeat;
 background-position: center center;
 background-size: 90% 90%;
 background-image: url(../images/cycle-check-arr.svg);
}

.image-cont-scn ol{
  padding: 0px 0px 0px 18px;
  list-style: decimal;
    
}
.image-cont-scn ol li {
  margin: 7px 0px;
    list-style: decimal;
    
}

.left-image {
 flex-direction: row-reverse;
}

.image-cont-inner .image-cont-left {
 width: 46%;
 position: relative;
}

.image-cont-inner .image-cont-left .about-img {
 overflow: hidden;
 border-radius: 10px;
}

.image-cont-inner .image-cont-img, .image-cont-inner .image-cont-img img {
 width: 100%;
 overflow: hidden;
 border-radius: 10px;
}

.image-cont-inner .image-cont-right {
 width: 50%;
 position: relative;
}

.image-cont-inner .image-cont-right img {
 width: 100%;
 overflow: hidden;
 border-radius: 10px;
}

.image-content-overlay {
 display: flex;
 flex-flow: row wrap;
 align-items: center;
 justify-content: center;
 align-content: center;
 color: var(--black-clr);
 font-size: 20px;
 font-weight: 600;
 position: absolute;
 left: 0px;
 right: 0px;
 margin: auto;
 bottom: 20px;
 max-width: 92%;
}

.ico-inner {
 background: rgba(255, 255, 255, 0.85);
 padding: 12px 25px;
 border-radius: 4px;
 text-align: center;
 box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
 min-width: 300px;
}

.image-cont-inner p:last-child {
 margin-bottom: 0px;
}

.image-cont-inner .cmn-btn {
 margin-top: 20px;
}

.image-cont-scn .tagline {
 background-color: #d9e5d9;
}


.title-desc-inner {
    display: flex;
    gap: 30px;
}

.title-desc-inner .title-desc-left {
    width: 500px;
}

.title-desc-inner .title-desc-right {
    width: calc(100% - 500px);
}

.ate-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.ate-list li {
    position: relative;
    padding-left: 28px;
    font-weight: 600;
    color: var(--theme-clr);
}
.ate-list li::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 2px;
    background-image: url(../images/cycle-check-arr.svg);
    background-size: 100% 100%;
    width: 20px;
    height: 20px;
    margin-right: 7px;
    display: inline-block;
    vertical-align: middle;
}
.ate-list li a {
    color: var(--theme-clr);
}

.ate-list li a:hover {
    color: var(--sec-theme-clr);
}

.c-custom-list {
    display: flex;
    gap: 15px;
    flex-direction: column;
    padding-top: 10px;
    padding-bottom: 10px;
}

.c-custom-list .c-custom-item {
    background-color: #F7F8FA;
    padding: 16px 20px 16px 36px;
    border-radius: 6px;
    border: #E4E8ED 1px solid;
    position: relative;
}

.c-custom-list .c-custom-item .cct-title {
    display: block;
    font-weight: 700;
    font-size: 18px;
    color: var(--theme-clr);
    margin-bottom: 4px;
}

.c-custom-list .c-custom-item:after {
    content: '';
    position: absolute;
    left: 20px;
    top: 27px;
    background-color: var(--theme-clr);
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 100%;
}

.c-custom-list .c-custom-item .cct-desc {
    font-size: 14px;
    line-height: 1.3;
    display: inline-block;
    width: 100%;
}


.service-card ul {
    border-top: #ccc 1px solid;
    padding-top: 10px;
}

.service-card ul li {
    margin: 5px 0px;
    position: relative;
    padding-left: 20px;
    font-weight: 300;
}

.service-card ul li:before {
    content: '';
    position: absolute;
    left: 0px;
    top: 7px;
    width: 8px;
    height: 4px;
    border-left: var(--sec-theme-clr) 2px solid;
    border-bottom: var(--sec-theme-clr)  2px solid;
    transform: rotate(-45deg);
}
