/*! Normalise CSS !*/
@import url(normalize.css);
/*!Root Css!*/
@import url(root.css);
/*! Google Fonts !*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&display=swap");
/*! Google Fonts !*/
* {
  margin: 0rem;
  padding: 0rem;
  box-sizing: border-box;
}

html {
  width: 100%;
  height: 100%;
  margin: 0rem;
  padding: 0rem;
}

body {
  margin: 0rem;
  padding: 0rem;
  color: var(--Black, #000);
  /* Paragraph */
  font-family: Poppins;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem;
  /* 150% */
  /* 150% */
  background: #fff;
  overflow-x: hidden;
}

p {
  color: var(--Black, #000);
  /* Paragraph */
  font-family: Poppins;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem;
  /* 150% */
  /* 150% */
  margin-bottom: 1.25rem;
}
p:last-child {
  margin: 0;
}

h1 {
  padding: 0;
  margin: 0;
  margin-bottom: 1.5rem;
  color: var(--White, #fff);
  /* H1 */
  font-family: "Playfair Display";
  font-size: 3.75rem;
  font-style: normal;
  font-weight: 700;
  line-height: 5.3125rem;
  /* 141.667% */
  text-transform: capitalize;
  /* 4.124rem */
}

h2 {
  padding: 0;
  margin: 0;
  margin-bottom: 3rem;
  color: var(--Black, #000);
  font-family: "Playfair Display";
  font-size: 2.5rem;
  font-style: normal;
  font-weight: 600;
  line-height: 3.5rem;
  /* 140% */
  text-transform: capitalize;
  /* 4.124rem */
}

h3 {
  padding: 0;
  margin: 0;
  color: #000;
  font-family: Poppins;
  font-size: 1.75rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5rem;
  /* 85.714% */
  margin-bottom: 1rem;
}

h4 {
  padding: 0;
  margin: 0;
  margin-bottom: 0.5rem;
  color: var(--Blue, #023e73);
  /* H4(Playfair) */
  font-family: "Playfair Display";
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: capitalize;
  /* 2.062rem */
}

h5 {
  padding: 0;
  margin: 0;
  color: #000;
  /* H4 */
  font-family: Poppins;
  font-size: 1.375rem;
  font-style: normal;
  font-weight: 500;
  line-height: 2rem;
  /* 145.455% */
  text-transform: capitalize;
  margin-bottom: 1rem;
}

h6 {
  padding: 0;
  margin: 0;
  color: var(--Blue, #0808ed);
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.875rem;
  /* 150% */
  margin-bottom: 1rem;
}

img {
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-object-fit: cover;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
ul li {
  margin: 0;
  padding: 0;
}

a {
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}

.btn {
  position: relative;
  display: inline-flex;
  padding: 1.2rem 0.82rem;
  color: var(--White, #fff);
  z-index: 1;
  min-width: 254px;
  font-family: Poppins;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  border: none;
  background: black;
  border-radius: 3.125rem;
  overflow: hidden;
  transition: 0.3s ease-in-out;
  align-items: center;
  justify-content: center;
}
.btn:before {
  content: "";
  position: absolute;
  background: linear-gradient(277deg, #2a6026 -93.68%, #0491ce 115.44%);
  inset: 0;
  opacity: 1;
  z-index: -1;
  transition: 0.3s ease-in-out;
}
.btn span {
  position: relative;
  z-index: 1;
}
.btn:focus, .btn:active:focus {
  outline: 0;
  box-shadow: none;
  background: black;
  color: white;
}
.btn:hover {
  border: none;
  background: #17797b;
  color: white;
}
.btn:hover:before {
  opacity: 0;
}
.btn.btn-transparent {
  background-color: transparent;
  border-radius: 3.125rem;
  border: 1px solid #fff;
  color: white;
}
.btn.btn-transparent:hover {
  background-color: white;
  color: #0491ce;
}
.btn.btn-transparent:before {
  display: none;
}
.btn.btn-white {
  background-color: white;
  color: #000;
}
.btn.btn-white:before {
  display: none;
}
.btn.btn-white:hover {
  background-color: #0491ce;
  color: #fff;
}

input:not([type=submit])::-moz-placeholder, textarea::-moz-placeholder, select::-moz-placeholder {
  opacity: 0.5;
}

input:not([type=submit])::placeholder,
textarea::placeholder,
select::placeholder {
  opacity: 0.5;
}

input:not([type=submit], [type=radio], [type=checkbox]),
select,
textarea {
  display: block;
  width: 100%;
  padding: 0.725rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid #e2e8f0;
  background: #fff;
  color: #000;
  font-family: Poppins;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  outline: none;
  box-shadow: none;
  line-height: normal;
  transition: all 0.3s ease-in-out;
  position: relative;
}
input:not([type=submit], [type=radio], [type=checkbox])::-moz-placeholder, select::-moz-placeholder, textarea::-moz-placeholder {
  color: #757578;
}
input:not([type=submit], [type=radio], [type=checkbox])::placeholder,
select::placeholder,
textarea::placeholder {
  color: #757578;
}

select {
  background-image: url(../images/select-arow.svg);
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1.5rem 1.5rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding-right: 4rem;
}

textarea {
  height: 8.31rem;
  resize: none;
  overflow: hidden;
  display: block;
  width: 100%;
}

textarea:focus {
  outline: none;
  box-shadow: none;
  background: #fff;
  box-shadow: none;
}

select:focus {
  border: 0.0625rem solid #cccccc;
  outline: none;
  background-color: #fff;
}

select option {
  color: #1d1d1d;
  font-size: 0.875rem;
  font-weight: 400;
}

label {
  color: var(--Blue, #023e73);
  font-family: Poppins;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.3125rem;
  /* 150% */
  margin-bottom: 0.47rem;
  display: block;
}

.checkbox {
  display: inline-block;
}
.checkbox input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}
.checkbox label {
  position: relative;
  cursor: pointer;
  color: #090914;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5rem;
  margin: 0;
  display: grid;
  grid-template-columns: 1.5rem 1fr;
  align-items: start;
  gap: 0.5rem;
  text-align: left;
}
.checkbox label:before {
  content: "";
  -webkit-appearance: none;
  background-color: transparent;
  border: 0.0625rem solid #bbc4cd;
  padding: 0.6875rem;
  display: inline-block;
  position: relative;
  cursor: pointer;
  margin-right: 0.5rem;
  border-radius: 0.25rem;
  top: 0;
}
.checkbox label a {
  text-decoration: none;
  color: var(--accent-color-2, #ed7005);
}
.checkbox input:checked + label::before {
  background: #fff;
}
.checkbox input:checked + label:after {
  position: absolute;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f00c";
  left: 0.375rem;
  font-size: 0.8125rem;
  top: 0.0625rem;
  color: #121212;
}

.defaultpadding {
  padding: 7.5rem 0;
}

.defaultpadding5 {
  padding: 5rem 0;
}

.common-header {
  text-align: center;
}

.badge {
  display: inline-flex;
  padding: 0.375rem 0.75rem;
  align-items: center;
  gap: 0.5rem;
  border-radius: 3.125rem;
  background: rgba(255, 255, 255, 0.1);
  color: var(--White, #fff);
  /* Small Tag */
  font-family: Poppins;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.25rem;
  /* 142.857% */
  text-transform: capitalize;
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
}
.badge:before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  position: absolute;
  left: 0.75rem;
  top: 0.75rem;
  background-color: white;
  border-radius: 30px;
}

section:has(+ .cta),
div:has(+ .cta) {
  padding-bottom: 22.44rem;
}

.mainhd {
  background: #fff;
  box-shadow: 0 0.25rem 1.25rem 0 rgba(0, 0, 0, 0.08);
}
.mainhd .headerrow {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mainhd .headerrow .logo {
  max-width: 7.1875rem;
  width: 100%;
}
.mainhd .headerrow .stellarnav ul li.current-menu-item {
  position: relative;
}
.mainhd .headerrow .stellarnav ul li.current-menu-item::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #548019;
  bottom: 0;
  left: 0;
}
.mainhd .rightarea {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.mainhd .stellarnav.mobile li.mobile-contact-btn-wrap {
  padding: 0.625rem 1rem;
}
.mainhd .stellarnav.mobile li.mobile-contact-btn-wrap .btn {
  color: #fff !important;
  border: none;
}

.banner {
  position: relative;
}
.banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(270deg, rgba(2, 62, 115, 0) 27.2%, #023e73 73.63%);
}
.banner img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.banner .container {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.banner .container .bannertext {
  max-width: 43.4rem;
  width: 100%;
}
.banner .container .bannertext p {
  color: #fff;
  /* Paragraph */
  font-family: Poppins;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem;
  /* 150% */
  margin-bottom: 3.13rem;
}
.banner .btncontainer {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 3.12rem;
}
.banner .btncontainer .btn {
  max-width: 16rem;
  width: 100%;
  text-align: center;
}
.banner .callus span {
  color: var(--White, #fff);
  font-family: Poppins;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.banner .callus span i {
  font-size: 20px;
}
.banner .callus span a {
  color: var(--White, #fff);
  font-family: Poppins;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.banner .callus span a:hover {
  color: #0491ce;
}

.core-values {
  text-align: center;
}
.core-values .badge {
  background: rgba(4, 145, 206, 0.1);
  color: var(--Black, #000);
}
.core-values .badge:before {
  background: linear-gradient(277deg, #2a6026 -93.68%, #0491ce 115.44%), var(--Black, #000);
}
.core-values .row .col-lg-3:nth-child(1) .corevalues-box:before {
  background-color: #e6f3ff;
}
.core-values .row .col-lg-3:nth-child(1) .icon {
  background-color: #023e73;
}
.core-values .row .col-lg-3:nth-child(2) .corevalues-box:before {
  background-color: #e8ffe6;
}
.core-values .row .col-lg-3:nth-child(2) .icon {
  background-color: #2a6026;
}
.core-values .row .col-lg-3:nth-child(3) .corevalues-box:before {
  background-color: #daf4ff;
}
.core-values .row .col-lg-3:nth-child(3) .icon {
  background-color: #0491ce;
}
.core-values .row .col-lg-3:nth-child(4) .corevalues-box:before {
  background-color: #e6f3ff;
}
.core-values .row .col-lg-3:nth-child(4) .icon {
  background-color: #023e73;
}

.corevalues-box {
  text-align: left;
  position: relative;
  min-height: 21.1875rem;
  padding: 1.25rem;
  padding-right: 2.81rem;
  padding-bottom: 4.19rem;
  overflow: hidden;
  border-radius: 30px;
}
.corevalues-box:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #e6f3ff;
  -webkit-mask-image: url("../images/stand-shape.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: cover;
  mask-image: url("../images/stand-shape.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: cover;
}
.corevalues-box .bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.corevalues-box .content {
  position: relative;
  z-index: 1;
}
.corevalues-box .content .icon {
  display: flex;
  width: 4.875rem;
  height: 4.875rem;
  padding: 1.1875rem;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
  border-radius: 2.4375rem;
  background: var(--Blue, #023e73);
  margin-bottom: 2.69rem;
}

.about-us {
  background: rgba(4, 145, 206, 0.06);
}
.about-us .badge {
  background: linear-gradient(274deg, #2a6026 -70.06%, #0491ce 146.4%);
}
.about-us .imgcontainer {
  position: relative;
}
.about-us .imgcontainer .color-logo {
  position: absolute;
  bottom: 20px;
  right: 0px;
  max-width: 104px;
  width: 100%;
}
.about-us .masked-image {
  -webkit-mask-mode: alpha;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: 100% 100%;
  mask-mode: alpha;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: 100% 100%;
  overflow: hidden;
}
.about-us .masked-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.about-us .text {
  text-align: left;
  display: flex;
  flex-direction: column;
  height: 100%;
  align-items: flex-start;
  padding-top: 6.22rem;
}
.about-us .text h2 {
  margin-bottom: 1.5rem;
}
.about-us .text p {
  color: var(--Text, #727272);
}
.about-us .verticalarea {
  padding: 2.5rem 0;
  padding-right: 3.125rem;
}
.about-us .verticalarea:first-child {
  border-bottom: 1px solid #dedddd;
}
.about-us .row {
  margin-bottom: 3rem;
}
.about-us .row:last-child {
  margin-bottom: 0;
}
.about-us .row:nth-child(2n) {
  flex-direction: row-reverse;
}
.about-us .row:nth-child(2n) .verticalarea {
  padding: 0;
  border: none;
  padding-right: 3.125rem;
}
.about-us.who-we-are {
  background-color: white;
}
.about-us.who-we-are .text p {
  margin-bottom: 1.5rem;
}
.about-us.who-we-are .text .btn {
  margin-top: 1.25rem;
}
.about-us.about-us-edit .icon {
  display: flex;
  width: 4.625rem;
  height: 4.625rem;
  padding: 0.9375rem;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  border-radius: 0.75rem;
  background: rgba(64, 175, 157, 0.1);
}
.about-us.about-us-edit .icon img {
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
  aspect-ratio: 1/1;
}
.about-us.about-us-edit .textinner {
  margin-top: 1.81rem;
  padding-top: 2.5rem;
  border-top: 1px solid #dedddd;
}
.about-us.about-us-edit .textinner h3 {
  color: var(--Dark, #040919);
  /* H3 */
  font-family: "Playfair Display";
  font-size: 1.75rem;
  font-style: normal;
  font-weight: 600;
  line-height: 3.5rem;
  /* 200% */
  text-transform: capitalize;
  margin-bottom: 1.5rem;
}
.about-us h3 {
  color: var(--Dark, #040919);
  /* H3 */
  font-family: "Playfair Display";
  font-size: 1.75rem;
  font-style: normal;
  font-weight: 600;
  line-height: 3.5rem;
  /* 200% */
  text-transform: capitalize;
  margin-bottom: 1.5rem;
}

.what-we-offer .badge {
  background: rgba(4, 145, 206, 0.1);
  color: #000;
}
.what-we-offer .badge:before {
  background: linear-gradient(277deg, #2a6026 -93.68%, #0491ce 115.44%);
}
.what-we-offer h2 {
  margin-bottom: 1.5rem;
}
.what-we-offer p {
  max-width: 41rem;
  width: 100%;
  margin: 0 auto;
  color: var(--Text, #727272);
}
.what-we-offer .services-section {
  margin-top: 3rem;
  text-align: center;
}
.what-we-offer .services-section .services-grid {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 420px) 1fr;
  grid-template-rows: auto auto;
  gap: 1.25rem 1.88rem;
  align-items: stretch;
  /* ---------- Desktop Layout ---------- */
}
.what-we-offer .services-section .services-grid .service-card:nth-child(1) {
  grid-column: 1;
  grid-row: 1;
}
.what-we-offer .services-section .services-grid .service-image {
  grid-column: 2;
  grid-row: 1/span 2;
}
.what-we-offer .services-section .services-grid .service-card:nth-child(3) {
  grid-column: 1;
  grid-row: 2;
}
.what-we-offer .services-section .services-grid .service-card:nth-child(4) {
  grid-column: 3;
  grid-row: 2;
}
.what-we-offer .services-section .services-grid .service-card:nth-child(5) {
  grid-column: 3;
  grid-row: 2;
}
.what-we-offer .services-section .services-grid {
  /* ---------- Tablet ---------- */
}
@media (max-width: 991px) {
  .what-we-offer .services-section .services-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .what-we-offer .services-section .services-grid .service-card,
  .what-we-offer .services-section .services-grid .service-image {
    grid-column: auto !important;
    grid-row: auto !important;
  }
  .what-we-offer .services-section .services-grid .service-image {
    order: -1;
    grid-column: span 2 !important;
    width: 100%;
    max-width: 34rem;
    margin: 0 auto;
  }
}
.what-we-offer .services-section .services-grid {
  /* ---------- Mobile ---------- */
}
@media (max-width: 767px) {
  .what-we-offer .services-section .services-grid {
    grid-template-columns: 1fr;
  }
  .what-we-offer .services-section .services-grid .service-image {
    grid-column: auto !important;
    max-width: 100%;
  }
}
.what-we-offer .services-section .service-image {
  border-radius: 1.25rem;
  overflow: hidden;
  height: 100%;
}
.what-we-offer .services-section .service-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media (max-width: 991px) {
  .what-we-offer .services-section .service-image {
    aspect-ratio: 4/5;
  }
}
@media (max-width: 767px) {
  .what-we-offer .services-section .service-image {
    aspect-ratio: 1/1.2;
  }
}
.what-we-offer .services-section .btn {
  margin-top: 3rem;
}

.servicearea {
  position: relative;
  overflow: hidden;
  background: linear-gradient(318deg, #2a6026 -54.31%, #023e73 79.1%);
}
.servicearea .badge {
  background-color: white;
  color: var(--Black, #000);
}
.servicearea .badge:before {
  background: linear-gradient(275deg, #2a6026 -32.35%, #0491ce 170.47%), var(--Black, #000);
}
.servicearea .common-header h2 {
  color: white;
  margin-bottom: 1.5rem;
}
.servicearea .common-header p {
  color: white;
  max-width: 41rem;
  margin: 0 auto;
  text-align: center;
}
.servicearea .county-btn-row {
  margin-top: 3.13rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  row-gap: 1.375rem;
  align-self: stretch;
  flex-wrap: wrap;
}
.servicearea .county-btn-row .county-btn {
  display: flex;
  max-width: 19.125rem;
  width: 100%;
  padding: 1.5rem 1.25rem;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
  color: var(--White, #fff);
  text-align: center;
  font-family: Poppins;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem;
  /* 150% */
  text-transform: capitalize;
  transition: all 0.3s ease-in-out;
}
.servicearea .county-btn-row .county-btn img {
  transition: all 0.3s ease-in-out;
}
.servicearea .county-btn-row .county-btn:hover {
  background: #fff;
  color: var(--Blue, #023e73);
}
.servicearea .county-btn-row .county-btn:hover img {
  filter: brightness(0) saturate(100%) invert(15%) sepia(42%) saturate(4078%) hue-rotate(194deg) brightness(92%) contrast(98%);
}
.servicearea .county-main-img {
  margin-top: 3rem;
  border-radius: 1.25rem;
  background: #fff;
  overflow: hidden;
}
.servicearea .county-main-img img {
  width: 100%;
}
.servicearea:before {
  content: "";
  position: absolute;
  top: -18.62rem;
  right: -14.44rem;
  width: 41.875rem;
  height: 41.875rem;
  border-radius: 41.875rem;
  background: rgba(255, 255, 255, 0.06);
  z-index: 0;
  pointer-events: none;
}
.servicearea:after {
  content: "";
  position: absolute;
  bottom: -14.69rem;
  left: -14.19rem;
  width: 41.875rem;
  height: 41.875rem;
  border-radius: 41.875rem;
  background: rgba(255, 255, 255, 0.06);
  z-index: 0;
  pointer-events: none;
}

.service-card {
  border-radius: 1.25rem;
  border: 1px solid #9f9f9f;
  background: #fff;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: 0.3s ease;
  text-align: left;
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  transform: translateY(-4px);
}
.service-card .icon {
  position: relative;
  display: flex;
  width: 4.625rem;
  height: 4.625rem;
  padding: 0.9375rem;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  flex-shrink: 0;
  border-radius: 0.75rem;
  background: rgba(64, 175, 157, 0.1);
  margin-bottom: 1.5rem;
}
.service-card .icon img {
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
  aspect-ratio: 1/1;
  display: block;
}
.service-card .content {
  position: relative;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.service-card h4 {
  font-size: 1.5rem;
  line-height: 1.3;
  margin-bottom: 1rem;
  transition: 0.3s ease;
  color: #123d6b;
}
.service-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: #667085;
  margin-bottom: auto;
  transition: 0.3s ease;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.service-card:before {
  content: "";
  background: linear-gradient(277deg, #2a6026 -93.68%, #0491ce 115.44%);
  position: absolute;
  z-index: 0;
  inset: 0;
  opacity: 0;
  transition: 0.3s ease;
}
.service-card:hover:before {
  opacity: 1;
}
.service-card:hover .icon {
  background-color: #fff;
}
.service-card:hover h4,
.service-card:hover p,
.service-card:hover .service-btn {
  color: white;
}
.service-card:hover .service-btn span img {
  filter: brightness(0) invert(1);
}
.service-card .service-btn {
  margin-top: 2rem;
}

.service-btn {
  margin-top: 2rem;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--Dark-Green, #2a6026);
  font-family: Poppins;
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.5rem;
  margin-top: 0;
  text-transform: capitalize;
  transition: 0.3s ease;
}
.service-btn span {
  transition: 0.3s ease;
}
.service-btn span img {
  width: 100%;
  transition: 0.3s ease;
}
.service-btn:hover span {
  transform: translateX(4px);
}

.contact-us .badge {
  background: rgba(4, 145, 206, 0.1);
  color: #000;
}
.contact-us .badge:before {
  background: linear-gradient(277deg, #2a6026 -93.68%, #0491ce 115.44%);
}
.contact-us h2 {
  margin-bottom: 0.75rem;
}
.contact-us p {
  max-width: 41rem;
  width: 100%;
  margin: 0 auto;
  color: var(--Text, #727272);
}
.contact-us p a {
  color: var(--Text, #727272);
}
.contact-us p a:hover {
  color: #0491ce;
}
.contact-us .common-header {
  margin-bottom: 3rem;
}
.contact-us .contact-box h6 {
  color: #0f2057;
  font-family: Poppins;
  font-weight: 500;
  line-height: 1.875rem;
  /* 150% */
  margin-bottom: 0.44rem;
}
.contact-us .contact-box p {
  color: #72809e;
  font-family: Poppins;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem;
  /* 150% */
}
.contact-us .contact-box p a {
  color: #72809e;
}
.contact-us .contact-box ul {
  display: flex;
  width: 21rem;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
  margin-top: 2.5rem;
}
.contact-us .contact-box ul li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  align-self: stretch;
}
.contact-us .contact-box ul li .icon {
  display: flex;
  width: 3rem;
  height: 3rem;
  padding: 0 0.75rem;
  justify-content: center;
  align-items: center;
  border-radius: 0.5rem;
  background: rgba(4, 145, 206, 0.1);
}
.contact-us .send-message-box {
  border-radius: 1.25rem;
  overflow: hidden;
  padding: 1.875rem;
  border: 1px solid #098AB7;
  background: #FDFDFD;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#2A6026", endColorstr="#0491CE", GradientType=0);
  position: relative;
  z-index: 0;
}
.contact-us .send-message-box:before {
  content: "";
  position: absolute;
  inset: 1px;
  background: #fdfdfd;
  border-radius: 1.15rem;
  z-index: 0;
}
.contact-us .send-message-box .send-message-box-inner {
  position: relative;
  z-index: 1;
}
.contact-us .send-message-box h4 {
  margin-bottom: 2.5rem;
  color: #000;
  /* H4(Playfair) */
  font-family: "Playfair Display";
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: capitalize;
  margin-bottom: 0.75rem;
}
.contact-us .send-message-box .form-container {
  margin-top: 2.5rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.4375rem;
  align-self: stretch;
}
.contact-us .send-message-box .form-container .form-container-inner,
.contact-us .send-message-box .form-container .form-btn-row {
  width: 100%;
}
.contact-us .send-message-box .form-container .form-container-inner .btn,
.contact-us .send-message-box .form-container .form-btn-row .btn {
  width: 100%;
  position: relative;
}
.contact-us .send-message-box .form-container .form-container-inner .btn input[type=submit],
.contact-us .send-message-box .form-container .form-btn-row .btn input[type=submit] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}
.contact-us .send-message-box .form-container input.wpcf7-not-valid {
  border: 1px solid #c75050 !important;
}
.contact-us .send-message-box .wpcf7-response-output {
  background-color: #c75050;
  color: #fff;
  border-radius: 0.5rem;
  font-size: 0.9rem;
  border-color: #c75050 !important;
}

.insights {
  background: rgba(10, 137, 180, 0.06);
  padding-bottom: 22.74rem;
}
.insights .badge {
  background: linear-gradient(274deg, #2a6026 -70.06%, #0491ce 146.4%);
}
.insights .btn-container {
  text-align: center;
  margin-top: 3rem;
}
.insights .btn-container .btn {
  max-width: 15rem;
  width: 100%;
}

.blog-box .imgcontainer {
  margin-bottom: 1.56rem;
}
.blog-box .imgcontainer .masked-image {
  -webkit-mask-mode: alpha;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: 100% 100%;
  mask-mode: alpha;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: 100% 100%;
  overflow: hidden;
}
.blog-box .imgcontainer .masked-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: all 0.3s ease-in-out;
}
.blog-box .blog-text h5 {
  margin-bottom: 1rem;
}
.blog-box .blog-text p {
  color: var(--Text, #727272);
  /* Paragraph */
  font-family: Poppins;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem;
  /* 150% */
  margin-bottom: 1rem;
}
.blog-box .blog-text .service-btn-outer {
  padding-top: 1rem;
  border-top: 1px dashed #cfcfcf;
}
.blog-box .blog-text .service-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--Dark-Green, #2a6026);
  font-family: Poppins;
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.5rem;
  /* 150% */
  text-transform: capitalize;
  transition: 0.3s ease;
}
.blog-box .blog-text .service-btn span {
  transition: 0.3s ease;
}
.blog-box .blog-text .service-btn:hover span {
  transform: translateX(4px);
}
.blog-box:hover .masked-image img {
  transform: scale(1.05);
}

.cta {
  margin-top: -14.94rem;
  text-align: center;
  margin-bottom: -118px;
  position: relative;
  z-index: 1;
}
.cta .cta-inner .cta-inner-gradient {
  padding: 3.75rem 2rem;
  border-radius: 1.25rem;
  overflow: hidden;
  background: #83C6DF;
  position: relative;
  z-index: 0;
}
.cta .cta-inner .cta-inner-gradient:before {
  content: "";
  position: absolute;
  inset: 2px;
  background: #fdfdfd;
  border-radius: 1.15rem;
  z-index: 0;
}
.cta .cta-inner .cta-inner-gradient:after {
  content: "";
  position: absolute;
  background: #fdfdfd url(../images/curve-line2.svg) no-repeat 0 0;
  background-size: cover !important;
  /* height: 22.375rem; */
  inset: 2px;
  border-radius: 1.15rem;
  z-index: 0;
}
.cta .cta-inner .cta-inner-gradient h2 {
  position: relative;
  margin-bottom: 1.5rem;
  z-index: 1;
  color: var(--Blue, #023e73);
}
.cta .cta-inner .cta-inner-gradient p {
  position: relative;
  max-width: 38.25rem;
  margin: 0 auto 3.13rem;
  z-index: 1;
}
.cta .cta-inner .btn {
  z-index: 1;
}

footer {
  background: #00335F;
  position: relative;
  overflow: hidden;
  padding-top: 11.19rem;
}
footer:before {
  content: "";
  position: absolute;
  bottom: -17.9375rem;
  left: -16rem;
  width: 41.875rem;
  height: 41.875rem;
  border-radius: 41.875rem;
  background: rgba(255, 255, 255, 0.06);
  z-index: 0;
  pointer-events: none;
}
footer:after {
  content: "";
  position: absolute;
  bottom: -25.5375rem;
  left: -19rem;
  width: 41.875rem;
  height: 41.875rem;
  border-radius: 41.875rem;
  background: rgba(255, 255, 255, 0.06);
  z-index: 0;
  pointer-events: none;
}
footer .mxw19 {
  max-width: 19.1rem;
  width: 100%;
}
footer .mxw12-7 {
  max-width: 12.7rem;
  width: 100%;
}
footer .mxw12-3 {
  max-width: 12.3rem;
  width: 100%;
}
footer .mxw26-1 {
  max-width: 26.1rem;
  width: 100%;
}
footer .ft-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 3.98rem;
}
footer .ft-row .ft-bx h6 {
  color: var(--White, #fff);
  font-family: Poppins;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.5rem;
  /* 120% */
  margin-bottom: 1.5rem;
  text-transform: none;
}
footer .ft-row .ft-bx p {
  color: #c4c4c4;
  font-family: Poppins;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.75rem;
  /* 175% */
  letter-spacing: 0.02rem;
}
footer .ft-row .ft-bx ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
  align-self: stretch;
}
footer .ft-row .ft-bx ul li {
  color: #c4c4c4;
  font-family: Poppins;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem;
  /* 150% */
}
footer .ft-row .ft-bx ul li a {
  color: #c4c4c4;
}
footer .ft-row .ft-bx ul li a:hover {
  color: white;
}
footer .ft-row .ft-bx .socials ul {
  display: flex;
  align-items: center;
  gap: 0.81588rem;
  flex-direction: row;
}
footer .ft-row .ft-bx .socials ul li a {
  border: 1.88px solid white;
  width: 1.90369rem;
  height: 1.90369rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
}
footer .ft-row .ft-bx .socials ul li a:hover {
  background-color: white;
  color: #023e73;
}
footer .ft-row .ft-bx .socials ul li a i {
  font-size: 0.875rem;
}
footer .ft-row .ft-bx .newsletter-outer {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2.25rem;
}
footer .ft-row .ft-bx .newsletter-outer input[type=email] {
  border-radius: 3.125rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.6875rem 1rem;
  border: none;
  color: #a2acc3;
  font-family: Poppins;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem;
  /* 150% */
}
footer .ft-row .ft-bx .newsletter-outer input[type=email]::-moz-placeholder {
  color: #bdbdbd;
}
footer .ft-row .ft-bx .newsletter-outer input[type=email]::placeholder {
  color: #bdbdbd;
}
footer .ft-row .ft-bx .newsletter-outer form {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0;
}
footer .ft-row .ft-bx .newsletter-outer form .wpcf7-response-output {
  width: 100%;
  color: #fff;
  margin: 1rem 0 0;
  border-color: red;
}
footer .ft-row .ft-bx .newsletter-outer .wpcf7-form-control-wrap {
  display: block;
  width: 65%;
}
footer .ft-row .ft-bx .newsletter-outer .btn {
  padding: 0.625rem 1.5rem;
  background-color: white;
  color: var(--Black, #0f2057);
  min-width: auto;
}
footer .ft-row .ft-bx .mail-and-location p a {
  display: flex;
  height: 2rem;
  align-items: center;
  gap: 0.75rem;
  align-self: stretch;
  color: #c4c4c4;
  font-family: Poppins;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
footer .ft-row .ft-bx .mail-and-location p a img {
  width: 2rem;
}
footer .ft-row .ft-logo-bx .ftlogo {
  max-width: 7.3125rem;
  width: 100%;
  margin-bottom: 1.25rem;
}
footer .ft-row .ft-logo-bx .ftlogo img {
  width: 100%;
  aspect-ratio: 117/112;
}

.copyright {
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 2.75rem;
  padding-bottom: 2.69rem;
}
.copyright .copyright-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
}
.copyright .copyright-row p {
  color: #c4c4c4;
  font-family: Poppins;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 0;
}
.copyright .copyright-row ul {
  display: flex;
  align-items: center;
}
.copyright .copyright-row ul li {
  color: #c4c4c4;
  font-family: Poppins;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  position: relative;
}
.copyright .copyright-row ul li:before {
  content: "/";
  margin: 0 0 0px 3px;
}
.copyright .copyright-row ul li:first-child:before {
  display: none;
}
.copyright .copyright-row ul li a {
  color: #c4c4c4;
}
.copyright .copyright-row ul li a:hover {
  color: white;
}

.inner-banner {
  background: linear-gradient(355deg, #2A6026 -54.31%, #023E73 79.1%);
  height: 12.5rem;
  position: relative;
  overflow: hidden;
}
.inner-banner .container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.inner-banner .container .bannertext {
  height: 100%;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
}
.inner-banner .container .bannertext h1 {
  color: var(--White, #fff);
  text-align: center;
  font-family: Poppins;
  font-size: 3rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 0;
}
.inner-banner .container .bannertext ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.inner-banner .container .bannertext ul li {
  position: relative;
}
.inner-banner .container .bannertext ul li + li:before {
  content: "";
  background: url(../images/innerbanner-arrow.svg) no-repeat 0 0;
  width: 0.5rem;
  height: 0.875rem;
  display: inline-block;
  position: relative;
  margin-right: 8px;
  top: 1px;
}
.inner-banner .container .bannertext ul li a,
.inner-banner .container .bannertext ul li span {
  color: white;
  font-weight: 300;
}
.inner-banner:before {
  content: "";
  width: 20rem;
  height: 20rem;
  border-radius: 20rem;
  background: rgba(255, 255, 255, 0.06);
  position: absolute;
  bottom: -13.13rem;
  left: -8.56rem;
}
.inner-banner:after {
  content: "";
  width: 20rem;
  height: 20rem;
  border-radius: 20rem;
  background: rgba(255, 255, 255, 0.06);
  position: absolute;
  top: -8.94rem;
  right: -5.94rem;
}

.contact-sec {
  padding-bottom: 22.44rem;
}
.contact-sec .contact-box span.badge {
  color: #ffffff;
}
.contact-sec .contact-box span.badge::before {
  background: white;
}
.contact-sec .contact-box span.badge {
  background: linear-gradient(274deg, #2a6026 -70.06%, #0491ce 146.4%);
}
.contact-sec .para {
  display: block;
  width: 100%;
}
.contact-sec .para p {
  max-width: 33rem;
  color: var(--Text, #727272);
  text-align: center;
  font-family: Poppins;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0 auto;
}

.counter-section .counter-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8.23rem;
  padding: 2.5rem;
  border-radius: 1.25rem;
  background: linear-gradient(277deg, #2A6026 -93.68%, #0491CE 115.44%), #FFF;
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.08);
}
.counter-section .counter-row .counters {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  max-width: 13.2rem;
  width: 100%;
}
.counter-section .counter-row .counters:before {
  content: "";
  top: 0;
  bottom: 0;
  right: -4.81rem;
  width: 1px;
  height: 100%;
  background-color: #ddd;
  position: absolute;
}
.counter-section .counter-row .counters span {
  text-align: center;
  font-family: Poppins;
  font-size: 4.0625rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  color: #fff;
}
.counter-section .counter-row .counters p {
  color: #fff;
  text-align: center;
  font-family: Poppins;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5rem;
  margin-bottom: 0;
}
.counter-section .counter-row .counters:last-child:before {
  display: none;
}

.values .badge {
  background: rgba(4, 145, 206, 0.1);
  color: var(--Black, #000);
}
.values .badge:before {
  background: linear-gradient(277deg, #2a6026 -93.68%, #0491ce 115.44%), var(--Black, #000);
}
.values .common-header {
  text-align: center;
}
.values .common-header h2 {
  margin-bottom: 1.5rem;
}
.values .common-header p {
  max-width: 40rem;
  width: 100%;
  color: var(--Text, #727272);
  margin: 0 auto 3rem;
}
.values .row {
  gap: 2.5rem 0;
}
.values .values-bx {
  padding: 1.25rem;
  border-radius: 1.25rem;
  border: 1px solid #E2E8F0;
  background: #fff;
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3.75rem;
  align-self: stretch;
  transition: all 0.4s ease;
}
.values .values-bx:hover {
  border-color: #157B81;
}
.values .values-bx h5 {
  color: #00335F;
  /* H4(Playfair) */
  font-family: "Playfair Display";
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: capitalize;
  margin-bottom: 1rem;
}
.values .values-bx p {
  color: var(--Text, #727272);
}
.values .values-bx .icon {
  display: flex;
  width: 4.625rem;
  height: 4.625rem;
  padding: 0.9375rem;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  border-radius: 0.75rem;
  background: rgba(64, 175, 157, 0.1);
}

.testimonials .common-header .badge {
  background: rgba(4, 145, 206, 0.1);
  color: var(--Black, #000);
}
.testimonials .common-header .badge:before {
  background: linear-gradient(277deg, #2a6026 -93.68%, #0491ce 115.44%), var(--Black, #000);
}
.testimonials .common-header h2 {
  margin-bottom: 0.5rem;
}
.testimonials .testimonials-slider-wrap {
  position: relative;
}
.testimonials .testimonials-slider-wrap .testimonialsSwiper {
  overflow: hidden;
  padding: 2.5rem 0;
}
.testimonials .testimonials-slider-wrap .testimonialsSwiper .swiper-slide {
  transition: opacity 0.4s ease;
  opacity: 1;
}
.testimonials .testimonials-slider-wrap .testimonialsSwiper .swiper-slide.swiper-slide-active {
  z-index: 2;
  transform: scale(1.04);
}
.testimonials .testimonials-slider-wrap .testimonialsSwiper .swiper-slide.swiper-slide-active .testi-card {
  border-radius: 1.25rem;
  border-color: transparent;
  background: linear-gradient(277deg, #2a6026 -93.68%, #0491ce 115.44%);
}
.testimonials .testimonials-slider-wrap .testimonialsSwiper .swiper-slide.swiper-slide-active .testi-card .testi-top .testi-info h6 {
  color: #fff;
  font-size: 1.125rem;
}
.testimonials .testimonials-slider-wrap .testimonialsSwiper .swiper-slide.swiper-slide-active .testi-card .testi-top .testi-info span {
  color: rgba(255, 255, 255, 0.75);
}
.testimonials .testimonials-slider-wrap .testimonialsSwiper .swiper-slide.swiper-slide-active .testi-card .testi-body p {
  color: rgba(255, 255, 255, 0.9);
}
.testimonials .testimonials-slider-wrap .testi-card {
  background: #fff;
  border-radius: 1.25rem;
  padding: 2.5rem;
  transition: background 0.4s ease, border-color 0.4s ease;
  min-height: 22.9rem;
  display: flex;
  flex-direction: column;
  border: 1px solid #A0A0A0;
  gap: 5.19rem;
}
.testimonials .testimonials-slider-wrap .testi-card .testi-top {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.testimonials .testimonials-slider-wrap .testi-card .testi-top .testi-avatar {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid rgba(4, 145, 206, 0.2);
}
.testimonials .testimonials-slider-wrap .testi-card .testi-top .testi-avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.testimonials .testimonials-slider-wrap .testi-card .testi-top .testi-info h6 {
  color: var(--Black-600, #000);
  font-family: "Playfair Display";
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.5rem;
  margin-bottom: 0.5rem;
  text-transform: none;
  transition: color 0.4s ease;
}
.testimonials .testimonials-slider-wrap .testi-card .testi-top .testi-info span {
  color: var(--Text, #727272);
  font-family: Poppins;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem;
  transition: color 0.4s ease;
}
.testimonials .testimonials-slider-wrap .testi-card .testi-body p {
  color: var(--Text, #727272);
  font-family: Poppins;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 0;
  transition: color 0.4s ease;
}
.testimonials .testimonials-slider-wrap .testi-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.12rem;
  margin-top: 0.5rem;
}
.testimonials .testimonials-slider-wrap .testi-nav button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.125rem;
  height: 2.125rem;
  flex-shrink: 0;
  border-radius: 50%;
  border: none;
  background: transparent;
  color: #344054;
  cursor: pointer;
  transition: all 0.3s ease;
}
.testimonials .testimonials-slider-wrap .testi-nav button img {
  width: 1.45rem;
  -o-object-fit: contain;
     object-fit: contain;
}
.testimonials .testimonials-slider-wrap .testi-nav button.swiper-button-disabled img {
  opacity: 0.5;
}

.service-main .row {
  gap: 1.875rem 0;
}

.our-process {
  background: rgba(4, 145, 206, 0.06);
}
.our-process .text .badge {
  background: linear-gradient(274deg, #2a6026 -70.06%, #0491ce 146.4%);
}
.our-process .text h2 {
  margin-bottom: 1.5rem;
}
.our-process .text p {
  color: var(--Text, #727272);
  margin-bottom: 1.25rem;
}
.our-process .text ul {
  display: flex;
  max-width: 37rem;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.9375rem;
  counter-reset: section;
}
.our-process .text ul li {
  display: flex;
  padding: 1.25rem 0;
  align-items: flex-start;
  gap: 1.25rem;
  align-self: stretch;
  border-bottom: 1px solid #e4e4e4;
}
.our-process .text ul li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.our-process .text ul li .number {
  display: flex;
  max-width: 3.25rem;
  min-width: 3.25rem;
  width: 100%;
  flex: 1 0 3.25rem;
  height: 3.25rem;
  padding: 0.5rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.77381rem;
  position: relative;
  border-radius: 1.625rem;
  background: var(--Blue, #023e73);
  color: var(--White, #fff);
  font-family: Poppins;
  font-size: 1.23813rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.85713rem;
}
.our-process .text ul li .number:before {
  counter-increment: section;
  content: counters(section, ".", decimal-leading-zero);
}
.our-process .text ul li .text h6 {
  color: var(--Blue, #023e73);
  text-transform: none;
  margin-bottom: 0.5rem;
}
.our-process .text ul li .text p {
  margin-bottom: 0;
}
.our-process .imgcontainer {
  position: relative;
}
.our-process .masked-image {
  -webkit-mask-mode: alpha;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: 100% 100%;
  mask-mode: alpha;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: 100% 100%;
  overflow: hidden;
}
.our-process .masked-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.service-details {
  overflow: hidden;
}
.service-details h1,
.service-details h2,
.service-details h3,
.service-details h4,
.service-details h5,
.service-details h6 {
  font-family: "Playfair Display";
}
.service-details h2 {
  color: var(--Blue, #023e73);
  margin-bottom: 2.5rem;
}
.service-details > .container > img,
.service-details > .container > p > img {
  width: 100%;
  display: block;
  margin-bottom: 2.5rem;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1.25rem;
  overflow: hidden;
}
.service-details h3 {
  color: #000000;
  font-family: "Playfair Display";
  margin-top: 0;
  margin-bottom: 1.5rem;
}
.service-details h3:not(:first-child) {
  margin-top: 2.5rem;
}
.service-details p {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
  color: #727272;
  margin-bottom: 1.5rem;
}
.service-details p:last-child {
  margin-bottom: 0;
}
.service-details blockquote {
  margin: 2.5rem 0;
  display: flex;
  padding: 3.75rem 3.09rem;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  align-self: stretch;
  border-radius: 1.25rem;
  background: linear-gradient(277deg, #2a6026 -93.68%, #0491ce 115.44%);
  position: relative;
  color: #fff;
  font-family: "Playfair Display";
  font-size: 2rem;
  font-style: italic;
  font-weight: 500;
  line-height: 3rem;
  /* 150% */
}
.service-details blockquote p {
  color: #FFF;
  font-family: "Playfair Display";
  font-size: 2rem;
  font-style: italic;
  font-weight: 500;
  line-height: 3rem;
}
@media (max-width: 991px) {
  .service-details blockquote {
    padding: 40px;
    font-size: 28px;
  }
}
@media (max-width: 767px) {
  .service-details blockquote {
    padding: 28px 24px;
    margin: 40px 0;
    border-radius: 18px;
    font-size: 22px;
    line-height: 1.6;
  }
}
.service-details ul,
.service-details ol {
  margin: 30px 0;
  padding-left: 24px;
}
.service-details ul li,
.service-details ol li {
  font-size: 18px;
  line-height: 1.8;
  color: #6b7280;
  margin-bottom: 14px;
}
.service-details ul li:last-child,
.service-details ol li:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .service-details ul li,
  .service-details ol li {
    font-size: 16px;
  }
}
.service-details a {
  color: #123d6b;
  text-decoration: underline;
  transition: 0.3s ease;
}
.service-details a:hover {
  opacity: 0.7;
}
.service-details strong,
.service-details b {
  font-weight: 700;
  color: #111827;
}
.service-details iframe,
.service-details video {
  width: 100%;
  border-radius: 24px;
  margin: 40px 0;
  display: block;
}
.service-details table {
  width: 100%;
  border-collapse: collapse;
  margin: 40px 0;
}
.service-details table th,
.service-details table td {
  border: 1px solid #d1d5db;
  padding: 16px;
  text-align: left;
  font-size: 16px;
  line-height: 1.7;
  color: #374151;
}
.service-details table th {
  background: #f3f4f6;
  font-weight: 600;
  color: #111827;
}

.explore {
  background: rgba(4, 145, 206, 0.06);
}
.explore .badge {
  background: rgba(4, 145, 206, 0.1);
  color: #000;
}
.explore .badge:before {
  background: linear-gradient(277deg, #2a6026 -93.68%, #0491ce 115.44%);
}
.explore h2 {
  margin-bottom: 1.5rem;
}
.explore p {
  max-width: 41rem;
  width: 100%;
  margin: 0 auto;
  color: var(--Text, #727272);
}
.explore .row {
  margin-top: 3rem;
  gap: 1.875rem 0;
}

.faq {
  background: rgba(10, 137, 180, 0.06);
}
.faq .badge {
  background: rgba(4, 145, 206, 0.1);
  color: #000;
}
.faq .badge:before {
  background: linear-gradient(277deg, #2a6026 -93.68%, #0491ce 115.44%);
}
.faq .common-header h2 {
  margin-bottom: 3rem;
}
.faq .faq-outer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
  align-self: stretch;
  border-radius: 4px;
  overflow: hidden;
}
.faq .faq-item {
  background: transparent;
  border-radius: 4px;
  border: 1px solid rgba(203, 203, 203, 0.5019607843);
  transition: background 0.3s ease;
  width: 100%;
}
.faq .faq-item.active {
  background: #fff;
  border: 1px solid #dce6ee;
  border-radius: 4px;
  margin-bottom: 0;
}
.faq .faq-item.active .faq-question {
  padding-bottom: 0;
}
.faq .faq-item.active .faq-answer {
  padding-top: 1rem;
  padding-bottom: 1.8rem;
}
.faq .faq-item.active .faq-toggle {
  rotate: unset;
  filter: unset;
}
.faq .faq-item + .faq-item:not(.active) {
  margin-top: 0;
}
.faq .faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.8rem;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.faq .faq-question h5 {
  margin: 0;
  color: var(--Black, #000);
  /* H5 */
  font-family: "Playfair Display";
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: none;
  flex: 1;
}
.faq .faq-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  border: none;
  background: transparent;
  color: #344054;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
  rotate: 45deg;
  filter: brightness(0) grayscale(1);
}
.faq .faq-toggle img {
  aspect-ratio: 1/1;
  display: block;
  flex-shrink: 0;
}
.faq .faq-toggle:focus {
  outline: none;
}
.faq .faq-answer {
  display: none;
  padding: 0 1.5rem;
}
.faq .faq-answer p {
  color: var(--Text, #727272);
  /* Paragraph */
  font-family: Poppins;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem;
  /* 150% */
  margin: 0;
  max-width: 66.4375rem;
  width: 100%;
}

section.blog_main .row {
  gap: 2.5rem 0;
}
section.blog_main .btn-container {
  text-align: center;
  margin-top: 3rem;
}

section.blog_details .blog_main {
  position: relative;
  overflow: hidden;
  border-radius: 0.75rem;
  margin-bottom: 1.5rem;
  aspect-ratio: 32/11;
}
section.blog_details .blog_main .tag_line {
  display: inline-flex;
  width: -moz-max-content;
  width: max-content;
  padding: 0.625rem 1.625rem;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: var(--Black, #000);
  font-family: Poppins;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem;
  /* 150% */
  border-radius: 3.125rem;
  background: #fff;
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.08);
  position: absolute;
  left: 2.1875rem;
  top: 1.875rem;
}
section.blog_details .blog_user_info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}
section.blog_details .blog_user_info .blog_user {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}
section.blog_details .blog_user_info .blog_user .blog_user_pic {
  width: 5.75rem;
  height: 5.75rem;
  flex-shrink: 0;
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
}
section.blog_details .blog_user_info .blog_user .blog_user_content h5 {
  color: #000;
  font-family: Poppins;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5rem;
  /* 150% */
  margin: 0;
  padding: 0;
}
section.blog_details .blog_user_info .blog_user .blog_user_content p {
  color: var(--neutral-4, #a0a0a0);
  font-family: Poppins;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem;
  /* 150% */
}
section.blog_details .blog_user_info .right_info span.date {
  display: flex;
  gap: 0.3125rem;
}
section.blog_details .blog_user_info .right_info span.date img {
  width: 1.5rem;
  height: 1.5rem;
  aspect-ratio: 1/1;
}
section.blog_details .blog_user_info .right_info span.date p {
  color: #000;
  font-family: Poppins;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem;
  /* 150% */
}
section.blog_details h2 {
  margin: 0 0 1.5rem;
}
section.blog_details p {
  color: var(--Text, #727272);
}
section.blog_details p ~ h3 {
  margin-top: 2.5rem;
}
section.blog_details h3 {
  margin-bottom: 1.5rem;
  color: #000;
  /* H3 */
  font-family: "Playfair Display";
  font-size: 1.75rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  /* 200% */
  text-transform: capitalize;
}/*# sourceMappingURL=style.css.map */