html {
  scroll-behavior: smooth;
}
body {
  font-family: sans-serif !important;
  animation-name: changePage;
  animation-duration: 1s;
}
h1,
h3 {
  font-weight: 200;
}
#scrollbar {
  height: 13rem;
  width: 2rem;
  background: #3a858b;
  position: fixed;
  right: 2%;
  top: 30%;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  justify-content: space-evenly;
  cursor: pointer;
  border-radius: 25px;
}
#scrollbar a {
  width: 10px;
  height: 10px;
  background: white;
  border-radius: 100%;
}
#scrollbar a:hover {
  width: 13px;
  height: 13px;
}
#home-page-wrapper {
  width: 100%;
  height: 100%;
  animation-name: changePage;
  animation-duration: 1s;
}
#nav-bar {
  position: sticky;
  top: 0;
  z-index: 10;
}
.navbar {
  background-image: linear-gradient(to right, #3a858b, rgb(19, 46, 48));
  padding: 0 !important;
}
.navbar-brand img {
  height: 50px;
  padding-left: 20px;
  padding-top: 10px;
}
.navbar-nav li {
  padding: 0 10px;
}
.navbar-nav li a {
  color: #fff !important;
  font-weight: 100;
  float: right;
  text-align: left;
}
.fa-bars {
  color: #fff;
  font-size: 30px !important;
}
.navbar-toggler {
  outline: none !important;
}
.dropdown-menu {
  background-image: linear-gradient(to right, #3a858b, rgb(19, 46, 48));
}
.dropdown-menu {
  background-image: linear-gradient(to right, #3a858b, rgb(19, 46, 48));
}
.dropdown-menu:hover .dropdown-item:hover {
  /* color: black !important; */
  background: transparent;
  text-shadow: 1px 1px 22px #fff, 1px 1px 22px #fff;
}
.dropdown-menu:focus .dropdown-item:focus {
  background: transparent;
  text-shadow: 1px 1px 22px #fff, 1px 1px 22px #fff;
}
.dropdown-menu:active .dropdown-item:active {
  background: transparent;
  text-shadow: 1px 1px 22px #fff, 1px 1px 22px #fff;
}
.row {
  width: 100%;
}
.fa {
  margin-right: 1rem;
}
.active-tab {
  border-bottom: 1px solid white;
}
.nav-link:hover {
  text-shadow: 1px 1px 22px #fff, 1px 1px 22px #fff;
}
.full-width {
  width: 100%;
}

@keyframes changePage {
  0% {
    opacity: 0%;
  }
  100% {
    opacity: 100%;
  }
}
.container {
  margin-top: 4rem;
  padding: 10px;
}
.row {
  margin-left: 0;
}
/* .btn-primary {
  color: #fff;
  background-color: #3a858b;
  border-color: #5bc2c2;
}

.btn-primary:hover {
  color: #fff;
  background-color: rgb(19, 46, 48);
  border-color: #8ad3d3;
} */

/* ---------------- Banner section ---------------- */
#banner {
  background-image: linear-gradient(to right, #3a858b, rgb(19, 46, 48));
  color: #fff;
  padding-top: 5%;
}
.promo-title {
  font-size: 31px;
  font-weight: 100;
  text-align: center;
  /* margin-top: 100px */
}
button {
  font-size: 20px;
  margin: 10px;
}
#banner .container > div {
  /* padding: 10px; */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* display: flex; */
}
#banner div a {
  color: #fff;
  text-decoration: none;
}
.bottom-img {
  width: 100%;
}
@media only screen and (orientation: landscape) {
  #banner .container {
    max-height: 50vh;
    display: flex;
  }
}

/* ---------------- Services section ---------------- */
#services {
  background: #f8f9fa;
  padding: 80px 0;

  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  justify-content: center;
}

.service-heading {
  min-height: 350vh !important
}
#services .container .row {
  align-items: flex-start;
}
.service-img {
  height: 150px;
  margin-top: 20px;
}
.services {
  padding: 20px;
}
/* .services:hover {
  border: 1px solid black;
  cursor: pointer;
  box-shadow: 1px 1px 10px black;
} */
.services h5 {
  padding: 5px;
  margin-top: 25px;
  text-transform: uppercase;
  font-weight: 100;
}
.title::before {
  content: '';
  background: #3a858b;
  height: 5px;
  width: 200px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  transform: translateY(63px);
}
#services div .btn-primary {
  box-shadow: none;
  padding: 8px 25px;
  border: none;
  border-radius: 20px;
  background-image: linear-gradient(to right, #3a858b, rgb(19, 46, 48));
}
.title::after {
  content: '';
  background: #3a858b;
  height: 10px;
  width: 50px;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  transform: translateY(8px);
}

@media only screen and (orientation: landscape) {
  #services .container {
    display: flex;
  }
  /* services .container div {
    display: flex;
  } */
}

/* ---------------- ABOUT US section ---------------- */

#about-us {
  padding-bottom: 50px;
  padding-top: 100px;
  align-items: center;
  min-height: calc(100vh - 50px);
}
.about-title {
  font-size: 33px;
  font-weight: 100;
  margin-top: 8%;
}
#about-us ul li {
  margin: 10px 0;
}
.about-description {
  text-align: justify;
}
.row {
  align-items: center;
}
.about-us {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* border: 1px solid #3A858B; */
  padding-top: 10px;
  border-bottom: 1px solid black;
  /* border-left: 4px solid #3A858B; */
  /* margin: 50px 5%; */
}
#about-us .card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: none;
  padding-top: 10px;
  /* border-bottom: 1px solid black; */
  /* border-left: 4px solid #3A858B; */
  /* margin: 50px 5%; */
}
#about-us .card-deck {
  border-top: 1px solid black;
  border-bottom: 1px solid black;
  padding-top: 1rem;
}
#about-us .card-body {
  /* border-top: 1px solid black; */
  margin-top: 1rem;
}
.about-us.text {
  /* background: #3A858B; */
  /* color: white; */
  min-height: 30vh;
  /* border-left: 4px solid #3A858B; */
  /* margin: 50px 5%; */
}
.card .circle {
  height: 27vh;
  width: 27vh;
  border-radius: 50%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  border: 1rem solid #3a858b;
  /* margin: 0 10px; */
}
#about-us div .btn-primary {
  box-shadow: none;
  padding: 8px 25px;
  border: none;
  border-radius: 20px;
  background-image: linear-gradient(to right, #3a858b, rgb(19, 46, 48));
}

/* ---------------- TESTIMONIALS section ---------------- */

#testimonials {
  margin: 100px 0;
}
#testimonials .row {
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonials {
  text-align: center;
  border-left: 4px solid #3a858b;
  margin: 50px 5%;
}
.testimonials img {
  height: 250px;
  border-radius: 50%;
  margin: 0 10px;
  filter: grayscale()
}
.user-details {
  display: inline-block;
  font-size: 12px;
  padding-top: 10px;
}

/* ---------------- FOOTER section ---------------- */
#footer {
  background-image: linear-gradient(to right, #3a858b, rgb(19, 46, 48));
  color: #fff;
}
.footer-img {
  width: 100%;
}
.footer-box {
  padding: 20px;
}
.footer-box img {
  width: 300px;
  margin-bottom: 20px;
}
/* .footer-box .fa{
  margin-right: 8px;
  font-size: 25px;
  height: 40px;
  width: 40px;
  text-align: center;
  padding-top: 7px;
  border-radius: 2px;
  background-image: linear-gradient(to right, #3A858B, rgb(19, 46, 48));
} */

hr {
  background-color: #fff;
}
.copyright {
  margin-bottom: 0;
  padding-bottom: 20px;
  text-align: center;
}

/* ---------------- IDEOLOGY section ---------------- */

#ideology {
  background: #f8f9fa;
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  justify-content: center;
}

/* ---------------- ABOUT US PAGE ---------------- */
#about-us .container .row {
  align-items: flex-start;
}
.about-text {
  text-align: justify;
}
#banner .container.about-page-container {
  max-height: inherit;
}
.about-us div {
  margin-bottom: 1rem;
}
#about-us-wrapper section .container {
  margin-top: 0;
}

/* ---------------- SERVICES PAGE ---------------- */
/* #services-wrapper #services{
  background: #3A858B;
  color: white;
  padding-bottom: 0;
} */
#services-wrapper #services .container {
  margin-top: 0;
}
.services {
  align-items: center;
  justify-content: center;
  display: flex;
  flex-direction: column;
}
.fa-check-circle-o {
  color: green;
}
/* ---------------- CONTACT PAGE ---------------- */
#contact-wrapper #contact {
  position: fixed;
  top: 0;
  width: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
}
#contact-wrapper iframe {
  width: 100%;
  height: 100vh;
}
form {
  /* background-image: linear-gradient(to right, #3a858b, rgb(19, 46, 48));
  opacity: 90%; */
  padding: 2rem;
  color: white;
  border-radius: 21px;
}
.contact-page-container {
  margin-top: 0;
}
.contact-page-container .row {
  background-image: linear-gradient(to right, #3a858b, rgb(19, 46, 48));
  opacity: 90%;
  color: white;
  margin-left: 0;
}
.contact-form-address {
  /* padding-left: 4rem; */
  padding-top: 2rem;
}
.contact-address {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#close-contact-form {
  display: flex;
  justify-content: flex-end;
  padding-top: 1rem;
}
.map-button {
  position: fixed;
  right: 3rem;
  bottom: 1rem;
}

/* ---------------- SERVICES PAGE ---------------- */

#careers {
  padding-bottom: 50px;
  padding-top: 100px;
  align-items: center;
  min-height: calc(100vh - 50px);
}
.about-title {
  font-size: 33px;
  font-weight: 100;
  margin-top: 8%;
}
#careers ul li {
  margin: 10px 0;
}
.card-text {
  color: black;
}
.card-title {
  color: black;
}
@media only screen and (orientation: landscape) {
  #banner .careers-page-container {
    max-height: max-content;
    display: flex;
  }
}
#banner .container.careers-page-container div .row {
  flex-direction: row;
  margin-left: 0;
}
.careers-page-container .card {
  /* height: 45vh; */
  margin: 2rem;
}
.card-img-top {
  height: 9rem;
  margin-top: 10px;
}
.email-id {
  border-bottom: 1px solid white;

}
.email-container {
  width: 100%;
    text-align: center;
}

/* ---------------- CLIENTELE PAGE ---------------- */
.clientele {
  align-items: center;
  justify-content: center;
  display: flex;
  flex-direction: column;
}
#clientele {
  background: #f8f9fa;
  padding: 3rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
}
.chart-container {
  padding-top: 1rem;
}
.capitalization-terms {
  font-size: 10px;
  font-style: italic;
}

      .mediaViewInfo {
        --web-view-name: Web 1920 – 1;
        --web-view-id: Web_1920__1;
        --web-scale-on-resize: true;
        --web-enable-deep-linking: true;
      }
      :root {
        --web-view-ids: Web_1920__1;
      }
      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        border: none;
      }
      #Web_1920__1 {
        position: absolute;
        width: 1144px;
        height: 3096px;
        background-color: rgba(248,249,250,1);
        overflow: hidden;
        --web-view-name: Web 1920 – 1;
        --web-view-id: Web_1920__1;
        --web-scale-on-resize: true;
        --web-enable-deep-linking: true;
      }
      #Component_1__1 {
        position: absolute;
        width: 1144px;
        height: 185px;
        left: 0px;
        top: 153px;
        overflow: visible;
      }
      #n_A_leading_cost_audit_firm_kn {
        left: 0px;
        top: 0px;
        position: absolute;
        overflow: visible;
        width: 1145px;
        height: 185px;
        text-align: center;
        font-family: Open Sans;
        font-style: normal;
        font-weight: bold;
        font-size: 20px;
        color: rgba(0,0,0,1);
      }
      #SERVICES_WE_CAN_OFFER_AS_AN_IB {
        left: 384px;
        top: 338px;
        position: absolute;
        overflow: visible;
        width: 371px;
        height: 54px;
        text-align: center;
        font-family: Helvetica Neue;
        font-style: normal;
        font-weight: bold;
        font-size: 20px;
        color: rgba(112,112,112,1);
      }
      #We_do_offer_services_but_we_ar {
        left: 0px;
        top: 74px;
        position: absolute;
        overflow: visible;
        width: 1145px;
        height: 185px;
        text-align: center;
        font-family: Open Sans;
        font-style: normal;
        font-weight: bold;
        font-size: 20px;
        color: rgba(0,0,0,1);
      }
      #Icon_awesome-grip-lines {
        fill: rgba(58,133,139,1);
      }
      .Icon_awesome-grip-lines {
        overflow: visible;
        position: absolute;
        width: 36px;
        height: 13.5px;
        left: 539px;
        top: 132px;
        transform: matrix(1,0,0,1,0,0);
      }
      #Rectangle_1 {
        fill: rgba(58,133,139,1);
        stroke: rgba(58,133,139,1);
        stroke-width: 1px;
        stroke-linejoin: miter;
        stroke-linecap: butt;
        stroke-miterlimit: 4;
        shape-rendering: auto;
      }
      .Rectangle_1 {
        position: absolute;
        overflow: visible;
        width: 345px;
        height: 5px;
        left: 388px;
        top: 136px;
      }
      #Group_1 {
        position: absolute;
        width: 444px;
        height: 62px;
        left: 72px;
        top: 453px;
        overflow: visible;
      }
      #Rectangle_2 {
        fill: rgba(255,255,255,1);
      }
      .Rectangle_2 {
        filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.161));
        position: absolute;
        overflow: visible;
        width: 462px;
        height: 80px;
        left: 0px;
        top: 0px;
      }
      #Stock_and_Receivable_Audit_LC_ {
        left: 139px;
        top: 473px;
        position: absolute;
        overflow: visible;
        width: 311px;
        white-space: nowrap;
        text-align: center;
        font-family: Open Sans;
        font-style: normal;
        font-weight: normal;
        font-size: 16px;
        color: rgba(0,0,0,1);
      }
      #Group_1_p {
        position: absolute;
        width: 444px;
        height: 78px;
        left: 72px;
        top: 539px;
        overflow: visible;
      }
      #Rectangle_2_q {
        fill: rgba(255,255,255,1);
      }
      .Rectangle_2_q {
        filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.161));
        position: absolute;
        overflow: visible;
        width: 462px;
        height: 96px;
        left: 0px;
        top: 0px;
      }
      #Validation_of_drawing_power_as {
        left: 139px;
        top: 556px;
        position: absolute;
        overflow: visible;
        width: 309px;
        white-space: nowrap;
        text-align: left;
        font-family: Open Sans;
        font-style: normal;
        font-weight: normal;
        font-size: 16px;
        color: rgba(0,0,0,1);
      }
      #Group_1_s {
        position: absolute;
        width: 444px;
        height: 106px;
        left: 72px;
        top: 641px;
        overflow: visible;
      }
      #Rectangle_2_t {
        fill: rgba(255,255,255,1);
      }
      .Rectangle_2_t {
        filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.161));
        position: absolute;
        overflow: visible;
        width: 462px;
        height: 124px;
        left: 0px;
        top: 0px;
      }
      #Review_of_Project_progress_vis {
        left: 137px;
        top: 661px;
        position: absolute;
        overflow: visible;
        width: 313px;
        white-space: nowrap;
        text-align: left;
        font-family: Open Sans;
        font-style: normal;
        font-weight: normal;
        font-size: 16px;
        color: rgba(0,0,0,1);
      }
      #Group_1_v {
        position: absolute;
        width: 444px;
        height: 106px;
        left: 72px;
        top: 873px;
        overflow: visible;
      }
      #Rectangle_2_w {
        fill: rgba(255,255,255,1);
      }
      .Rectangle_2_w {
        filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.161));
        position: absolute;
        overflow: visible;
        width: 462px;
        height: 124px;
        left: 0px;
        top: 0px;
      }
      #Verification_of_routing_of_pro {
        left: 137px;
        top: 893px;
        position: absolute;
        overflow: visible;
        width: 302px;
        white-space: nowrap;
        text-align: left;
        font-family: Open Sans;
        font-style: normal;
        font-weight: normal;
        font-size: 16px;
        color: rgba(0,0,0,1);
      }
      #Group_1_y {
        position: absolute;
        width: 444px;
        height: 78px;
        left: 72px;
        top: 771px;
        overflow: visible;
      }
      #Rectangle_2_z {
        fill: rgba(255,255,255,1);
      }
      .Rectangle_2_z {
        filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.161));
        position: absolute;
        overflow: visible;
        width: 462px;
        height: 96px;
        left: 0px;
        top: 0px;
      }
      #Sales_Purchase_Monitoring_Cash {
        left: 137px;
        top: 788px;
        position: absolute;
        overflow: visible;
        width: 205px;
        white-space: nowrap;
        text-align: left;
        font-family: Open Sans;
        font-style: normal;
        font-weight: normal;
        font-size: 16px;
        color: rgba(0,0,0,1);
      }
      #Group_1_ {
        position: absolute;
        width: 444px;
        height: 106px;
        left: 72px;
        top: 1003px;
        overflow: visible;
      }
      #Rectangle_2_ {
        fill: rgba(255,255,255,1);
      }
      .Rectangle_2_ {
        filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.161));
        position: absolute;
        overflow: visible;
        width: 462px;
        height: 124px;
        left: 0px;
        top: 0px;
      }
      #Pre-disbursement_verification_ {
        left: 139px;
        top: 1020px;
        position: absolute;
        overflow: visible;
        width: 302px;
        white-space: nowrap;
        text-align: left;
        font-family: Open Sans;
        font-style: normal;
        font-weight: normal;
        font-size: 16px;
        color: rgba(0,0,0,1);
      }
      #Group_1_ba {
        position: absolute;
        width: 444px;
        height: 62px;
        left: 72px;
        top: 1235px;
        overflow: visible;
      }
      #Rectangle_2_ba {
        fill: rgba(255,255,255,1);
      }
      .Rectangle_2_ba {
        filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.161));
        position: absolute;
        overflow: visible;
        width: 462px;
        height: 80px;
        left: 0px;
        top: 0px;
      }
      #LIE_Work_for_Term_Loans_Projec {
        left: 139px;
        top: 1255px;
        position: absolute;
        overflow: visible;
        width: 251px;
        white-space: nowrap;
        text-align: center;
        font-family: Open Sans;
        font-style: normal;
        font-weight: normal;
        font-size: 16px;
        color: rgba(0,0,0,1);
      }
      #Group_1_bb {
        position: absolute;
        width: 444px;
        height: 78px;
        left: 72px;
        top: 1133px;
        overflow: visible;
      }
      #Rectangle_2_bb {
        fill: rgba(255,255,255,1);
      }
      .Rectangle_2_bb {
        filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.161));
        position: absolute;
        overflow: visible;
        width: 462px;
        height: 96px;
        left: 0px;
        top: 0px;
      }
      #External_Ratings_Statutory_and {
        left: 137px;
        top: 1150px;
        position: absolute;
        overflow: visible;
        width: 315px;
        white-space: nowrap;
        text-align: left;
        font-family: Open Sans;
        font-style: normal;
        font-weight: normal;
        font-size: 16px;
        color: rgba(0,0,0,1);
      }
      #Group_1_bc {
        position: absolute;
        width: 444px;
        height: 78px;
        left: 623px;
        top: 453px;
        overflow: visible;
      }
      #Rectangle_2_bc {
        fill: rgba(255,255,255,1);
      }
      .Rectangle_2_bc {
        filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.161));
        position: absolute;
        overflow: visible;
        width: 462px;
        height: 96px;
        left: 0px;
        top: 0px;
      }
      #Group_1_bd {
        position: absolute;
        width: 444px;
        height: 62px;
        left: 623px;
        top: 555px;
        overflow: visible;
      }
      #Rectangle_2_bd {
        fill: rgba(255,255,255,1);
      }
      .Rectangle_2_bd {
        filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.161));
        position: absolute;
        overflow: visible;
        width: 462px;
        height: 80px;
        left: 0px;
        top: 0px;
      }
      #Group_1_be {
        position: absolute;
        width: 444px;
        height: 128px;
        left: 623px;
        top: 641px;
        overflow: visible;
      }
      #Rectangle_2_bf {
        fill: rgba(255,255,255,1);
      }
      .Rectangle_2_bf {
        filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.161));
        position: absolute;
        overflow: visible;
        width: 462px;
        height: 146px;
        left: 0px;
        top: 0px;
      }
      #Group_1_bg {
        position: absolute;
        width: 444px;
        height: 78px;
        left: 623px;
        top: 793px;
        overflow: visible;
      }
      #Rectangle_2_bh {
        fill: rgba(255,255,255,1);
      }
      .Rectangle_2_bh {
        filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.161));
        position: absolute;
        overflow: visible;
        width: 462px;
        height: 96px;
        left: 0px;
        top: 0px;
      }
      #Group_1_bi {
        position: absolute;
        width: 444px;
        height: 106px;
        left: 623px;
        top: 895px;
        overflow: visible;
      }
      #Rectangle_2_bj {
        fill: rgba(255,255,255,1);
      }
      .Rectangle_2_bj {
        filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.161));
        position: absolute;
        overflow: visible;
        width: 462px;
        height: 124px;
        left: 0px;
        top: 0px;
      }
      #Group_1_bk {
        position: absolute;
        width: 444px;
        height: 78px;
        left: 623px;
        top: 1025px;
        overflow: visible;
      }
      #Rectangle_2_bl {
        fill: rgba(255,255,255,1);
      }
      .Rectangle_2_bl {
        filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.161));
        position: absolute;
        overflow: visible;
        width: 462px;
        height: 96px;
        left: 0px;
        top: 0px;
      }
      #Group_1_bm {
        position: absolute;
        width: 444px;
        height: 78px;
        left: 623px;
        top: 1127px;
        overflow: visible;
      }
      #Rectangle_2_bn {
        fill: rgba(255,255,255,1);
      }
      .Rectangle_2_bn {
        filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.161));
        position: absolute;
        overflow: visible;
        width: 462px;
        height: 96px;
        left: 0px;
        top: 0px;
      }
      #Group_1_bo {
        position: absolute;
        width: 444px;
        height: 78px;
        left: 623px;
        top: 1229px;
        overflow: visible;
      }
      #Rectangle_2_bp {
        fill: rgba(255,255,255,1);
      }
      .Rectangle_2_bp {
        filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.161));
        position: absolute;
        overflow: visible;
        width: 462px;
        height: 96px;
        left: 0px;
        top: 0px;
      }
      #Group_20 {
        position: absolute;
        width: 995px;
        height: 827px;
        left: 80px;
        top: 1455px;
        overflow: visible;
      }
      #Group_1_br {
        position: absolute;
        width: 995px;
        height: 827px;
        left: 0px;
        top: 0px;
        overflow: visible;
      }
      #Rectangle_2_bs {
        fill: rgba(255,255,255,1);
      }
      .Rectangle_2_bs {
        filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.161));
        position: absolute;
        overflow: visible;
        width: 1013px;
        height: 845px;
        left: 0px;
        top: 0px;
      }
      #n_____Initiating_preventive_st {
        left: 153px;
        top: 213px;
        position: absolute;
        overflow: visible;
        width: 695px;
        white-space: nowrap;
        text-align: left;
        font-family: Open Sans;
        font-style: normal;
        font-weight: normal;
        font-size: 16px;
        color: rgba(0,0,0,1);
      }
      #DC_Dave_amp_Co_being_a_leading {
        left: 136px;
        top: 1529px;
        position: absolute;
        overflow: visible;
        width: 869px;
        height: 185px;
        text-align: center;
        font-family: Open Sans;
        font-style: normal;
        font-weight: bold;
        font-size: 16px;
        color: rgba(0,0,0,1);
      }
      #WHY_CHOOSE_US {
        left: 385px;
        top: 1491px;
        position: absolute;
        overflow: visible;
        width: 371px;
        height: 54px;
        text-align: center;
        font-family: Helvetica Neue;
        font-style: normal;
        font-weight: bold;
        font-size: 20px;
        color: rgba(112,112,112,1);
      }
      #Rectangle_3 {
        fill: rgba(58,133,139,1);
        stroke: rgba(58,133,139,1);
        stroke-width: 1px;
        stroke-linejoin: miter;
        stroke-linecap: butt;
        stroke-miterlimit: 4;
        shape-rendering: auto;
      }
      .Rectangle_3 {
        position: absolute;
        overflow: visible;
        width: 345px;
        height: 5px;
        left: 388px;
        top: 136px;
      }
      #Rectangle_4 {
        fill: rgba(58,133,139,1);
        stroke: rgba(58,133,139,1);
        stroke-width: 1px;
        stroke-linejoin: miter;
        stroke-linecap: butt;
        stroke-miterlimit: 4;
        shape-rendering: auto;
      }
      .Rectangle_4 {
        position: absolute;
        overflow: visible;
        width: 861px;
        height: 5px;
        left: 148px;
        top: 1402px;
      }
      #Verification_of_Group_Company_ {
        left: 715px;
        top: 470px;
        position: absolute;
        overflow: visible;
        width: 231px;
        white-space: nowrap;
        text-align: left;
        font-family: Open Sans;
        font-style: normal;
        font-weight: normal;
        font-size: 16px;
        color: rgba(0,0,0,1);
      }
      #End_use_of_funds_Siphoning_of_ {
        left: 717px;
        top: 575px;
        position: absolute;
        overflow: visible;
        width: 277px;
        white-space: nowrap;
        text-align: left;
        font-family: Open Sans;
        font-style: normal;
        font-weight: normal;
        font-size: 16px;
        color: rgba(0,0,0,1);
      }
      #Movement_in_promoter_holding_o {
        left: 712px;
        top: 662px;
        position: absolute;
        overflow: visible;
        width: 295px;
        white-space: nowrap;
        text-align: left;
        font-family: Open Sans;
        font-style: normal;
        font-weight: normal;
        font-size: 16px;
        color: rgba(0,0,0,1);
      }
      #Review_of_unbilled_revenue_and {
        left: 714px;
        top: 810px;
        position: absolute;
        overflow: visible;
        width: 301px;
        white-space: nowrap;
        text-align: left;
        font-family: Open Sans;
        font-style: normal;
        font-weight: normal;
        font-size: 16px;
        color: rgba(0,0,0,1);
      }
      #Assessment_of_Quarterly_Key_Fi {
        left: 717px;
        top: 915px;
        position: absolute;
        overflow: visible;
        width: 285px;
        white-space: nowrap;
        text-align: left;
        font-family: Open Sans;
        font-style: normal;
        font-weight: normal;
        font-size: 16px;
        color: rgba(0,0,0,1);
      }
      #Verification_of_project_expens {
        left: 715px;
        top: 1042px;
        position: absolute;
        overflow: visible;
        width: 316px;
        white-space: nowrap;
        text-align: left;
        font-family: Open Sans;
        font-style: normal;
        font-weight: normal;
        font-size: 16px;
        color: rgba(0,0,0,1);
      }
      #Litigations_Contingent_Liabili {
        left: 715px;
        top: 1144px;
        position: absolute;
        overflow: visible;
        width: 244px;
        white-space: nowrap;
        text-align: left;
        font-family: Open Sans;
        font-style: normal;
        font-weight: normal;
        font-size: 16px;
        color: rgba(0,0,0,1);
      }
      #Verification_of_revaluation_of {
        left: 715px;
        top: 1246px;
        position: absolute;
        overflow: visible;
        width: 281px;
        white-space: nowrap;
        text-align: left;
        font-family: Open Sans;
        font-style: normal;
        font-weight: normal;
        font-size: 16px;
        color: rgba(0,0,0,1);
      }
      #Group_1_b {
        position: absolute;
        width: 444px;
        height: 62px;
        left: 360px;
        top: 2387px;
        overflow: visible;
      }
      #Rectangle_2_b {
        fill: rgba(58,133,139,1);
      }
      .Rectangle_2_b {
        filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.161));
        position: absolute;
        overflow: visible;
        width: 462px;
        height: 80px;
        left: 0px;
        top: 0px;
      }
      #TEAM_COMPOSITIONS {
        left: 496px;
        top: 2407px;
        position: absolute;
        overflow: visible;
        width: 173px;
        white-space: nowrap;
        text-align: center;
        font-family: Open Sans;
        font-style: normal;
        font-weight: bold;
        font-size: 16px;
        color: rgba(255,255,255,1);
      }
      #Group_1_ca {
        position: absolute;
        width: 224px;
        height: 155px;
        left: 80px;
        top: 2512px;
        overflow: visible;
      }
      #Rectangle_2_ca {
        fill: rgba(58,133,139,1);
      }
      .Rectangle_2_ca {
        filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.161));
        position: absolute;
        overflow: visible;
        width: 242px;
        height: 173px;
        left: 0px;
        top: 0px;
      }
      #Rectangle_5 {
        fill: rgba(58,133,139,1);
        stroke: rgba(58,133,139,1);
        stroke-width: 1px;
        stroke-linejoin: miter;
        stroke-linecap: butt;
        stroke-miterlimit: 4;
        shape-rendering: auto;
      }
      .Rectangle_5 {
        position: absolute;
        overflow: visible;
        width: 861px;
        height: 5px;
        left: 162px;
        top: 2330px;
      }
      #We_assure_absolute_integrity_a {
        left: 0px;
        top: 2830px;
        position: absolute;
        overflow: hidden;
        width: 1145px;
        height: 104px;
        text-align: center;
        font-family: Open Sans;
        font-style: italic;
        font-weight: normal;
        font-size: 21px;
        color: rgba(0,0,0,1);
      }
      #Partners_with_more__than_25_ve {
        left: 90px;
        top: 2544px;
        position: absolute;
        overflow: visible;
        width: 206px;
        white-space: nowrap;
        text-align: left;
        font-family: Open Sans;
        font-style: normal;
        font-weight: bold;
        font-size: 16px;
        color: rgba(255,255,255,1);
      }
      #Group_1_ce {
        position: absolute;
        width: 247px;
        height: 155px;
        left: 313px;
        top: 2511px;
        overflow: visible;
      }
      #Rectangle_2_cf {
        fill: rgba(58,133,139,1);
      }
      .Rectangle_2_cf {
        filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.161));
        position: absolute;
        overflow: visible;
        width: 265px;
        height: 173px;
        left: 0px;
        top: 0px;
      }
      #Young_qualified_Cost_Accountan {
        left: 338px;
        top: 2535px;
        position: absolute;
        overflow: visible;
        width: 209px;
        white-space: nowrap;
        text-align: left;
        font-family: Open Sans;
        font-style: normal;
        font-weight: bold;
        font-size: 16px;
        color: rgba(255,255,255,1);
      }
      #Group_1_ch {
        position: absolute;
        width: 232px;
        height: 155px;
        left: 583px;
        top: 2512px;
        overflow: visible;
      }
      #Rectangle_2_ci {
        fill: rgba(58,133,139,1);
      }
      .Rectangle_2_ci {
        filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.161));
        position: absolute;
        overflow: visible;
        width: 250px;
        height: 173px;
        left: 0px;
        top: 0px;
      }
      #Professionals_having__expertis {
        left: 604px;
        top: 2535px;
        position: absolute;
        overflow: visible;
        width: 190px;
        white-space: nowrap;
        text-align: left;
        font-family: Open Sans;
        font-style: normal;
        font-weight: bold;
        font-size: 16px;
        color: rgba(255,255,255,1);
      }
      #Group_1_ck {
        position: absolute;
        width: 232px;
        height: 155px;
        left: 825px;
        top: 2511px;
        overflow: visible;
      }
      #Rectangle_2_cl {
        fill: rgba(58,133,139,1);
      }
      .Rectangle_2_cl {
        filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.161));
        position: absolute;
        overflow: visible;
        width: 250px;
        height: 173px;
        left: 0px;
        top: 0px;
      }
      #Professionals_having__expertis_cm {
        left: 837px;
        top: 2534px;
        position: absolute;
        overflow: visible;
        width: 207px;
        white-space: nowrap;
        text-align: left;
        font-family: Open Sans;
        font-style: normal;
        font-weight: bold;
        font-size: 16px;
        color: rgba(255,255,255,1);
      }
      #Group_1_cn {
        position: absolute;
        width: 232px;
        height: 77px;
        left: 466px;
        top: 2693px;
        overflow: visible;
      }
      #Rectangle_2_co {
        fill: rgba(58,133,139,1);
      }
      .Rectangle_2_co {
        filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.161));
        position: absolute;
        overflow: visible;
        width: 250px;
        height: 95px;
        left: 0px;
        top: 0px;
      }
      #Duly_Qualified_Engineers {
        left: 484px;
        top: 2718px;
        position: absolute;
        overflow: visible;
        width: 197px;
        white-space: nowrap;
        text-align: left;
        font-family: Open Sans;
        font-style: normal;
        font-weight: bold;
        font-size: 16px;
        color: rgba(255,255,255,1);
      }
      #Rectangle_6 {
        fill: rgba(58,133,139,1);
      }
      .Rectangle_6 {
        position: absolute;
        overflow: visible;
        width: 5px;
        height: 244px;
        left: 569px;
        top: 2449px;
      }
      #Rectangle_7 {
        fill: rgba(58,133,139,1);
      }
      .Rectangle_7 {
        width: 5px;
        height: 24px;
        position: absolute;
        overflow: visible;
        transform: matrix(1,0,0,1,568.5,2569.5) rotate(90deg);
        transform-origin: center;
      }
      #Rectangle_8 {
        fill: rgba(58,133,139,1);
      }
      .Rectangle_8 {
        width: 5px;
        height: 24px;
        position: absolute;
        overflow: visible;
        transform: matrix(1,0,0,1,813.5,2569.5) rotate(90deg);
        transform-origin: center;
      }
      #Rectangle_9 {
        fill: rgba(58,133,139,1);
      }
      .Rectangle_9 {
        width: 5px;
        height: 24px;
        position: absolute;
        overflow: visible;
        transform: matrix(1,0,0,1,306.5,2569.5) rotate(90deg);
        transform-origin: center;
      }
      #Rectangle_10 {
        fill: rgba(255,255,255,1);
      }
      .Rectangle_10 {
        position: absolute;
        overflow: visible;
        width: 1144px;
        height: 22px;
        left: 0px;
        top: 2986px;
      }
      #Group_21 {
        position: absolute;
        width: 83px;
        height: 877px;
        left: 528px;
        top: 400px;
        overflow: visible;
      }
      #Rectangle_11 {
        fill: rgba(255,255,255,1);
      }
      .Rectangle_11 {
        position: absolute;
        overflow: visible;
        width: 11px;
        height: 877px;
        left: 36px;
        top: 0px;
      }
      #Rectangle_12 {
        fill: rgba(255,255,255,1);
      }
      .Rectangle_12 {
        position: absolute;
        overflow: visible;
        width: 36px;
        height: 12px;
        left: 1px;
        top: 77px;
      }
      #Rectangle_13 {
        fill: rgba(255,255,255,1);
      }
      .Rectangle_13 {
        position: absolute;
        overflow: visible;
        width: 36px;
        height: 12px;
        left: 47px;
        top: 97px;
      }
      #Rectangle_14 {
        fill: rgba(255,255,255,1);
      }
      .Rectangle_14 {
        position: absolute;
        overflow: visible;
        width: 36px;
        height: 12px;
        left: 47px;
        top: 180px;
      }
      #Rectangle_15 {
        fill: rgba(255,255,255,1);
      }
      .Rectangle_15 {
        position: absolute;
        overflow: visible;
        width: 36px;
        height: 12px;
        left: 47px;
        top: 294px;
      }
      #Rectangle_16 {
        fill: rgba(255,255,255,1);
      }
      .Rectangle_16 {
        position: absolute;
        overflow: visible;
        width: 36px;
        height: 12px;
        left: 45px;
        top: 426px;
      }
      #Rectangle_17 {
        fill: rgba(255,255,255,1);
      }
      .Rectangle_17 {
        position: absolute;
        overflow: visible;
        width: 36px;
        height: 12px;
        left: 45px;
        top: 545px;
      }
      #Rectangle_18 {
        fill: rgba(255,255,255,1);
      }
      .Rectangle_18 {
        position: absolute;
        overflow: visible;
        width: 36px;
        height: 12px;
        left: 42px;
        top: 664px;
      }
      #Rectangle_19 {
        fill: rgba(255,255,255,1);
      }
      .Rectangle_19 {
        position: absolute;
        overflow: visible;
        width: 36px;
        height: 12px;
        left: 42px;
        top: 768px;
      }
      #Rectangle_20 {
        fill: rgba(255,255,255,1);
      }
      .Rectangle_20 {
        position: absolute;
        overflow: visible;
        width: 36px;
        height: 12px;
        left: 42px;
        top: 865px;
      }
      #Rectangle_21 {
        fill: rgba(255,255,255,1);
      }
      .Rectangle_21 {
        position: absolute;
        overflow: visible;
        width: 36px;
        height: 12px;
        left: 1px;
        top: 163px;
      }
      #Rectangle_22 {
        fill: rgba(255,255,255,1);
      }
      .Rectangle_22 {
        position: absolute;
        overflow: visible;
        width: 36px;
        height: 12px;
        left: 1px;
        top: 278px;
      }
      #Rectangle_23 {
        fill: rgba(255,255,255,1);
      }
      .Rectangle_23 {
        position: absolute;
        overflow: visible;
        width: 36px;
        height: 12px;
        left: 0px;
        top: 404px;
      }
      #Rectangle_24 {
        fill: rgba(255,255,255,1);
      }
      .Rectangle_24 {
        position: absolute;
        overflow: visible;
        width: 36px;
        height: 12px;
        left: 1px;
        top: 515px;
      }
      #Rectangle_25 {
        fill: rgba(255,255,255,1);
      }
      .Rectangle_25 {
        position: absolute;
        overflow: visible;
        width: 36px;
        height: 12px;
        left: 1px;
        top: 641px;
      }
      #Rectangle_26 {
        fill: rgba(255,255,255,1);
      }
      .Rectangle_26 {
        position: absolute;
        overflow: visible;
        width: 36px;
        height: 12px;
        left: 1px;
        top: 753px;
      }
      #Rectangle_27 {
        fill: rgba(255,255,255,1);
      }
      .Rectangle_27 {
        position: absolute;
        overflow: visible;
        width: 36px;
        height: 12px;
        left: 1px;
        top: 853px;
      }
