body {
  font-family: "Helvetica Neue", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.2;
  color: #000000;
  position: relative;
  background-color: #ffffff;
  text-rendering: optimizeLegibility;
  min-height: 100vh;
  overflow-x: hidden;
}
body::-webkit-scrollbar {
  display: none;
}

img {
  max-width: 100%;
  vertical-align: middle;
}

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

a {
  display: inline-block;
  text-decoration: none;
  color: #000000;
}
a:hover {
  color: #000000;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  box-shadow: none;
  border: 1px solid #ccc;
  padding: 1rem 0.625rem;
  background-color: #fff;
  background-image: url("../images/arpw-down.svg");
  background-repeat: no-repeat;
  background-position: right 0.625rem center;
  background-size: 0.625rem;
}

.orange-btn {
  color: var(--White, #fff);
  font-family: "Helvetica Neue";
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 0.7rem 1.875rem;
  border-radius: 1.875rem;
  background: var(--Color, #d46a4c);
  border: none;
  display: table;
  text-align: center;
}
.orange-btn:hover {
  color: #fff;
}

.blue-btn {
  color: var(--White, #fff);
  font-family: "Helvetica Neue";
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 0.7rem 1.875rem;
  border-radius: 1.875rem;
  background: var(--Color-4, #1d2d44);
  border: none;
  display: table;
  text-align: center;
}
.blue-btn:hover {
  color: #fff;
}

h2 {
  color: var(--Color-4, #1d2d44);
  font-family: "Helvetica Neue";
  font-size: 2.5rem;
  font-style: normal;
  font-weight: 700;
  line-height: 3.25rem;
  margin: 0;
}

p {
  color: var(--Color-4, #1d2d44);
  font-family: "Helvetica Neue";
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.625rem;
  margin: 0;
}

header.scrolled {
  position: relative;
}
header.scrolled .header-bottom-part {
  position: fixed;
  width: 100%;
  z-index: 99;
  background-color: #fff;
  top: 0;
}

header button {
  display: none;
}
header .header-top-part {
  padding: 0.75rem 0;
  background: var(--Color, #d46a4c);
}
header .header-top-part h6 {
  color: #fff;
  font-family: "Helvetica Neue";
  text-align: center;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.625rem;
  /* 162.5% */
  margin: 0;
}
header .header-bottom-part {
  padding: 0.62rem 0;
}
header .header-bottom-part .bottom-part-content-wraper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
header .header-bottom-part .bottom-part-content-wraper .logo-wraper {
  display: table;
}
header .header-bottom-part .bottom-part-content-wraper .logo-wraper a.header-logo {
  display: table;
}
header .header-bottom-part .bottom-part-content-wraper .logo-wraper a.header-logo img {
  max-width: 12.00769rem;
  max-height: 5rem;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
header .header-bottom-part .bottom-part-content-wraper .menu-wraper {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
header .header-bottom-part .bottom-part-content-wraper .menu-wraper ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
}
header .header-bottom-part .bottom-part-content-wraper .menu-wraper ul li {
  color: var(--Black, #000);
  font-family: "Helvetica Neue";
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
}
header .header-bottom-part .bottom-part-content-wraper .menu-wraper ul li a {
  padding: 0.625rem;
  color: var(--Black, #000);
}
@media (min-width: 992px) {
  header .header-bottom-part .bottom-part-content-wraper .menu-wraper ul li.menu-item-has-children {
    position: relative;
  }
  header .header-bottom-part .bottom-part-content-wraper .menu-wraper ul li.menu-item-has-children::before {
    content: "\f107";
    font-family: FontAwesome;
    color: #000;
    font-size: 0.8125rem;
    position: absolute;
    top: 1rem;
    right: -0.5625rem;
  }
  header .header-bottom-part .bottom-part-content-wraper .menu-wraper ul li.menu-item-has-children:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    height: auto;
    z-index: 9;
  }
  header .header-bottom-part .bottom-part-content-wraper .menu-wraper ul li.menu-item-has-children .sub-menu {
    position: absolute;
    flex-direction: column;
    width: 15rem;
    top: 2.75rem;
    left: 0;
    background-color: #fff;
    border-radius: 0.5rem;
    gap: 0;
    align-items: flex-start;
    transition: all 0.5s ease;
    opacity: 0;
    visibility: hidden;
    height: 0;
    overflow: hidden;
    box-shadow: 1px 1px 5px 0px rgba(189, 188, 188, 0.75);
    -webkit-box-shadow: 1px 1px 5px 0px rgba(189, 188, 188, 0.75);
    -moz-box-shadow: 1px 1px 5px 0px rgba(189, 188, 188, 0.75);
  }
  header .header-bottom-part .bottom-part-content-wraper .menu-wraper ul li.menu-item-has-children .sub-menu li {
    width: 100%;
  }
  header .header-bottom-part .bottom-part-content-wraper .menu-wraper ul li.menu-item-has-children .sub-menu li:first-child a {
    padding-top: 1.025rem;
  }
  header .header-bottom-part .bottom-part-content-wraper .menu-wraper ul li.menu-item-has-children .sub-menu li:last-child a {
    padding-bottom: 1.025rem;
    border-bottom: none;
  }
  header .header-bottom-part .bottom-part-content-wraper .menu-wraper ul li.menu-item-has-children .sub-menu li a {
    padding: 0.5rem 1.025rem;
    border-bottom: 1px solid #bdb9b9;
    width: 100%;
  }
}

footer {
  padding: 5rem 0 1.06rem;
  background: #fbf0ed;
}
footer h6 {
  color: var(--Color-4, #1d2d44);
  text-align: center;
  font-family: "Helvetica Neue";
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.625rem;
  /* 162.5% */
  padding-top: 1.5rem;
  border-top: 1.3px solid #1d2d44;
  margin: 4.62rem 0 0;
}
footer h5 {
  color: var(--Color-4, #1d2d44);
  font-family: "Helvetica Neue";
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.625rem;
  /* 130% */
  margin-bottom: 1.25rem;
}
footer h5.mb-16 {
  margin-bottom: 1rem;
}
footer p {
  color: var(--Color-4, #1d2d44);
  font-family: "Helvetica Neue";
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.625rem;
  /* 162.5% */
  text-transform: capitalize;
  margin-bottom: 1.75rem;
}
footer p.no-caps {
  margin-bottom: 1rem;
  text-transform: unset;
}
footer a.logo {
  display: table;
  margin-bottom: 2rem;
}
footer a.logo img {
  max-width: 16.125rem;
  max-height: 6.6875rem;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
footer ul.social-icon {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
footer ul.social-icon li {
  display: table;
  border-radius: 50%;
  overflow: hidden;
}
footer ul.social-icon li a {
  width: 3.125rem;
  height: 3.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #d46a4c;
  border-radius: 50%;
  overflow: hidden;
}
footer ul.social-icon li a img {
  max-width: 1.75rem;
  max-height: 1.75rem;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
footer .link-wraper {
  display: grid;
  grid-template-columns: 8.75rem 12.125rem auto;
  gap: 2.2rem;
}
footer .link-wraper .link-item {
  width: 100%;
}
footer .link-wraper .link-item ul li {
  color: var(--Color-4, #1d2d44);
  font-family: "Helvetica Neue";
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.1rem;
  margin-bottom: 1.5rem;
}
footer .link-wraper .link-item ul li:last-child {
  margin: 0;
}
footer .link-wraper .link-item ul li a {
  width: 100%;
  color: #1d2d44;
}
footer .link-wraper .link-item ul.legal-information-links li {
  line-height: 1.875rem;
  /* 187.5% */
  margin-bottom: 0.75rem;
}
footer .link-wraper .link-item ul.legal-information-links li:last-child {
  margin: 0;
}
footer .link-wraper .link-item ul.contact-links li {
  display: flex;
  align-items: center;
  gap: 0.81rem;
  line-height: 1.875rem;
  /* 187.5% */
}
footer .link-wraper .link-item ul.contact-links li:last-child {
  margin: 0;
}
footer .link-wraper .link-item ul.contact-links li span {
  max-width: 2.5rem;
  width: 100%;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #d46a4c;
  border-radius: 50%;
}
footer .link-wraper .link-item ul.contact-links li span img {
  max-width: 1.25rem;
  max-height: 1.25rem;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
footer .form-wraper {
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 1.875rem;
}
footer .form-wraper input[type=email] {
  width: 100%;
  height: 3.125rem;
  padding: 0.62rem 1rem;
  border-radius: 1.875rem;
  border: none;
  background: #fff;
  outline: none;
  color: #000;
  padding-right: 4rem;
}
footer .form-wraper input[type=email]::-moz-placeholder {
  color: var(--Color-4, #1d2d44);
  font-family: "Helvetica Neue";
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.875rem;
  /* 187.5% */
}
footer .form-wraper input[type=email]::placeholder {
  color: var(--Color-4, #1d2d44);
  font-family: "Helvetica Neue";
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.875rem;
  /* 187.5% */
}
footer .form-wraper input[type=submit] {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: none;
  background-image: url(../images/send.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 1rem 1rem;
  font-size: 0;
  background-color: #d46a4c;
  position: absolute;
  top: 0.31rem;
  right: 0.31rem;
}

section.home-banner {
  padding: 3.56rem 0;
  position: relative;
  overflow: hidden;
  z-index: 0;
  background-image: url(../images/h-bnr-bg.jpg);
  background-repeat: no-repeat;
  background-position: top left;
  background-size: 100% 100%;
}
section.home-banner h1 {
  color: var(--Color-4, #1d2d44);
  font-family: "Helvetica Neue";
  font-size: 2.9rem;
  font-style: normal;
  font-weight: 700;
  line-height: 3.75rem;
  /* 125% */
  margin-bottom: 0.75rem;
}
section.home-banner p {
  max-width: 33.875rem;
  margin-bottom: 1.5rem;
}
section.home-banner img.right-side-img {
  max-width: 35.375rem;
  max-height: 33.5rem;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  margin-left: auto;
}

section.home-sec2 {
  padding: 6.225rem 0;
}
section.home-sec2 h2 {
  max-width: 54.125rem;
  text-align: center;
  margin: 0 auto 0.77rem;
}
section.home-sec2 p {
  max-width: 54.125rem;
  text-align: center;
  margin: 0 auto 2.9rem;
}
section.home-sec2 a.orange-btn {
  margin: 0 auto;
}
section.home-sec2 .what-we-do .item {
  padding: 2.5rem 1.5rem;
  border-radius: 0 0 6.25rem 0;
}
section.home-sec2 .what-we-do .item.blue-whale-color {
  background: #1d2d44;
}
section.home-sec2 .what-we-do .item.prune-purple-color {
  background: #5c3a4d;
}
section.home-sec2 .what-we-do .item.moderate-yellow-color {
  background: #c49e60;
}
section.home-sec2 .what-we-do .item span {
  width: 4.375rem;
  height: 4.375rem;
  border-radius: 0 0 1.25rem 0;
  background: var(--White, #fff);
  display: flex;
  align-items: center;
  justify-content: center;
}
section.home-sec2 .what-we-do .item span img {
  max-width: 2.5rem;
  max-height: 2.5rem;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
section.home-sec2 .what-we-do .item h4 {
  color: var(--White, #fff);
  font-family: "Helvetica Neue";
  font-size: 1.375rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.15rem;
  margin-bottom: 1.1rem;
  margin-top: 1.75rem;
}
section.home-sec2 .what-we-do .item p {
  max-width: unset;
  text-align: left;
  margin: 0 0 0.6rem;
  min-height: 4.8375rem;
  color: #e8e8e8;
}
section.home-sec2 .what-we-do .item a {
  color: var(--White, #fff);
  font-family: "Helvetica Neue";
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.625rem;
  /* 162.5% */
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
section.home-sec2 .what-we-do .item a img {
  max-width: 1.5rem;
  max-height: 0.5rem;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
section.home-sec2 .what-we-do .owl-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.31rem;
  margin-top: 2rem !important;
  margin-bottom: 2rem !important;
}
section.home-sec2 .what-we-do .owl-dots button {
  width: 0.75rem;
  height: 0.75rem;
  background-color: #fff;
  border: 1px solid #d46a4c;
  border-radius: 50%;
}
section.home-sec2 .what-we-do .owl-dots button:hover {
  background-color: #d46a4c;
}
section.home-sec2 .what-we-do .owl-dots button.active {
  background-color: #d46a4c;
}
section.home-sec2 .what-we-do .owl-dots button span {
  display: none;
}

section.home-sec3 {
  padding-bottom: 6.25rem;
}
section.home-sec3 h2 {
  max-width: 40.125rem;
  text-align: center;
  margin: 0 auto 0.77rem;
}
section.home-sec3 p {
  max-width: 40.125rem;
  text-align: center;
  margin: 0 auto 2.9rem;
}
section.home-sec3 a.orange-btn {
  margin: 0 auto;
}
section.home-sec3 .case-study-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.88rem;
  margin-bottom: 3.13rem;
}
section.home-sec3 .case-study-box .img-wraper {
  display: table;
  overflow: hidden;
  border-radius: 0 0 0 6.25rem;
}
section.home-sec3 .case-study-box .img-wraper img {
  width: 100%;
  height: 31rem;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0 0 0 6.25rem;
}
section.home-sec3 .case-study-box .text-wraper {
  border-radius: 0 6.25rem 0 0;
  background: #fbf0ed;
  overflow: hidden;
  padding: 3.75rem 2.5rem;
  height: 100%;
  width: 100%;
}
section.home-sec3 .case-study-box .text-wraper img.small-logo-icon {
  max-width: 9rem;
  max-height: 4.0625rem;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
section.home-sec3 .case-study-box .text-wraper .our-impact .item {
  padding-top: 1.8rem;
}
section.home-sec3 .case-study-box .text-wraper .our-impact .item h4 {
  color: var(--Color-4, #1d2d44);
  font-family: "Helvetica Neue";
  font-size: 1.75rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.625rem;
  /* 92.857% */
  text-transform: capitalize;
  margin-bottom: 1.5rem;
}
section.home-sec3 .case-study-box .text-wraper .our-impact .item p {
  line-height: 1.875rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #d46a4c;
  text-align: left;
  max-width: unset;
  margin: 0 0 1.88rem;
  min-height: 9.2rem;
}
section.home-sec3 .case-study-box .text-wraper .our-impact .owl-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.31rem;
  margin: 0;
}
section.home-sec3 .case-study-box .text-wraper .our-impact .owl-nav button {
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 1.875rem;
  background-image: url(../images/owl-nav-arow.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 2rem 2rem;
  margin: 0;
}
section.home-sec3 .case-study-box .text-wraper .our-impact .owl-nav button span {
  display: none;
}
section.home-sec3 .case-study-box .text-wraper .our-impact .owl-nav button.owl-prev {
  background-color: #d46a4c;
  background-image: url(../images/owl-nav-arow-left.svg);
  transition: all 0.3s ease-in-out;
}
section.home-sec3 .case-study-box .text-wraper .our-impact .owl-nav button.owl-prev:hover {
  background-color: #1d2d44;
}
section.home-sec3 .case-study-box .text-wraper .our-impact .owl-nav button.owl-next {
  background-color: #d46a4c;
  background-image: url(../images/owl-nav-arow-right.svg);
  transition: all 0.3s ease-in-out;
}
section.home-sec3 .case-study-box .text-wraper .our-impact .owl-nav button.owl-next:hover {
  background-color: #1d2d44;
}

section.home-sec4 h2 {
  max-width: 27.4375rem;
  text-align: center;
  margin: 0 auto 0.72rem;
}
section.home-sec4 p {
  max-width: 27.4375rem;
  text-align: center;
  margin: 0 auto 2.9rem;
}
section.home-sec4 .value-cart {
  padding: 2.25rem 1.25rem 2.19rem;
  height: 100%;
}
section.home-sec4 .value-cart.reddish-orange {
  border-radius: 0 0 0 3.125rem;
  background: var(--Color, #d46a4c);
}
section.home-sec4 .value-cart.reddish-orange span {
  border-radius: 0 0 0 1.25rem;
}
section.home-sec4 .value-cart.moderate-yellow {
  border-radius: 0 3.125rem 0 0;
  background: var(--Color-2, #c49e60);
}
section.home-sec4 .value-cart.moderate-yellow span {
  border-radius: 0 1.25rem 0 0;
}
section.home-sec4 .value-cart.prune-purple {
  border-radius: 3.125rem 0 0 0;
  background: var(--Color-3, #5c3a4d);
}
section.home-sec4 .value-cart.prune-purple span {
  border-radius: 0 0 1.25rem 0;
}
section.home-sec4 .value-cart.blue-whale {
  border-radius: 0 0 3.125rem 0;
  background: var(--Color-4, #1d2d44);
}
section.home-sec4 .value-cart.blue-whale span {
  border-radius: 0 0 1.25rem 0;
}
section.home-sec4 .value-cart span {
  width: 5rem;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  margin: 0 auto;
}
section.home-sec4 .value-cart span img {
  max-width: 3rem;
  max-height: 3rem;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
section.home-sec4 .value-cart h4 {
  color: var(--White, #fff);
  text-align: center;
  font-family: "Helvetica Neue";
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.125rem;
  margin-bottom: 1.1rem;
  margin-top: 1.8rem;
}
section.home-sec4 .value-cart p {
  color: #e8e8e8;
  max-width: unset;
  margin: 0;
}

section.news-resources-sec {
  padding-bottom: 6.55rem;
}
section.news-resources-sec .row {
  gap: 2.5rem 0;
}
section.news-resources-sec .btn-loadmore {
  margin: 2rem auto 0;
}
section.news-resources-sec h2 {
  margin-bottom: 0.77rem;
  text-align: center;
}
section.news-resources-sec p {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto;
}
section.news-resources-sec img.top-img {
  width: 100%;
  height: 21.875rem;
  border-radius: 0 0 3.75rem 0;
}
section.news-resources-sec h4 {
  color: var(--Color-4, #1d2d44);
  font-family: "Helvetica Neue";
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.875rem;
  /* 150% */
  margin: 0.9rem 0 0.7rem;
}
section.news-resources-sec h6 {
  color: var(--Paragraph, #535353);
  font-family: "Helvetica Neue";
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.625rem;
  /* 162.5% */
  margin-bottom: 1.1rem;
}
section.news-resources-sec .btn-wraper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
section.news-resources-sec .btn-wraper a.blue-btn {
  padding: 0.43rem 2.19rem;
}
section.news-resources-sec .btn-wraper a.orange-btn {
  padding: 0.43rem 1.62rem;
}

section.news-details-sec1 {
  padding: 6.25rem 0 4.25rem;
}
section.news-details-sec1 img.news-img {
  width: 100%;
  height: 34.375rem;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  margin-bottom: 1.5rem;
  border-radius: 0 0 6.5rem 0;
}
section.news-details-sec1 h2 {
  margin-bottom: 1.5rem;
}
section.news-details-sec1 ul.details {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.1rem;
}
section.news-details-sec1 ul.details li {
  color: var(--Color-4, #1d2d44);
  font-family: "Helvetica Neue";
  font-size: 1.1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.875rem;
  text-transform: capitalize;
}
section.news-details-sec1 ul.details li.tag {
  border-radius: 0.25rem;
  padding: 0.15rem 0.92rem;
  background: #d46a4c;
  color: #fff;
}
section.news-details-sec1 p {
  line-height: 1.5rem;
  margin-bottom: 1.2rem;
  font-size: 1.1rem;
}
section.news-details-sec1 h4 {
  color: var(--Color-4, #1d2d44);
  font-family: "Helvetica Neue";
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 500;
  line-height: 2.775rem;
  margin-bottom: 1rem;
}
section.news-details-sec1 ul.ul-list {
  margin-bottom: 1.2rem;
}
section.news-details-sec1 ul.ul-list li {
  color: var(--Color-4, #1d2d44);
  font-family: "Helvetica Neue";
  font-size: 1.1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem;
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.4rem;
}
section.news-details-sec1 ul.ul-list li:last-child {
  margin: 0;
}
section.news-details-sec1 ul.ul-list li::after {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  background-color: #1d2d44;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}
section.news-details-sec1 ol {
  margin-bottom: 1.2rem;
}
section.news-details-sec1 ol li {
  color: var(--Color-4, #1d2d44);
  font-family: "Helvetica Neue";
  font-size: 1.1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem;
  position: relative;
  counter-increment: step-counter;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
}
section.news-details-sec1 ol li:last-child {
  margin: 0;
}
section.news-details-sec1 ol li::before {
  content: counter(step-counter) ".";
  font-size: 1rem;
  background-color: transparent;
  color: #1d2d44;
  font-weight: 700;
}
section.news-details-sec1 .share-box {
  background-color: #fbf0ed;
  border-radius: 0.5rem;
  padding: 1.4rem;
  width: 100%;
  margin-bottom: 1.7rem;
  position: relative;
}
section.news-details-sec1 .share-box a.orange-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
}
section.news-details-sec1 .share-box a.orange-btn img {
  width: 1.2rem;
  height: 1.2rem;
  -o-object-fit: cover;
     object-fit: cover;
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7495%) hue-rotate(76deg) brightness(117%) contrast(99%);
}
section.news-details-sec1 .share-box .heateor_sss_button_copy_link {
  display: none !important;
}
section.news-details-sec1 .share-box .heateor_sss_more {
  position: absolute;
  top: 22px;
  left: 27px;
  width: 85%;
  height: 48%;
  opacity: 0;
  margin: 0;
}
section.news-details-sec1 .share-box .heateor_sss_more span {
  width: 100% !important;
  height: 100% !important;
}
section.news-details-sec1 .news_card {
  margin-bottom: 2rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
section.news-details-sec1 .news_card .img {
  border-radius: 0 0 2.5rem 0;
  overflow: hidden;
  position: relative;
  width: 40%;
}
section.news-details-sec1 .news_card .img a {
  display: block;
}
section.news-details-sec1 .news_card .img a img {
  width: 100%;
  height: 8.5rem;
  -o-object-fit: cover;
     object-fit: cover;
}
section.news-details-sec1 .news_card .txt {
  width: 60%;
}
section.news-details-sec1 .news_card .txt h4 {
  max-width: 95%;
  color: var(--Color-4, #1d2d44);
  font-family: "Helvetica Neue";
  font-size: 1.15rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.575rem;
  margin-bottom: 0.5rem;
}
section.news-details-sec1 .news_card .txt h4 a {
  color: var(--Color-4, #1d2d44);
}
section.news-details-sec1 .news_card .txt a.mre {
  color: var(--Color, #d46a4c);
  font-family: "Helvetica Neue";
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
section.news-details-sec1 .news_card .txt a.mre img {
  width: 1.5rem;
  height: 0.5rem;
  -o-object-fit: contain;
     object-fit: contain;
}
section.news-details-sec1 .sticky-box {
  position: sticky;
  top: 1rem;
}
section.news-details-sec1 .sticky-box .news_card .img {
  margin-bottom: 0;
  height: auto;
}
section.news-details-sec1 .img {
  position: relative;
  margin-bottom: 1.06rem;
  border-radius: 0 0 3.75rem 0;
  overflow: hidden;
  height: 34.375rem;
}
section.news-details-sec1 .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
section.news-details-sec1 .img span.text {
  position: absolute;
  right: 0.62rem;
  top: 0.62rem;
  padding: 0.62rem 1.97rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #d46a4c;
  color: #fff;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

section.brand-slider {
  padding: 1rem 0;
  background-color: #fbf0ed;
}
section.brand-slider ul li img {
  width: 11.875rem;
  height: 5rem;
  -o-object-fit: cover;
     object-fit: cover;
}

section.home-sec5 {
  padding: 6.25rem 0;
}
section.home-sec5 h2 {
  text-align: center;
  margin-bottom: 1.79rem;
}
section.home-sec5 h2.mb-20 {
  margin-bottom: 0.6rem;
}
section.home-sec5 p {
  margin-bottom: 3rem;
  text-align: center;
}
section.home-sec5 .news_card .img {
  border-radius: 0 0 3.75rem 0;
  overflow: hidden;
  margin-bottom: 1.06rem;
  position: relative;
}
section.home-sec5 .news_card .img a {
  display: block;
}
section.home-sec5 .news_card .img a img {
  width: 100%;
  height: 21.875rem;
  -o-object-fit: cover;
     object-fit: cover;
}
section.home-sec5 .news_card .img a span.text {
  position: absolute;
  right: 0.62rem;
  top: 0.62rem;
  padding: 0.62rem 1.97rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #d46a4c;
  color: #fff;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
section.home-sec5 .news_card .txt ul {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.1rem;
}
section.home-sec5 .news_card .txt ul li.date {
  color: var(--Color-4, #1d2d44);
  font-family: "Helvetica Neue";
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.875rem;
  text-transform: capitalize;
}
section.home-sec5 .news_card .txt ul li.tag {
  color: var(--White, #fff);
  font-family: "Helvetica Neue";
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.875rem;
  text-transform: capitalize;
  border-radius: 0.25rem;
  padding: 0.15rem 0.92rem;
}
section.home-sec5 .news_card .txt ul li.tag.orange {
  background: #d46a4c;
}
section.home-sec5 .news_card .txt ul li.tag.blue {
  background: #1d2d44;
}
section.home-sec5 .news_card .txt ul li.tag.purple {
  background: #5c3a4d;
}
section.home-sec5 .news_card .txt h4 {
  max-width: 95%;
  color: var(--Color-4, #1d2d44);
  font-family: "Helvetica Neue";
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.875rem;
  margin-bottom: 1rem;
}
section.home-sec5 .news_card .txt h4 a {
  color: var(--Color-4, #1d2d44);
}
section.home-sec5 .news_card .txt a.mre {
  color: var(--Color, #d46a4c);
  font-family: "Helvetica Neue";
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
section.home-sec5 .news_card .txt a.mre img {
  width: 1.5rem;
  height: 0.5rem;
  -o-object-fit: contain;
     object-fit: contain;
}
section.home-sec5 .btn-loadmore {
  margin: 2rem auto 0;
}
section.home-sec5 #blog_listing {
  row-gap: 1.875rem;
}

section.home-sec6 {
  background: #d46a4c;
}
section.home-sec6 .middle_box {
  position: relative;
}
section.home-sec6 .middle_box .bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
section.home-sec6 .middle_box .txt {
  padding: 5rem 0;
  text-align: center;
  position: relative;
  z-index: 10;
}
section.home-sec6 .middle_box .txt h2 {
  color: #fff;
  margin-bottom: 0.77rem;
}
section.home-sec6 .middle_box .txt p {
  color: #fff;
  max-width: 54.12rem;
  margin: 0 auto 0.7rem;
}
section.home-sec6 .middle_box .txt p + p {
  margin: 0 auto 1.35rem;
}
section.home-sec6 .middle_box .txt .blue-btn {
  margin: 0 auto;
  min-width: 9.5rem;
}

.innerban {
  padding: 6.81rem 0;
  background: #fbf0ed;
}
.innerban h1 {
  color: var(--Color-4, #1d2d44);
  text-align: center;
  font-size: 2.75rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 0.25rem;
}
.innerban .breadcumb {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.innerban .breadcumb li {
  position: relative;
  color: var(--Paragraph, #535353);
  text-align: center;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.625rem;
  /* 162.5% */
}
.innerban .breadcumb li a {
  display: inline-block;
  color: var(--Paragraph, #535353);
  text-decoration-line: underline;
  font-weight: 500;
  line-height: 1rem;
}
.innerban .breadcumb li + li::before {
  content: "";
  width: 1rem;
  height: 1rem;
  display: inline-block;
  background: url(../images/arr.png);
  margin: 0px 0.3rem 0 0.38rem;
  position: relative;
  display: inline-block;
  top: 3px;
}

.list {
  margin-bottom: 1.74rem;
}
.list li {
  color: var(--Color-4, #1d2d44);
  font-size: 0.98rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.325rem;
  /* 162.5% */
  padding-left: 2.6rem;
  position: relative;
}
.list li:not(:last-child) {
  margin-bottom: 1.85rem;
}
.list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2rem;
  height: 2rem;
  background: url("../images/list.png");
  background-size: cover;
  background-repeat: no-repeat;
}

.expertise-sec1 {
  padding: 6.25rem 0;
}
.expertise-sec1 h2 {
  margin-bottom: 0.8rem;
}
.expertise-sec1 p {
  color: var(--Color-4, #1d2d44);
  text-align: center;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.625rem;
  /* 162.5% */
  max-width: 68.1rem;
  margin: auto;
}
.expertise-sec1 .nth-sec {
  margin-top: 6.25rem;
}
.expertise-sec1 .nth-sec h2 {
  line-height: 3.125rem;
}
.expertise-sec1 .nth-sec p {
  text-align: left;
  font-size: 0.98rem;
  margin-bottom: 1.5rem;
}
.expertise-sec1 .nth-sec h6 {
  color: var(--Color-4, #1d2d44);
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.625rem;
  /* 144.444% */
  margin-top: 0.8rem;
  margin-bottom: 1.5rem;
}
.expertise-sec1 .nth-sec h5 {
  color: var(--Color-4, #1d2d44);
  font-size: 1rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.625rem;
  /* 162.5% */
  margin-bottom: 2rem;
}
.expertise-sec1 .nth-sec .main-img img {
  border-radius: 0 0 12.5rem 0;
}
.expertise-sec1 .nth-sec:nth-child(even) > .row > div:nth-child(1) {
  order: 2;
}
.expertise-sec1 .nth-sec:nth-child(even) > .row > div:nth-child(2) {
  order: 1;
}
.expertise-sec1 .nth-sec:nth-child(even) .main-img img {
  border-radius: 0 0 0 12.5rem;
}

.impact-sec1 {
  padding: 6.25rem 0;
}
.impact-sec1 h2 {
  margin-bottom: 1rem;
}
.impact-sec1 p {
  color: var(--Color-4, #1d2d44);
  text-align: center;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.625rem;
  /* 162.5% */
  max-width: 54rem;
  margin: auto;
}

.project-card {
  text-align: left;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.project-card .image {
  margin-bottom: 1rem;
  position: relative;
}
.project-card .image > a {
  display: block;
}
.project-card .image img {
  border-radius: 6.25rem 0 0 0;
}
.project-card .image .ft {
  position: absolute;
  right: 0.62rem;
  top: 0.62rem;
  padding: 0.62rem 1.97rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #d46a4c;
  color: #fff;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.project-card .tx h4 {
  color: var(--Color-4, #1d2d44);
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 500;
  line-height: 2.125rem;
  /* 141.667% */
  margin-bottom: 1rem;
}
.project-card .tx h4 a {
  color: var(--Color-4, #1d2d44);
}
.project-card .tx p {
  text-align: left;
  margin-bottom: 1.5rem;
}
.project-card .orange-btn {
  margin-top: auto;
  max-width: -moz-max-content;
  max-width: max-content;
}

.project-sec {
  gap: 3.75rem 0;
  margin-top: 3.75rem;
}
.project-sec > div:nth-child(2) .project-card img {
  border-radius: 0 6.25rem 0 0;
}

.project-sec {
  gap: 3.75rem 0;
  margin-top: 3.75rem;
}
.project-sec > div:nth-child(3) .project-card img {
  border-radius: 0 0rem 0 0;
}

.project-sec {
  gap: 3.75rem 0;
  margin-top: 3.75rem;
}
.project-sec > div:nth-child(4) .project-card img {
  border-radius: 0 0rem 0 0;
}

.project-sec {
  gap: 3.75rem 0;
  margin-top: 3.75rem;
}
.project-sec > div:nth-child(5) .project-card img {
  border-radius: 0 0 0 6.25rem;
}

.project-sec {
  gap: 3.75rem 0;
  margin-top: 3.75rem;
}
.project-sec > div:nth-child(6) .project-card img {
  border-radius: 0 0 6.25rem 0;
}

.pagination {
  display: flex;
  margin-top: 3.75rem;
  gap: 0.75rem;
  justify-content: center;
}
.pagination li a {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.25rem;
  border: 1px solid var(--Color, #d46a4c);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all ease 1s 0s;
  color: var(--Color, #d46a4c);
  text-align: center;
  font-size: 1.15rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: capitalize;
}
.pagination li a.active {
  background: var(--Color, #d46a4c);
  color: #fff;
}
.pagination li a.active img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(125deg) brightness(103%) contrast(103%);
  color: #fff;
}
.pagination li a:hover {
  background: var(--Color, #d46a4c);
  color: #fff;
}
.pagination li a:hover img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(125deg) brightness(103%) contrast(103%);
}

.equity {
  padding: 5rem 0;
  background: #f3f4f5;
}
.equity h2 {
  font-weight: 500;
  margin-bottom: 1.75rem;
}
.equity p {
  margin-bottom: 1rem;
  color: var(--Paragraph, #535353);
}
.equity h6 {
  color: var(--Color-4, #1d2d44);
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.equity .orange-btn {
  margin-top: 1.75rem;
}
.equity img {
  border-radius: 0 0 0 6.25rem;
}

section.abtSec1 {
  padding: 6.25rem 0;
}
section.abtSec1 .mb50 {
  margin-bottom: 2.625rem;
}
section.abtSec1 h2 {
  line-height: 1.625rem;
  margin: 0 0 2rem;
}
section.abtSec1 .each_mission {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.75rem 1.5rem 1.5rem;
  border-radius: 0 0 3.125rem 0;
  background: #ccc;
}
section.abtSec1 .each_mission h3 {
  color: #fff;
  font-size: 3.125rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.625rem;
  /* 52% */
  text-transform: capitalize;
  margin: 0 0 2rem;
}
section.abtSec1 .each_mission h4 {
  color: #fff;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.625rem;
  /* 108.333% */
  margin: 0 0 0.6rem;
}
section.abtSec1 .each_mission p {
  color: #e8e8e8;
}
section.abtSec1 .each_mission.orangeColor {
  background: var(--Color, #d46a4c);
}
section.abtSec1 .each_mission.creamColor {
  background: var(--Color-2, #c49e60);
}
section.abtSec1 .each_mission.violetColor {
  background: var(--Color-3, #5c3a4d);
}
section.abtSec1 .each_mission.darkBlueColor {
  background: var(--Color-4, #1d2d44);
}

section.home-sec3.abtSec2 {
  padding: 0 0 6.25rem;
}
section.home-sec3.abtSec2 h2 {
  margin: 0 auto 2.225rem;
}
section.home-sec3.abtSec2 h4 {
  color: var(--Color-4, #1d2d44);
  font-size: 1.75rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.625rem;
  /* 92.857% */
  text-transform: capitalize;
  margin: 0 0 2rem;
}
section.home-sec3.abtSec2 p {
  text-align: left;
  margin: 0 0 0.55rem;
}
section.home-sec3.abtSec2 p:last-of-type {
  margin: 0;
}
section.home-sec3.abtSec2 .img-wraper {
  display: block;
}
section.home-sec3.abtSec2 .img-wraper img {
  height: 100%;
}
section.home-sec3.abtSec2 .text-wraper {
  background: #f3f4f5;
  padding: 2.5rem;
}
section.home-sec3.abtSec2 .text-wraper img.small-logo-icon {
  margin-bottom: 2rem;
}
section.home-sec3.abtSec2 .text-wraper a.social_icon {
  display: flex;
  width: 3.125rem;
  height: 3.125rem;
  padding: 0.125rem;
  background: var(--Color-4, #1d2d44);
  font-size: 1.75rem;
  color: #fff;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin-top: 1.75rem;
}

section.abtSec3 {
  background: #f3f4f5;
  padding: 5rem 0;
}
section.abtSec3 h2 {
  text-align: center;
  margin: 0 0 1.925rem;
}
section.abtSec3 .teamItem {
  width: 100%;
  border-radius: 0 0 6.25rem 0;
  background: #fff;
  height: 100%;
}
section.abtSec3 .teamItem .teamImg {
  width: 100%;
  height: 20.0625rem;
  position: relative;
}
section.abtSec3 .teamItem .teamImg a {
  display: block;
  width: 100%;
  height: 100%;
}
section.abtSec3 .teamItem .teamImg a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
section.abtSec3 .teamItem .teamImg a.social_icon {
  position: absolute;
  display: flex;
  width: 3.125rem;
  height: 3.125rem;
  padding: 0.125rem;
  background: var(--Color-4, #1d2d44);
  font-size: 1.75rem;
  color: #fff;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 1;
}
section.abtSec3 .teamItem .teamDetails {
  padding: 1.5rem;
}
section.abtSec3 .teamItem .teamDetails h3 {
  color: var(--Color-4, #1d2d44);
  font-style: normal;
  font-weight: 700;
  line-height: 1.625rem;
  /* 92.857% */
  margin: 0 0 0.8rem;
}
section.abtSec3 .teamItem .teamDetails h3 a {
  color: inherit;
}
section.abtSec3 .teamItem .teamDetails h4 {
  color: var(--Color-4, #1d2d44);
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.625rem;
  /* 162.5% */
  margin: 0 0 0.45rem;
}
section.abtSec3 .teamItem .teamDetails p {
  color: var(--Paragraph, #535353);
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.625rem;
  /* 162.5% */
}

section.abtSec4 {
  padding: 6.25rem 0;
}
section.abtSec4 h2 {
  margin: 0 0 0.8rem;
}
section.abtSec4 h2 + p {
  margin-bottom: 1.3rem;
}
section.abtSec4 h5 {
  color: var(--Color-4, #1d2d44);
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.625rem;
  /* 144.444% */
  margin: 0 0 2rem;
}
section.abtSec4 ul.tick_list {
  margin-bottom: 2.5rem;
}
section.abtSec4 .form_fill_contact {
  padding: 2.4688rem 2.125rem;
  border-radius: 0 0 6.25rem 0;
  background: var(--Color-4, #1d2d44);
}
section.abtSec4 .form_fill_contact h3 {
  color: #fff;
  font-size: 1.75rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.625rem;
  /* 92.857% */
  text-transform: capitalize;
  margin: 0 0 2.25rem;
}
section.abtSec4 .form_fill_contact .inputs {
  margin: 0 0 1.25rem;
}
section.abtSec4 .form_fill_contact .inputs input:not([type=submit], [type=radio], [type=checkbox]) {
  display: block;
  width: 100%;
  color: var(--Color-4, #1d2d44);
  font-family: "Helvetica Neue";
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.625rem;
  /* 162.5% */
  border: none;
  padding: 0.9375rem 1.5rem;
  background: #fff;
  box-shadow: none;
  margin-bottom: 0;
  outline: none;
  line-height: normal;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  transition: all 0.3s ease-in-out;
  position: relative;
}
section.abtSec4 .form_fill_contact .inputs input:not([type=submit], [type=radio], [type=checkbox])::-moz-placeholder {
  color: #1d2d44;
}
section.abtSec4 .form_fill_contact .inputs input:not([type=submit], [type=radio], [type=checkbox])::placeholder {
  color: #1d2d44;
}
section.abtSec4 .form_fill_contact .inputs textarea {
  height: 9rem;
  resize: none;
  overflow: hidden;
  display: block;
  width: 100%;
  color: var(--Color-4, #1d2d44);
  font-family: "Helvetica Neue";
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.625rem;
  /* 162.5% */
  padding: 0.9375rem 1.5rem;
  border-radius: 0;
  border: none;
  background: #fff;
  box-shadow: none;
  height: 9rem;
  margin-bottom: 0;
  outline: none;
  line-height: normal;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  transition: all 0.3s ease-in-out;
  position: relative;
}
section.abtSec4 .form_fill_contact .inputs textarea::-moz-placeholder {
  color: #1d2d44;
}
section.abtSec4 .form_fill_contact .inputs textarea::placeholder {
  color: #1d2d44;
}
section.abtSec4 .form_fill_contact .inputs input[type=submit] {
  width: 8.5625rem;
}
section.abtSec4 .form_fill_contact .inputs textarea:focus {
  outline: none;
}
section.abtSec4.cnPg1 ul.social_media li {
  display: grid;
  grid-template-columns: 3.125rem 1fr;
  gap: 0.8125rem;
  align-items: center;
}
section.abtSec4.cnPg1 ul.social_media li span {
  width: 3.125rem;
  height: 3.125rem;
  flex-shrink: 0;
  aspect-ratio: 1/1;
  background: var(--Color, #d46a4c);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
section.abtSec4.cnPg1 ul.social_media li a {
  color: var(--Color-4, #1d2d44);
  font-family: "Helvetica Neue";
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.875rem;
  /* 166.667% */
  transition: all 0.3s ease-in-out;
}
section.abtSec4.cnPg1 ul.social_media li a:hover {
  color: #d46a4c;
}
section.abtSec4.cnPg1 ul.social_media li + li {
  margin-top: 1.25rem;
}

ul.tick_list li {
  color: var(--Color-4, #1d2d44);
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2rem;
  /* 162.5% */
  padding-left: 2.5rem;
  position: relative;
}
ul.tick_list li::before {
  content: " ";
  position: absolute;
  width: 2rem;
  height: 2rem;
  left: 0;
  top: 0;
  background: url(../images/tick-circle.svg) no-repeat;
  background-size: 100% 100% !important;
}
ul.tick_list li + li {
  margin-top: 1.05rem;
}
ul.tick_list.whiteIcon {
  margin: 0 0 1.6rem;
}
ul.tick_list.whiteIcon li {
  color: #e8e8e8;
}
ul.tick_list.whiteIcon li::before {
  background: url(../images/white-tick.svg) no-repeat;
}

section.home-sec6.abtSec5 .form_fill_email {
  position: relative;
  max-width: 54.0625rem;
  width: 100%;
  margin: auto;
}
section.home-sec6.abtSec5 .form_fill_email form input[type=email] {
  width: 100%;
  border-radius: 1.875rem;
  border: none;
  outline: none;
  background: #fff;
  padding: 1.28rem 9.375rem 1.28rem 1.25rem;
}
section.home-sec6.abtSec5 .form_fill_email form input[type=email]::-moz-placeholder {
  color: #000;
}
section.home-sec6.abtSec5 .form_fill_email form input[type=email]::placeholder {
  color: #000;
}
section.home-sec6.abtSec5 .form_fill_email form input[type=submit] {
  position: absolute;
  right: 0.375rem;
  top: 0.375rem;
}

section.innerban.otherConnectPg {
  position: relative;
  background: #fbf0ed;
  padding: 0;
}
section.innerban.otherConnectPg > img {
  width: 34.375rem;
  display: block;
  margin-left: auto;
}
section.innerban.otherConnectPg .container {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: auto;
}
section.innerban.otherConnectPg .innerTxt {
  width: 100%;
  max-width: 40.125rem;
}
section.innerban.otherConnectPg .innerTxt h1 {
  color: var(--Color-4, #1d2d44);
  font-family: "Helvetica Neue";
  font-size: 2.75rem;
  font-style: normal;
  font-weight: 700;
  line-height: 3.375rem;
  /* 122.727% */
  margin: 0 0 0.75rem;
  text-align: left;
}
section.innerban.otherConnectPg .innerTxt p {
  color: var(--Color-4, #1d2d44);
  font-family: "Helvetica Neue";
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.625rem;
  /* 162.5% */
  margin: 0 0 1.5rem;
}
section.innerban.otherConnectPg .innerTxt .btn_gp {
  display: flex;
  gap: 0.75rem;
}

section.connectSec1 {
  padding: 6.25rem 0;
}
section.connectSec1 .mb50 {
  margin-bottom: 2.325rem;
}
section.connectSec1 h2 {
  margin: 0 0 0.8rem;
}
section.connectSec1 .pItem {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
  border-radius: 0 6.25rem 0 0;
  padding: 2rem;
  background: var(--Color-3, #5c3a4d);
}
section.connectSec1 .pItem .circle_icon {
  display: flex;
  width: 5rem;
  height: 5rem;
  padding: 1.5rem;
  align-items: center;
  border-radius: 2.5rem;
  background: var(--White, #fff);
  gap: 0.625rem;
  margin: 0 0 2rem;
}
section.connectSec1 .pItem h3 {
  color: var(--White, #fff);
  font-size: 1.75rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.625rem;
  /* 92.857% */
  margin: 0 0 0.95rem;
}
section.connectSec1 .pItem p {
  color: #e8e8e8;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.625rem;
  /* 162.5% */
  margin: 0 0 1.4rem;
}
section.connectSec1 .pItem ul.tick_list {
  margin-top: auto;
}
section.connectSec1 .pItem.violetColor {
  background: var(--Color-3, #5c3a4d);
}
section.connectSec1 .pItem.blueColor {
  background: var(--Color-4, #1d2d44);
}

section.how_works {
  background: #f3f4f5;
  padding: 5rem 0 0;
}
section.how_works h2 {
  text-align: center;
}
section.how_works .grp_stage {
  padding-top: 15.0625rem;
  position: relative;
}
section.how_works .grp_stage ul.stageNumber {
  counter-reset: section;
}
section.how_works .grp_stage ul.stageNumber li {
  position: absolute;
  width: 100%;
  max-width: 16.125rem;
}
section.how_works .grp_stage ul.stageNumber li::before {
  counter-increment: section;
  content: counter(section);
  display: none;
  color: white;
  background: #555;
  padding: 0;
  margin-right: 1rem;
  border-radius: 50%;
  position: absolute;
  width: 2.1875rem;
  height: 2.1875rem;
  left: 0;
  top: -0.3125rem;
  justify-content: center;
  align-items: center;
  line-height: normal;
}
section.how_works .grp_stage ul.stageNumber li:nth-child(1)::before {
  background: #1d2d44;
}
section.how_works .grp_stage ul.stageNumber li:nth-child(2)::before {
  background: #5c3a4d;
}
section.how_works .grp_stage ul.stageNumber li:nth-child(3)::before {
  background: #c49e60;
}
section.how_works .grp_stage ul.stageNumber li:nth-child(4)::before {
  background: #d46a4c;
}
section.how_works .grp_stage ul.stageNumber li:nth-child(5)::before {
  background: #5c3a4d;
}
section.how_works .grp_stage ul.stageNumber li:nth-child(1) {
  left: 0;
  bottom: 2.0625rem;
}
section.how_works .grp_stage ul.stageNumber li:nth-child(2) {
  top: 10.25rem;
  left: 7rem;
  max-width: 16.125rem;
}
section.how_works .grp_stage ul.stageNumber li:nth-child(2) h3 {
  color: var(--Color-3, #5c3a4d);
}
section.how_works .grp_stage ul.stageNumber li:nth-child(3) {
  left: 0;
  right: 0;
  top: 3.75rem;
  margin: auto;
  max-width: 26.25rem;
  text-align: center;
}
section.how_works .grp_stage ul.stageNumber li:nth-child(3) h3 {
  color: var(--Color-2, #c49e60);
}
section.how_works .grp_stage ul.stageNumber li:nth-child(4) {
  right: 4.1875rem;
  top: 10.25rem;
  max-width: 19.125rem;
}
section.how_works .grp_stage ul.stageNumber li:nth-child(4) h3 {
  color: var(--Color, #d46a4c);
}
section.how_works .grp_stage ul.stageNumber li:nth-child(5) {
  right: 0;
  bottom: 2.0625rem;
}
section.how_works .grp_stage ul.stageNumber li:nth-child(5) h3 {
  color: var(--Color-3, #5c3a4d);
}
section.how_works .grp_stage ul.stageNumber li h3 {
  color: var(--Color-4, #1d2d44);
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.625rem;
  /* 108.333% */
  margin: 0 0 0.55rem;
}
section.how_works .grp_stage ul.stageNumber li h6 {
  color: var(--Color-4, #1d2d44);
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.625rem;
  /* 162.5% */
  margin: 0 0 0.25rem;
}
section.how_works .grp_stage ul.stageNumber li p {
  color: var(--Color-4, #1d2d44);
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.625rem;
  /* 162.5% */
}
section.how_works .grp_stage .middle_img {
  width: 100%;
  max-width: 43.625rem;
  margin: 0 auto;
}

section.home-sec6.cnPg2 .txt p {
  max-width: 45.6875rem;
  margin: 0 auto 2.125rem;
}
section.home-sec6.cnPg2 ul.social_media_circle {
  margin-top: 2.25rem;
  display: flex;
  gap: 0.75rem;
  justify-content: center;
}
section.home-sec6.cnPg2 ul.social_media_circle li a {
  width: 3.125rem;
  height: 3.125rem;
  flex-shrink: 0;
  aspect-ratio: 1/1;
  background: var(--Color-4, #1d2d44);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 3.125rem;
}
section.home-sec6.cnPg2 ul.social_media_circle li a i {
  font-size: 1.75rem;
  color: #fff;
}

section.home-sec6.abtSec5 .middle_box .txt h2 {
  margin-bottom: 1.47rem;
}
section.home-sec6.abtSec5 .middle_box .txt p {
  margin: 0 auto 1.8rem;
}
section.home-sec6.cntPg .txt p {
  max-width: 48.12rem;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body:has(.coming-soon) html {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
body:has(.coming-soon) header .header-bottom-part {
  display: none;
}
body:has(.coming-soon) footer {
  background: var(--Color, #d46a4c);
  padding: 0;
}
body:has(.coming-soon) footer .container .row:nth-child(1) {
  display: none;
}
body:has(.coming-soon) footer h6 {
  color: #fff;
  margin: 0;
  border: navajowhite;
  padding: 0.75rem 0;
}

section.coming-soon {
  padding: 60px 0;
  position: relative;
  z-index: 1;
  height: var(--available-height);
  display: flex;
  align-items: center;
  text-align: center;
}
section.coming-soon img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -2;
}
section.coming-soon::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.6) 100%);
}
section.coming-soon h2 {
  color: #fff;
  margin-bottom: 0.9375rem;
}
section.coming-soon p {
  color: #fff;
  max-width: 54.12rem;
  margin: 0 auto 2.25rem;
}
section.coming-soon p + p {
  margin: 0 auto 1.35rem;
}
section.coming-soon .form_fill_email {
  position: relative;
  max-width: 54.0625rem;
  width: 100%;
  margin: auto;
}
section.coming-soon .form_fill_email form input[type=email] {
  width: 100%;
  border-radius: 1.875rem;
  border: none;
  outline: none;
  background: #fff;
  padding: 1.28rem 9.375rem 1.28rem 1.25rem;
}
section.coming-soon .form_fill_email form input[type=email]::-moz-placeholder {
  color: #000;
}
section.coming-soon .form_fill_email form input[type=email]::placeholder {
  color: #000;
}
section.coming-soon .form_fill_email form input[type=submit] {
  position: absolute;
  right: 0.375rem;
  top: 0.375rem;
}
section.coming-soon .form_fill_email form .orange-btn {
  display: flex;
  width: 8.0625rem;
  padding: 0.6875rem 1.875rem;
  justify-content: center;
  align-items: center;
}
section.coming-soon ul.social_media_circle {
  margin-top: 2.25rem;
  display: flex;
  gap: 0.75rem;
  justify-content: center;
}
section.coming-soon ul.social_media_circle li a {
  width: 3.125rem;
  height: 3.125rem;
  flex-shrink: 0;
  aspect-ratio: 1/1;
  background: var(--Color, #d46a4c);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 3.125rem;
}
section.coming-soon ul.social_media_circle li a i {
  font-size: 1.75rem;
  color: #fff;
}

section.home-sec6.abtSec5 .form_fill_email .wpcf7-response-output {
  text-align: left;
  padding: 0.2rem 1rem 0.4rem !important;
  border: 1px solid #fff !important;
  color: #fff !important;
  margin-top: 1.2rem !important;
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.2rem;
}

section.home-sec6.abtSec5 .form_fill_email form input[type=email] {
  border: none !important;
}

footer .form-wraper {
  overflow: unset;
}

footer .form-wraper .wpcf7-response-output {
  font-size: 1rem;
  margin-top: 0.5rem !important;
  display: block;
  line-height: 1.2rem;
  font-weight: 500;
}

section.abtSec4 .form_fill_contact .wpcf7-response-output {
  font-size: 1.1rem;
  font-weight: 500;
}

section.common_pg {
  padding: 6.25rem 0 4.25rem;
}
section.common_pg h3 {
  color: var(--Color-4, #1d2d44);
  font-family: "Helvetica Neue";
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 500;
  line-height: 2.275rem;
  margin-bottom: 1.5rem;
}
section.common_pg p {
  margin-bottom: 1.5rem;
}
section.common_pg ul {
  margin-bottom: 1.5rem;
}
section.common_pg ul li {
  color: var(--Color-4, #1d2d44);
  font-family: "Helvetica Neue";
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.625rem;
  margin-bottom: 0.6rem;
  position: relative;
  padding-left: 1.5rem;
}
section.common_pg ul li:last-child {
  margin: 0;
}
section.common_pg ul li::after {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  background-color: #1d2d44;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  border-radius: 50%;
}
section.common_pg ol {
  margin-bottom: 1.5rem;
}
section.common_pg ol li {
  color: var(--Color-4, #1d2d44);
  font-family: "Helvetica Neue";
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.625rem;
  margin-bottom: 0.6rem;
  position: relative;
  counter-increment: step-counter;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
section.common_pg ol li:last-child {
  margin: 0;
}
section.common_pg ol li::before {
  content: counter(step-counter) ".";
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--Color-4, #1d2d44);
}

.page-404 {
  padding: 6.25rem 0 4.25rem;
}
.page-404 h1 {
  text-align: center;
  font-weight: 700;
  font-family: "Helvetica Neue";
  color: #1d2d44;
  font-size: 3rem;
  line-height: 3rem;
}
.page-404 h2 {
  text-align: center;
  margin-bottom: 1.5625rem;
}
.page-404 p {
  text-align: center;
  margin-bottom: 1.5625rem;
}
.page-404 .orange-btn {
  margin: 0 auto;
}

section.innerban.relativeBx {
  padding: 4.375rem 0;
}
section.innerban.relativeBx .container {
  position: relative;
  top: 0%;
  transform: translateY(0%);
  margin: auto;
}
section.innerban.relativeBx .innerTxt p {
  width: 100%;
  max-width: 34.3125rem;
}
section.innerban.relativeBx .banner_img {
  width: 100%;
  max-width: 31.25rem;
  margin-left: auto;
}

section.connectSec1.stSec1 .pItem {
  padding: 3.125rem 2.75rem;
}
section.connectSec1.stSec1 .pItem .circle_icon {
  margin: 0 0 1.25rem;
}
section.connectSec1.stSec1 .pItem h3 {
  color: var(--White, #fff);
  font-size: 2.25rem;
  font-weight: 700;
  line-height: normal;
  margin: 0 0 1.25rem;
}
section.connectSec1.stSec1 .pItem ul.white_dots_circle li {
  position: relative;
  color: var(--White, #fff);
  font-family: "Helvetica Neue";
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.625rem;
  /* 162.5% */
  padding-left: 1rem;
}
section.connectSec1.stSec1 .pItem ul.white_dots_circle li + li {
  margin-top: 1.4rem;
}
section.connectSec1.stSec1 .pItem ul.white_dots_circle li::before {
  content: " ";
  position: absolute;
  width: 0.5rem;
  height: 0.5rem;
  aspect-ratio: 1/1;
  background-color: #fff;
  border-radius: 50%;
  left: 0;
  top: 0.45rem;
}

section.stSec2 {
  padding: 5rem 0;
  background: #f3f4f5;
}
section.stSec2 h2 {
  text-align: center;
  margin: 0 0 3.125rem;
}
section.stSec2 .sty_item {
  background: #fff;
  padding: 2rem 1.375rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  height: 100%;
}
section.stSec2 .sty_item .stIcon {
  display: flex;
  width: 90px;
  height: 90px;
  padding: 25px;
  align-items: center;
  gap: 10px;
  border-radius: 45px;
  background: var(--Color, #d46a4c);
  margin: 0 auto 1.5rem;
}
section.stSec2 .sty_item .stIcon.creamBg {
  background: var(--Color-2, #c49e60);
}
section.stSec2 .sty_item .stIcon.purpleBg {
  background: var(--Color-3, #5c3a4d);
}
section.stSec2 .sty_item .stIcon.darkBlueBg {
  background: var(--Color-4, #1d2d44);
}
section.stSec2 .sty_item h4 {
  color: #1d2d44;
  line-height: 1.625rem;
  /* 108.333% */
  margin: 0 0 1.25rem;
}
section.stSec2 .sty_item p {
  color: #1d2d44;
  font-size: 1rem;
  line-height: 1.625rem;
  /* 162.5% */
}
section.stSec2 .row {
  gap: 1.25rem 0;
}
section.stSec2 .row [class*=col-]:first-of-type .sty_item {
  border-radius: 0 0 0 5rem;
}
section.stSec2 .row [class*=col-]:last-of-type .sty_item {
  border-radius: 0 0 5rem 0;
}

.training-sec1 {
  padding: 6.25rem 0;
}
.training-sec1 .wrp {
  padding: 2rem 2.25rem;
  background: var(--Color, #d46a4c);
  margin-bottom: 6.25rem;
}
.training-sec1 .wrp .blue-btn {
  display: inline-block;
}
.training-sec1 .wrp h3 {
  max-width: 35.625rem;
  color: var(--White, #fff);
  font-family: "Helvetica Neue";
  font-size: 1.75rem;
  font-style: normal;
  font-weight: 500;
  line-height: 2.25rem;
  margin: 0 auto 0;
}
.training-sec1 img {
  border-radius: 0 0 0 6.25rem;
  width: 100%;
}
.training-sec1 h2 {
  margin-bottom: 2rem;
  margin-bottom: 1.5rem;
}
.training-sec1 p {
  font-size: 0.98rem;
}
.training-sec1 p:not(:last-child) {
  margin-bottom: 1.5rem;
}

.training-sec2 {
  padding: 5rem 0;
  background: #f3f4f5;
}
.training-sec2 .wrp {
  padding: 2.5rem;
  background: #fff;
  position: relative;
}
.training-sec2 .wrp .quote {
  position: absolute;
  right: 3.13rem;
  top: -1.63rem;
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 1.875rem;
  background: var(--Color, #d46a4c);
  display: flex;
  align-items: center;
  justify-content: center;
}
.training-sec2 .wrp .main-img img {
  border-radius: 0 0 6.25rem 0;
}
.training-sec2 .wrp h3 {
  color: var(--Color-4, #1d2d44);
  font-size: 1.75rem;
  font-style: normal;
  font-weight: 500;
  line-height: 2.375rem; /* 135.714% */
  margin-bottom: 2rem;
}
.training-sec2 .wrp h5 {
  color: var(--Color, #d46a4c);
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 500;
  line-height: 2.375rem; /* 190% */
}

.area-card {
  padding: 1.5rem;
  border-radius: 0 0 6.25rem 0;
  background: #f3f4f5;
}
.area-card .image {
  margin-bottom: 1.5rem;
}
.area-card h3 {
  color: var(--Color-4, #1d2d44);
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.875rem; /* 125% */
  text-transform: capitalize;
  margin-bottom: 1.75rem;
}
.area-card p {
  color: var(--Color-4, #1d2d44);
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.625rem; /* 162.5% */
  margin-bottom: 0;
}

.training-sec3 {
  padding: 6.25rem 0;
}
.training-sec3 .card-sec {
  gap: 2rem 0;
}
.training-sec3 h2 {
  color: #000;
  text-align: center;
  text-transform: capitalize;
  margin-bottom: 3.13rem;
}
.training-sec3 .area-card {
  height: 100%;
}

.home-sec6.trn .middle_box .txt h2 {
  margin-bottom: 2.2rem;
}

.wpcf7-spinner {
  display: none;
}

footer .form-wraper .wpcf7-not-valid-tip {
  margin: 0.9375rem 0;
}
footer .form-wraper .wpcf7-response-output {
  margin: 0 !important;
}

section.abtSec4 .form_fill_contact .wpcf7-not-valid-tip {
  margin: 0.625rem 0 -0.625rem;
}
section.abtSec4 .form_fill_contact .wpcf7-response-output {
  margin: 0 !important;
  color: #fff;
}

section.home-sec6 .middle_box .wpcf7-not-valid-tip {
  margin: 10px 0 0 !important;
}/*# sourceMappingURL=style 2.css.map */