/* scroll up btn start*/
.btn_scroll_up {
  width: 60px;
  height: 60px;
  background-color: #28aa4a;
  border: none;
  position: fixed;
  right: 0%;
  top: 80%;
  text-align: center;
  line-height: 50px;
  color: #fff;
  font-size: 20px;
  text-decoration: none;
  z-index: 10000000000 !important;
  animation: scroll_up 5s linear infinite;
  visibility: hidden;
}

.btn_scroll_up:hover {
  color: #fff;
}

@keyframes scroll_up {
  0% {
    transform: translate(0, 0);
  }
  20% {
    transform: translateY(-10px);
  }
  50% {
    transform: translateY(0px);
  }
  80% {
    transform: translateY(-10px);
  }
  100% {
    transform: translate(0, 0);
  }
}
/* scroll up btn end */

/* header start */
.header {
  width: 100%;
  height: auto;
  position: relative;
  padding-top: 20px;
  padding-bottom: 20px;
  background-color: #fff;
  box-shadow: 0 40px 70px 40px rgb(0 0 0/5%);
  z-index: 10000000;
}

.header_card {
  width: 100%;
  position: relative;
  display: inline-flex;
  cursor: pointer;
}

.header_card_head {
  width: 45px;
  height: 45px;
  background-color: #e5e5e5;
  border-radius: 5px;
  text-align: center;
  line-height: 40px;
  color: #28aa4a;
  z-index: 1;
  position: relative;
  transition: all 0.3s linear;
  overflow: hidden;
}

.header_card_head::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0%;
  z-index: 0;
  top: -100%;
  border-radius: 5px;
  background-color: #28aa4a;
  transition: all 0.3s linear;
}

.header_card:hover .header_card_head {
  color: #fff;
}

.header_card:hover .header_card_head::before {
  top: 0%;
  z-index: -1;
  transition: all 0.3s linear;
}

.header_card_body {
  padding-left: 10px;
}

.header_card_body span:first-child {
  display: block;
  margin-bottom: 4px;
  font-size: 15px;
  line-height: initial;
  color: #666666;
}

.header_card_body span:last-child {
  font-size: 15px;
  color: #2c2c2c;
  font-weight: 500;
}

/* header end */

/* navigation start */

.navigation {
  padding: 0;
  position: absolute;
  left: 0;
  right: 0;
  z-index: 1000000;
  background-color: transparent;
  transition: all 0.5s;
}

.navigation .container {
  background-color: #2c2c2c;
  padding: 10px 15px;
  border-radius: 0 0 5px 5px;
  transition: all 0.5s;
}

.main-nav li {
  margin-right: 15px;
  margin-left: 15px;
}

.main-nav .nav-link {
  color: #fff;
  font-weight: 500;
  position: relative;
  font-size: 15px;
  text-transform: capitalize;
  font-family: "Space Grotesk", sans-serif;
  cursor: pointer;
}

.main-nav .nav-link:hover {
  color: #28aa4a;
}

.nav_btn {
  padding: 12px 30px;
  border-radius: 5px;
  border: 1px solid #28aa4a;
  background-color: transparent;
  color: #fff;
  text-transform: capitalize;
  font-size: 15px;
  font-weight: 500;
  position: relative;
  transition: all 0.3s linear;
  overflow: hidden;
  z-index: 1;
  cursor: pointer;
  font-family: "Space Grotesk", sans-serif;
}

.nav_btn::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  right: -100%;
  top: 100%;
  background-color: #28aa4a;
  transition: all 0.3s linear;
  z-index: -1;
}
.nav_btn::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  left: -100%;
  top: -100%;
  background-color: #28aa4a;
  transition: all 0.3s linear;
  z-index: -1;
}

.nav_btn:hover::after {
  right: 0%;
  top: 0%;
  transition: all 0.3s linear;
  z-index: -1;
}

.nav_btn:hover::before {
  left: 0%;
  top: 0%;
  transition: all 0.3s linear;
  z-index: -1;
}

/* navigation end */

/* modal start */
.modal {
  z-index: 100000000000 !important;
}

.modal.right.fade.in .modal-dialog {
  right: 0 !important;
  z-index: 1000000000 !important;
  position: relative;
}

.modal.right .modal-content {
  height: 100%;
  overflow: auto;
  width: 400px !important;
  border-radius: 0;
}

.modal.right .modal-dialog {
  position: fixed;
  margin: auto;
  height: 100%;
  z-index: 10000000000 !important;
  -webkit-transform: translate3d(0%, 0, 0);
  -ms-transform: translate3d(0%, 0, 0);
  -o-transform: translate3d(0%, 0, 0);
  transform: translate3d(0%, 0, 0);
}

.modal.right.fade.in .modal-dialog {
  transform: translateX(0%);
}

.modal.right.fade .modal-dialog {
  right: 0px;
  -webkit-transition: opacity 0.3s linear, right 0.3s ease-out;
  -moz-transition: opacity 0.3s linear, right 0.3s ease-out;
  -o-transition: opacity 0.3s linear, right 0.3s ease-out;
  transition: opacity 0.3s linear, right 0.3s ease-out;
}

.modal-content {
  background-color: #2c2c2c !important;
  border-left: 1px solid #28aa4a;
}

.modal-header {
  border-bottom: none !important;
}

.modal-body {
  padding-top: 80px;
}

.modal-body .location {
  font-size: 50px;
  z-index: 0;
  color: #28aa4a;
}

.modal-main-title {
  padding-top: 10px;
  position: relative;
  z-index: 10;
  color: #fff;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 1px;
}

.close {
  background-color: rgba(0, 0, 0, 0);
  font-size: 25px;
  border: none;
  color: #fff !important;
}

.close:focus {
  outline: none !important;
  border: none !important;
  box-shadow: none !important;
}

.modal-body p {
  color: #fff;
  font-size: 16px;
  line-height: 26px;
}

.modal-call {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
}

/* modal end */

/* hero section start */
.hero {
  width: 100%;
  height: auto;
  position: relative;
}

#section_main ~ section {
  margin-top: 100px;
  overflow: hidden;
}

.carousel-item img {
  width: 100%;
  height: 100%;
  filter: brightness(40%);
}

.slide_btn {
  position: absolute;
  z-index: 10 !important;
}

.carousel-control-icon {
  background-color: #fff !important;
  border-radius: 50%;
  color: #333 !important;
  text-align: center;
  width: 50px !important;
  height: 50px !important;
  font-size: 23px;
  line-height: 45px;
}

.carousel-control-icon:hover {
  background-color: #28aa4a !important;
  color: #fff !important;
}

.carousel-indicators {
  position: absolute;
  z-index: 10 !important;
}

.carousel-indicators .active {
  width: 13px !important;
  height: 13px !important;
  border-radius: 50% !important;
  transform: translateY(-2px) !important;
}

.indigator {
  width: 10px !important;
  height: 10px !important;
  border-radius: 50% !important;
}

.carousel-caption {
  transform: translateY(-130px);
}

.carousel-caption h1 {
  font-size: 45px;
  font-weight: bold;
  line-height: 60px;
  text-transform: capitalize;
  margin-bottom: 20px;
  font-family: "Onest", sans-serif;
}

.carousel-caption p {
  font-size: 16px;
  margin-bottom: 40px;
  color: #eeeeee;
  line-height: 28px;
}

.button-div {
  display: grid;
  margin: 10px;
}

.button-div .main_btn_clr {
  max-width: 180px;
  padding: 18px 25px;
  border: none;
  background-color: #28aa4a;
  color: #fff;
  text-decoration: none;
  text-align: center;
  border-radius: 5px;
  font-weight: 500;
  position: relative;
  font-family: "Space Grotesk", sans-serif;
  z-index: 1;
  font-size: 15px;
  transition: all 0.3s linear;
  overflow: hidden !important;
}

.main_btn_clr::after {
  content: "";
  position: absolute;
  right: -100%;
  top: 100%;
  width: 100%;
  height: 100%;
  background-color: #28aa4a;
  border-radius: 5px;
  z-index: -1;
  transition: all 0.3s linear;
}

.main_btn_clr:hover::after {
  right: 0%;
  top: 0%;
  transition: all 0.3s linear;
}

.main_btn_clr::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-color: #28aa4a;
  left: -100%;
  top: -100%;
  border-radius: 5px;
  transition: all 0.3s linear;
}

.main_btn_clr:hover::before {
  left: 0%;
  top: 0%;
  z-index: -1;
  transition: all 0.3s linear;
}

.main_btn_clr:hover {
  color: #fff;
  background-color: transparent;
}

.button-div .main_btn_brd {
  padding: 18px 25px;
  border: none;
  border: 1px solid #fff;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 500;
  position: relative;
  font-family: "Space Grotesk", sans-serif;
  z-index: 1;
  font-size: 15px;
  transition: all 0.3s linear;
  overflow: hidden !important;
}

.main_btn_brd::after {
  content: "";
  position: absolute;
  right: -100%;
  top: 100%;
  width: 100%;
  height: 100%;
  background-color: #28aa4a;
  border-radius: 5px;
  z-index: -1;
  transition: all 0.3s linear;
}

.main_btn_brd:hover::after {
  right: 0%;
  top: 0%;
  transition: all 0.3s linear;
}

.main_btn_brd::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-color: #28aa4a;
  left: -100%;
  top: -100%;
  border-radius: 5px;
  transition: all 0.3s linear;
}

.main_btn_brd:hover::before {
  left: 0%;
  top: 0%;
  z-index: -1;
  transition: all 0.3s linear;
}

.main_btn_brd:hover {
  color: #fff;
  background-color: transparent;
}

/* about section start */
.about_section {
  position: relative;
  width: 100%;
  height: auto;
}

.about_img_part {
  position: relative;
  max-width: 100%;
  padding-right: 15px;
}

.about_img {
  max-width: 100%;
}

.about_txt_part {
  position: relative;
  max-width: 100%;
  padding-left: 15px;
}

.about_txt_part h6 {
  color: #28aa4a;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 20px;
}

.about_txt_part h1 {
  font-size: 40px;
  font-weight: bold;
  color: #2c2c2c;
  line-height: 55px;
  margin-bottom: 20px;
  text-transform: capitalize;
  font-family: "Onest", sans-serif;
}

.about_txt_part p {
  color: #666666;
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 40px;
}

.about_card {
  position: relative;
  cursor: pointer;
  display: inline-flex;
  cursor: pointer;
  margin-bottom: 30px;
}

.about_box {
  width: 45px;
  height: 45px;
  background-color: #e5e5e5;
  border-radius: 5px;
  text-align: center;
  position: absolute;
  font-size: 23px;
  line-height: 45px;
  overflow: hidden;
  z-index: 1;
  transition: all 0.3s linear;
}

.about_card:hover .about_box {
  color: #fff;
}

.about_box::after {
  width: 100%;
  content: "";
  position: absolute;
  background-color: #28aa4a;
  left: -100%;
  top: 100%;
  height: 100%;
  border-radius: 5px;
  z-index: -1;
  transition: all 0.3s linear;
}

.about_card:hover .about_box::after {
  left: 0%;
  top: 0%;
  z-index: -1;
  transition: all 0.3s linear;
}

.about_text {
  position: relative;
  padding-left: 60px;
  margin-top: -3px;
}

.about_text span:first-child {
  font-size: 15px;
  color: #2c2c2c;
  font-weight: 600;
  display: block;
  text-transform: capitalize;
  margin-bottom: 5px;
}

.about_text span:last-child {
  display: block;
  font-size: 15px;
  line-height: initial;
  color: #666666;
}

.about_card:hover .about_text span:first-child {
  color: #28aa4a;
}

/* about section end */

/* values section start */
.card_section {
  width: 100%;
  height: auto;
  position: relative;
  background-color: #f4fbf6;
  padding-top: 100px;
  padding-bottom: 100px;
}

.card_main_haeding {
  position: relative;
  text-align: center;
}

.card_main_haeding h5 {
  color: #28aa4a;
  font-weight: 500;
  font-size: 16px;
  font-family: "Space Grotesk", sans-serif;
}

.card_main_haeding h2 {
  font-size: 40px;
  line-height: 55px;
  padding-bottom: 40px;
  color: #2c2c2c;
  font-weight: bold;
  font-family: "Onest", sans-serif;
}

.card_section a {
  text-decoration: none;
}

.card_main {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  background-color: #ffff;
  padding: 30px;
  border-radius: 5px;
  box-shadow: 0px 8px 18px rgba(44, 52, 128, 0.12);
  overflow: hidden !important;
  transition: all 0.3s linear;
  cursor: pointer;
}

.card_main::before {
  content: "";
  position: absolute;
  background-color: #28aa4a;
  color: #fff;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transform: translateY(-105%);
  z-index: -1;
  transition: all 0.3s linear;
  border-radius: 5px;
}

.card_main:hover:before {
  transform: translateY(0%);
  z-index: -1;
  transition: all 0.3s linear;
}

.card_main:hover {
  color: #fff;
}

.card_main:hover .card_big_heading {
  color: #fff;
}

.card_main:hover .card_small_haeding {
  color: #fff;
}

.card_header {
  width: 78px;
  height: 78px;
  position: relative;
  margin-top: 15px;
  background: #ffff;
  box-shadow: 0px 8px 18px rgba(44, 52, 128, 0.12);
  border-radius: 88px;
  display: inline-block;
}

.card_header::before {
  content: "";
  position: absolute;
  height: 102px;
  width: 102px;
  background: #ffff;
  box-shadow: 0px 8px 18px rgba(44, 52, 128, 0.12);
  border-radius: 88px;
  left: -12px;
  top: -12px;
  z-index: -1;
}

.card_header_main_img {
  height: 50px;
  width: 51px;
  position: absolute;
  left: 14px;
  top: 15px;
}

.Integrity_card {
  background-color: #28aa4a;
}

.Integrity_big_haeding {
  color: #fff !important;
}

.Integrity_small_haeding {
  color: #fff !important;
}

.Integrity_img {
  width: 57px;
  height: 55px;
  position: absolute;
  margin-left: -3px;
  margin-top: -1px;
}

.Commitment_img {
  width: 65px;
  height: 67px;
  margin-left: -5px;
  position: absolute;
}

.clint_img {
  width: 45px;
  height: 45px;
  margin-top: 4px;
  position: absolute;
}

.card_body {
  width: 100%;
  height: auto;
  position: relative;
  margin-top: 30px;
}

.card_big_heading {
  font-size: 20px;
  line-height: 30px;
  color: #2c2c2c;
  font-weight: 650;
  font-family: "Space Grotesk", sans-serif;
}

.card_small_haeding {
  font-size: 15px;
  font-weight: 400;
  line-height: 28px;
  color: #666666;
}
/* values section end */

/* Services section start */

.Services_section {
  width: 100%;
  height: auto;
  position: relative;
  background-color: #f4fbf6;
  padding-top: 100px;
  padding-bottom: 100px;
}

.Services_section a {
  text-decoration: none;
}

.services_card {
  width: 100%;
  height: auto;
  position: relative;
  border-radius: 5px;
  cursor: pointer;
  background-color: #fff;
  transition: all 0.3s linear;
  flex: 1;
}

.services_card:hover {
  transform: translateY(-10px);
  transition: all 0.3s linear;
}

.services_header {
  width: 100%;
  height: 230px;
  position: relative;
}

.services_header_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
}

.services_body {
  width: 100%;
  height: auto;
  position: relative;
  padding: 25px;
  padding-bottom: 40px;
}

.services_body h3 {
  font-size: 20px;
  line-height: 30px;
  color: #2c2c2c;
  font-weight: 650;
  padding-top: 7px;
  font-family: "Space Grotesk", sans-serif;
}

.services_body p {
  font-size: 15px;
  font-weight: 400;
  line-height: 27px;
  color: #666666;
}

.service_btn {
  font-size: 15px;
  font-weight: 500;
  color: #28aa4a;
  transition: all 0.3s linear;
}

.service_btn:hover {
  color: #2c2c2c;
  transition: all 0.3s linear;
}
/* Services section end */

/* footer start */
.footer-section {
  background: #263238 !important;
  padding-top: 50px;
  position: relative;
}

.footer-content {
  position: relative;
  z-index: 2;
}
.footer-pattern img {
  position: absolute;
  top: 0;
  left: 0;
  height: 330px;
  background-size: cover;
  background-position: 100% 100%;
}
.footer-logo {
  margin-bottom: 30px;
}
.footer-logo img {
  max-width: 200px;
}
.footer-text p {
  margin-bottom: 14px;
  font-size: 14px;
  color: #777777;
  line-height: 28px;
}
.footer-social-icon span {
  color: #fff;
  display: block;
  font-size: 20px;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  margin-bottom: 20px;
}
.footer-social-icon a {
  color: #fff;
  font-size: 16px;
  margin-right: 15px;
}
.footer-social-icon i {
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 38px;
  border-radius: 50%;
  padding-right: 5px;
  padding-left: 5px;
  padding-top: 3px;
  padding-bottom: 3px;
}
.facebook-bg {
  background: #3b5998;
}
.twitter-bg {
  background: #55acee;
}
.insta-bg {
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
}
.footer-widget-heading h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 40px;
  position: relative;
}
.footer-widget-heading h3::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -15px;
  height: 2px;
  width: 50px;
  background: #28aa4a;
}
.footer-widget ul li {
  list-style: none;
  font-size: 14px;
  width: 50%;
  margin-bottom: 12px;
  float: left;
}
.footer-widget ul li a:hover {
  color: #28aa4a;
}
.footer-widget ul li a {
  color: #878787;
  text-transform: capitalize;
}

.copyright-area {
  border-top: 1px solid #28aa4a;
  padding-top: 15px;
  margin-top: 0px;
}

.footer_clr {
  color: #28aa4a;
}
.copyright-text p {
  margin: 0;
  font-size: 14px;
  color: #878787;
}
.copyright-text p a {
  color: #28aa4a;
}
.footer-menu li {
  display: inline-block;
  margin-left: 20px;
}
.footer-menu li:hover a {
  color: #28aa4a;
}
.footer-menu li a {
  font-size: 14px;
  color: #878787;
}

/* footer end */

/* inner hero start */
.inner_hero {
  width: 100%;
  height: 450px;
  background-color: #f4fbf6;
  position: relative;
  text-align: center;
  padding-top: 200px;
  overflow: hidden;
}

.inner_hero h1 {
  font-weight: 700;
  font-size: 45px;
  font-family: "Onest", sans-serif;
  position: relative;
  z-index: 10;
}

.breadcrumb {
  font-weight: 500;
  font-size: 15px !important;
  position: relative;
  z-index: 10;
  font-family: "Space Grotesk", sans-serif;
}

.breadcrumb a {
  color: #28aa4a !important;
}

.breadcrumb .active {
  color: #2c2c2c !important;
}

.inner_hero_shape1 {
  position: absolute;
  left: 0%;
  top: 30%;
  z-index: 0;
}

.inner_hero_shape2 {
  position: absolute;
  right: 0%;
  top: 30%;
  z-index: 0;
}
/* inner hero end */

/* inner value section */
.inner_values_section {
  position: relative;
  width: 100%;
  height: auto;
}

.inner_values_section .card_main {
  box-shadow: none !important;
  border: 1px solid #eeeded !important;
}

/* inner value section end */

/* inner service section */

.inner_service_section {
  position: relative;
  width: 100%;
  height: auto;
}

.services_list {
  margin-bottom: 40px;
}

.services_list h3 {
  font-weight: 650;
  color: #2c2c2c;
  margin-bottom: 20px;
  position: relative;
  font-family: "Space Grotesk", sans-serif;
}

.services_list p {
  font-size: 15px;
  color: #666666;
  line-height: 28px !important;
}

.services_list ul {
  list-style: square;
}

.services_list li {
  font-size: 15px;
  color: #2c2c2c;
  line-height: 30px;
}

.inner_service_img {
  max-width: 100%;
  position: relative;
  margin-bottom: 50px;
}

/* inner service section end */

/* inner about section start */
.inner_about_section {
  width: 100%;
  height: auto;
  position: relative;
}

.inner_about_img1 {
  max-width: 100%;
  position: relative;
  z-index: 10;
}

.inner_about_img2 {
  width: 250px;
  height: 250px;
  position: absolute;
  z-index: 10;
  right: 0%;
  bottom: -40%;
  border-left: 10px solid #28aa4a;
  border-top: 10px solid #28aa4a;
}

.inner_about_img_area {
  padding-top: 40px;
}
/* inner about section end */

/* what we do start */
.what_we_do {
  width: 100%;
  height: auto;
  position: relative;
}

.what_we_do h6 {
  color: #28aa4a;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 20px;
}

.what_we_do p {
  color: #666666;
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 40px;
}

.what_we_do h3 {
  font-size: 40px;
  font-weight: bold;
  color: #2c2c2c;
  line-height: 55px;
  margin-bottom: 20px;
  text-transform: capitalize;
  font-family: "Onest", sans-serif;
}

.what_we_do ul {
  list-style: circle;
}

.what_we_do li {
  line-height: 40px;
}

.what_we_do_bg {
  background-color: #f4fbf6;
  padding-top: 100px;
  padding-bottom: 50px;
}

/* what we do end */

/* staffing_section start */
.staffing_section {
  width: 100%;
  position: relative;
  height: auto;
}
.staffing_heading {
  font-size: 40px !important;
  list-style: square !important;
  font-weight: 600;
  font-family: "Onest", sans-serif;
  margin-bottom: 40px !important;
  color: #2c2c2c !important;
  line-height: 55px !important;
}

.p_staffing p {
  color: #666666;
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 40px;
}

.p_staffing li {
  list-style: disc;
  color: #666666;
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 20px;
}

.staffing_section_bg {
  background-color: #f4fbf6;
  padding-top: 100px;
  padding-bottom: 100px;
}

.accordion-body {
  border: none !important;
}

.accordion-item {
  border: none !important;
}

.accordion-header .accordion-button {
  background: #28aa4a !important;
  color: #fff !important;
  font-size: 16px !important;
  font-weight: 500 !important;
}

.accordion-button:focus {
  box-shadow: none !important ;
}

.accordion-button.collapsed {
  font-size: 16px !important;
  font-weight: 500 !important;
  background-color: transparent !important;
  border-bottom: 0.1px solid #cdf4d7 !important;
  color: #28aa4a !important;
}

/* staffing_section end */
