/* +++++++++++++++++ Global css +++++++++++++++++++*/

:root {
  --main-font: "Roboto", sans-serif;
  --heading-font: "Roboto", sans-serif;
  --heading-color: #333333;
  --text-color: #383737;
  --peach-color: #004925;
  --lightpeach-color: #ffd5b5;
  /* --yellow-color: #ffe1bd; */
  --yellow-color: #d5ffea;
  --blue-color: #4990e2;
  --lightblue-color: #edf4fe;
  --grey-color: #e5e5e3;
  --white-color: #fff;
  --black-color: #000;

}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-family: var(--main-font);
  margin-bottom: 0;
}

* {
  margin: 0;
  padding: 0;
  outline: none;
  border: none;
}

html {
  overflow-x: hidden;
  overflow-y: scroll;
}

body {
  font-family: var(--main-font);
  color: #4e4e4e;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
}

ul {
  padding: 0;
  margin: 0;
}

ul li {
  list-style: none;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* Chrome, Safari, Edge, Opera */

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */

input[type="number"] {
  -moz-appearance: textfield;
}

/* responsive font size */

html {
  font-size: 1rem;
}

@include media-breakpoint-up(sm) {
  html {
    font-size: 1.2rem;
  }
}

@include media-breakpoint-up(md) {
  html {
    font-size: 1.4rem;
  }
}

@include media-breakpoint-up(lg) {
  html {
    font-size: 1.6rem;
  }
}

.btn-dark.focus,
.btn-dark:focus {
  box-shadow: none;
}

/* +++++++++++++++++ Global css +++++++++++++++++++*/

/* Header Sec Start */
.navbar-brand {
  height: 60px;
}

.navbar-brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav-bar-main .navbar-collapse {
  justify-content: center;
}

.nav-bar-main .navbar-nav .nav-item .nav-link {
  font-size: 17px;
  line-height: 21px;
  font-weight: 400;
  color: var(--black-color);
}

.nav-bar-main .navbar-nav .nav-item {
  padding: 0px 20px;
}

.nav-bar-main .navbar-nav .nav-item .nav-link.active {
  color: var(--black-color);
}

.header-main {
  position: absolute;
  height: auto;
  width: 100%;
  z-index: 100;
  padding: 0px 0px;
  z-index: 999;
}

.login-btn {
  display: flex;
  align-items: center;

  a {
    color: var(--white-color);
    border-radius: 30px;
    font-size: 15px;
    line-height: 20px;
    padding: 10px 25px;
    border: none;
    background: var(--peach-color);
    box-shadow: none;

    span {
      margin-right: 7px;
    }
  }
}


.header-main {
  .header-container {
    padding: 0px 100px;
  }
}

/* Header Sec End */
/* Banner Sec Start */
.bnr-sec {
  position: relative;
  background: var(--yellow-color);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 180px 0px 0px;
}

.bnr-img-wrap {
  position: relative;
}

.bnr-img {
  /* position: absolute;
  top: -25px;
  right: 0px; */

  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.bnr-social {
  position: absolute;
  left: 0;
  top: 50%;
  transform: rotate(270deg);
  width: 160px;
  height: 140px;
}

.bnr-text {
  h3 {
    font-family: var(--heading-font);
    font-size: 18px;
    line-height: 22px;
    font-weight: 500;
    color: var(--heading-color);
    margin-bottom: 20px;
  }

  h1 {
    font-size: 80px;
    line-height: 84px;
    font-weight: 700;
    color: var(--heading-color);
    font-family: var(--heading-font);
    margin-bottom: 35px;
    position: relative;
  }

  p {
    font-family: var(--heading-font);
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    color: var(--text-color);
  }
}

.get-btn {
  margin-top: 40px;

  a {
    color: var(--white-color);
    border-radius: 30px;
    font-size: 15px;
    line-height: 20px;
    padding: 10px 40px;
    border: none;
    background: var(--peach-color);
    box-shadow: none;
  }
}

.bnr-btm-text {
  width: 100%;

  h2 {
    color: #EBE9E1;
    font-size: 155px;
    line-height: 160px;
    font-weight: 400;
    font-family: var(--heading-3-font);
  }
}

/* Banner Sec End */
/* About-sec Start */
.about-sec {
  padding: 50px 0px;
}

.about-lft-img {
  img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}

.heading-1 {
  h3 {
    font-size: 13px;
    font-weight: 500;
    display: inline-block;
    padding: 5px 15px;
    border-radius: 30px;
    margin-bottom: 0;
    letter-spacing: 1px;
    margin-bottom: 20px;
  }

  h2 {
    font-size: 50px;
    line-height: 54px;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 15px;
  }

  h4 {
    font-size: 30px;
    line-height: 34px;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 15px;
  }

  p {
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    color: var(--text-color);
  }

  ul {
    li {
      margin-bottom: 20px;

      p {
        font-size: 20px;
        line-height: 24px;
        font-weight: 600;
      }
    }
  }
}

.heading-white {
  h2 {
    color: var(--white-color);
  }
}

.heading-list-1 {
  ul {
    columns: 2;
  }
}

.heading-list-2 {
  ul {
    li {
      p {
        font-size: 14px;
        line-height: 18px;
        font-weight: 600;
      }
    }
  }
}

.heading-list-2 {
  ul {
    li {
      position: relative;
      padding-left: 30px;
    }

    li::before {
      position: absolute;
      content: "✓";
      font-family: "Font Awesome 6 Free";
      font-size: 14px;
      font-weight: 700;
      top: 50%;
      left: 0px;
      transform: translate(0%, -50%);
      background: var(--peach-color);
      color: var(--white-color);
      width: 20px;
      height: 20px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }
  }
}

.bg-blu {
  h3 {
    color: var(--white-color);
    background: var(--peach-color);
  }
}

.abt-list {
  margin-top: 20px;
}

.abt-list {
  ul {
    display: flex;

    li {
      margin-right: 35px;
      display: flex;
      align-items: center;
      justify-content: center;

      h3 {
        font-size: 14px;
        line-height: 18px;
        font-weight: 400;
        margin-bottom: 10px;
      }
    }
  }
}

.net-icon {
  font-size: 40px;
  color: var(--blue-color);
  margin-bottom: 10px;
  margin-right: 10px;

  i {
    margin-bottom: 20px;
  }
}

.dir-img {
  height: 100px;
  margin-bottom: 10px;
  width: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 10px;

  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
  }
}

.dir-name {
  text-align: center;

  h4 {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 5px;
    color: var(--black-color);
  }

  a {
    font-size: 14px;
    line-height: 18px;
    display: inline-flex;
    color: var(--black-color);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 24ch;

    span {
      font-size: 12px;
      background: var(--peach-color);
      color: var(--white-color);
      width: 20px;
      height: 20px;
      display: flex;
      justify-content: center;
      align-items: center;
      border-radius: 50%;
      margin: 0 auto;
      padding: 5px;
    }
  }
}

.dir-div {
  margin-bottom: 15px;
}

/* About-sec End */

/* core-advantage start */
.core-advantage {
  padding: 0px 0px 50px;
}

.advantage-list {
  margin-top: 60px;
}

.advantage-box {
  background: var(--grey-color);
  padding: 35px 35px;
  border-radius: 10px;
  min-height: 410px;
  box-shadow: 0px 0px 0px 2px rgb(0 73 37 / 8%);


  span {
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-bottom: 20px;

    i {
      color: var(--white-color);
      font-size: 40px;
    }
  }

  h3 {
    font-size: 35px;
    line-height: 40px;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 20px;

  }

  p {
    font-size: 14px;
    line-height: 24px;
    color: var(--text-color);
  }
}

.bk-bl {
  background: var(--peach-color);
}

/* core-advantage End */

/* ethical sec start */
.ethical-sec {
  background: var(--yellow-color);
}

.bg-peach {
  h3 {
    color: var(--white-color);
    background: var(--peach-color);
  }
}

/* ethical sec end */

/* Counter sec start */
.parent {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;

  .stat-row {
    display: flex;
    justify-content: space-between;
    max-width: 1050px;
    padding: 100px 0px;
  }

  .stat-item {
    margin-right: 40px;
  }

  .stat-number {
    font-style: normal;
    font-weight: 600;
    font-size: 40px;
    line-height: 45px;
    text-align: center;
    text-transform: uppercase;
    color: var(--heading-color);
    margin-bottom: 10px;
  }

  .stat-title {
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 26px;
    text-align: center;
    color: var(--heading-color);
  }

  .count-icon {
    margin-bottom: 10px;
    text-align: center;

    span {
      font-size: 40px;
      color: var(--peach-color);
    }
  }
}



/* Counter sec end */
/* expertise sec start */
.expertise-sec {
  background: var(--yellow-color);
}

.exp-div {
  margin-top: 40px;
}

.exp-img {
  height: 60px;
  margin-right: 15px;

  img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
  }
}

.exp-text {
  p {
    font-size: 14px;
    line-height: 18px;
  }
}

/* expertise sec end */
/* service sec start */
.service-sec {
  padding: 50px 0px;
  position: relative;
}

.service-sec::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 72%;
  background: var(--yellow-color);
}

.blu-btn {
  a {
    border: 1px solid var(--peach-color);
    background: transparent;
    color: var(--peach-color);
    font-size: 14px;
    font-weight: 500;
  }
}

.bk-org {
  background: var(--peach-color);
}

/* service sec end */

/* Portfolio Service Sec start */
.portfolio-img {
  margin-bottom: 20px;

  img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
  }
}

.portfolio-text {
  h3 {
    font-size: 35px;
    line-height: 40px;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 20px;
  }

  p {
    font-size: 14px;
    line-height: 24px;
    color: var(--text-color);
  }
}

.portfolio-head {
  margin-bottom: 50px;
}

/* Portfolio Service Sec end */
/* Add sec start */
.add-sec {
  /* background: #532525; */
}

.add-box {
  padding: 30px 0px;
}

.add-icon-wrap {
  margin-right: 15px;
}

.add-icon {
  span {
    width: 85px;
    height: 85px;
    color: var(--peach-color);
    background: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 35px;
  }
}

.add-text {
  h4 {
    font-size: 14px;
    line-height: 18px;
    color: rgb(255 255 255 / 50%);
    margin-bottom: 15px;
    font-weight: 300;
  }

  h3 {
    font-size: 20px;
    line-height: 24px;
    color: var(--white-color);
  }
}

.add-box-1 {
  background: #658c78;
}

.add-box-2 {
  background: #46201f;
}

.add-box-3 {
  background: #527564;
}

/* Add sec end */

/* Client Sec Start */
/* .client-sec {
  padding: 50px 0px;
}

.client-logo {
  height: 50px;

  img {
    width: 100%;
    height: 100%;
    object-fit: contain;
     filter: grayscale(100%);
  }
}
.client-logo:hover img{
   filter: grayscale(0%);
   transition: ease-in all 0.3s;
} */
/* Client Sec End */

.lets-conct {
  padding-bottom: 0px;
}

/* footer sec start*/
footer {
  padding: 50px 0px 0px 0px;
  background: #89a295;

  .ftr-logo {
    height: 60px;

    img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }
  }

  .social-icon-div {
    ul {
      display: flex;
      align-items: center;

      li {
        margin-right: 26px;

        a {
          width: 40px;
          height: 40px;
          display: flex;
          align-items: center;
          justify-content: center;
          border-radius: 3px;
          color: var(--white-color);
          background: var(--peach-color);
          border-radius: 50%;
          font-size: 20px;
        }
      }
    }
  }

  .ftr-link {
    h5 {
      font-size: 22px;
      line-height: 26px;
      font-weight: 600;
      color: var(--white-color);
      margin-bottom: 28px;
    }

    ul {
      li {
        margin-bottom: 20px;

        a,
        p {
          font-size: 14px;
          line-height: 18px;
          font-weight: 400;
          color: var(--white-color);
        }
      }
    }
  }

  .terms-link {
    ul {
      column-count: 2;
    }
  }

  .ftr-top-div {
    padding-bottom: 40px;
    border-bottom: 2px solid rgb(255 255 255 / 10%);
  }

  .ftr-btm {
    padding: 30px 0px;

    .copy-right {
      p {
        font-size: 14px;
        line-height: 18px;
        font-weight: 400;
        color: rgb(255 255 255);
      }
    }
  }
}

/* footer sec end*/


/*****************
 Inner Pages  
 *****************/
/* About Page Start */
.inner-page {
  padding: 50px 0px 0px;
}

.con-from {
  .form-control {
    color: #6C6C6C;
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    border-radius: 10px;
    border: 1px solid #A7A7A7;
    padding: 15px 15px;
    box-shadow: none;
  }
}

.sub-btn {
  margin-top: 20px;

  .btn {
    color: var(--white-color);
    border-radius: 30px;
    font-size: 15px;
    line-height: 20px;
    padding: 10px 25px;
    border: none;
    background: var(--peach-color);
    box-shadow: none;

  }
}

.con-bg {
  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}


/* About Page End */
.inner-bnr-img {
  height: 400px;
  position: relative;

  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.inner-bnr {
  position: relative;
}

.inner-bnr-img::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 / 50%);
}

.inr-header {
  position: relative;
}

.bread-crumb {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.bread-crumb .breadcrumb-item {
  color: var(--white-color);

  a {
    color: var(--white-color);
  }
}

.bread-crumb .breadcrumb-item+.breadcrumb-item::before {
  color: var(--white-color);
}