* {
  font-family: "Inter", sans-serif;
  transition: all ease-in-out 0.2s;
  padding: 0;
  margin: 0;
  /* color: #272727; */
}


h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Outfit", sans-serif;
  font-weight: bold;
}

:root {
  --gray: #677289;
  --primary: #177d3f;
  --dark-green: #0c5f34;
  --secondary: #202b51;
  --dark-black: #191f29;
  --black: #0e0a0a;
  --white: #ffffff;
  --bg-gray: #f3f4f6;
}

.text-primary {
  color: var(--primary) !important;
}

a {
  text-decoration: none;
}

p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6em;
  color: #74787c;
}

a:active,
a:focus {
  outline: 0;
  color: var(--primary);
}

body {
  font-size: 15px;
  line-height: 1.5;
  color: var(--dark-black);
}

/* .switch_btn .btn {
  background: transparent;
  border: 1px solid var(--primary);
  border-radius: 0;
  color: var(--primary);
  font-size: 14px;
}

.switch_btn .btn-theme:hover {
  border-color: var(--primary) !important;
} */

.navbar.opaque {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 18;
  animation: slide-down 0.7s;
  transition: all ease-in-out 0.3s;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, .1);
  z-index: 999;
}

.navbar-brand img {
  max-width: 250px;
}

/*---/common Nav css---*/
.navbar {
  background: var(--white);
  padding: 0.25rem 0;
}

.navbar-light .navbar-nav .nav-link:hover {
  color: var(--primary);
}

.navbar-expand-lg .navbar-nav .nav-link {
  color: var(--dark-black);
  padding-right: 1rem;
  padding-left: 1rem;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
}

.navbar-expand-lg .navbar-nav .active .nav-link {
  color: var(--primary);
}

.slide {
  position: relative;
}

.home-slider {
  position: relative;
}

/* .home-slider .slide:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  background-image: linear-gradient(52deg, var(--dark-black) 23%, #00000024 100%);
} */

.img-caption {
  position: absolute;
  width: 100%;
  left: 0;
  z-index: 20;
  top: 50%;
  transform: translateY(-50%);

  & h1 {
    color: var(--white);
    font-size: 50px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 600;
  }

  & p {
    color: var(--white);
    max-width: 750px;
    font-size: 1.125rem;
  }
}

.line-heading {
  position: relative;
  padding-bottom: 16px;
  text-transform: uppercase
}

/* .line-heading:before {
  position: absolute;
  width: 60px;
  height: 6px;
  content: " ";
  bottom: 0;
  background-color: var(--primary)
} */


/*---/common Nav css---*/


.about {

  p {
    font-size: 0.875rem;
  }

  .abt-content {
    max-width: 550px;
    width: 100%;
    padding-left: 20px;
  }

  img {
    border-radius: 4rem 0 4rem 0;
    width: 100%;
  }

  h2 {
    font-size: 36px;
    line-height: 1.2;
    font-weight: 600;
  }

  ul {
    .number {
      background-color: #f3f3f3;
      height: 40px;
      width: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      font-weight: 700;
      border-radius: 50%;
      margin-top: 5px;
      color: var(--primary);
    }

    li {
      display: grid;
      grid-template-columns: 40px 1fr;
      grid-gap: 15px;
      font-size: 16px;
      font-weight: 500;
    }
  }

}

.counter-section {
  background: url('../images/banner.png');
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  z-index: 10;
  padding: 120px 0;
}

.counter-item {
  position: relative;
  z-index: 10;
  display: grid;
  align-items: center;
  grid-template-columns: 92px 1fr;
  grid-gap: 20px;

  .icon {
    max-width: 92px;
    width: 100%;
    height: 92px;
    position: relative;
    z-index: 10;

    .icon-inner {
      background: rgba(216, 231, 253, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.15);
      backdrop-filter: blur(12.5px);
      height: 85px;
      width: 85px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-left: auto;
      border-radius: 10px;
    }

    .shape {
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.2);
      backdrop-filter: blur(8px);
      border-radius: 10px;
      width: 85px;
      height: 85px;
      position: absolute;
      bottom: 0;
      left: 0;
      z-index: -1;
    }
  }

  .counter-content {
    .title {
      color: var(--white);
      margin-bottom: 0;
      line-height: 1;
      font-size: 19px;

      .odometer-auto-theme {
        font-family: inherit;
        line-height: 1;
      }
    }

    p {
      color: var(--white);
      margin-bottom: 0;
      line-height: 1;
      font-size: 18px;
      font-weight: 500;
      text-transform: uppercase;
      margin-top: 10px;
    }
  }
}



.cta-wrap-3 {
  background-color: var(--dark-green);
  border-radius: 15px;
  padding: 70px 80px;
  position: relative;
  z-index: 10;
  overflow: hidden;
}

.cta-wrap-3 .cta-mask-img {
  mask-repeat: no-repeat;
  height: 100%;
  width: 650px;
  position: absolute;
  top: 0;
  right: -5px;
  z-index: 1;
}

.cta-wrap-3 .title {
  color: var(--white);
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 10px;
  position: relative;
  z-index: 10;
}

.cta-wrap-3 p {
  color: #C8C9CB;
  margin-bottom: 0;
  position: relative;
  z-index: 10;
}


.testi-area {
  background: url(../images/testi-bg.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 100px 0 80px;
}

.testimonials.owl-carousel .owl-stage {
  display: flex;
}

.testimonials.owl-carousel .owl-stage-outer {
  padding: 40px 0;
}

.testi-area h2 {
  margin-bottom: 20px;
}

.testi-item-2 {
  background-color: var(--white);
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  border: 1px solid #E6E6E6;
  box-shadow: 0px 14px 68px #E8E8E8;
  border-radius: 15px;
  padding: 40px;
}

.testi-item-2 .testi-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #eaeaea;
  flex-wrap: wrap;
  row-gap: 15px;
}

.testi-item-2 .testi-top .testi-author {
  display: grid;
  align-items: center;
  grid-template-columns: 60px 1fr;
  grid-gap: 15px;
  width: 72%;
}

.testi-item-2 .testi-top .testi-author .name {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 0;
}

.testi-item-2 .testi-top .testi-author .name span {
  display: block;
  font-size: 14px;
  color: #74787c;
  font-weight: 400;
  margin-top: 5px;
}

.testi-item-2 .testi-top .review {
  padding-left: 0;
}

.testi-item-2 .testi-top .review li {
  display: inline-flex;
  color: #FFB930;
}

.testi-item-2 p {
  font-weight: 500;
  margin-bottom: 0;
  font-size: 14px;
}


.sponsor div {
  display: flex;
}

.client-logo {
  h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 50px;
    text-transform: uppercase;
  }

  .container {
    max-width: 1240px;
  }

  img {
    max-width: 200px;
  }
}

.btn-theme {
  background-color: var(--primary);
  color: var(--white);
  border-radius: 7px;
  padding: 15px 20px;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.3s ease-in;
  line-height: 1;
  font-weight: 600;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
  box-shadow: none !important;


  &::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.2);
    -webkit-transform-origin: right center;
    -moz-transform-origin: right center;
    -ms-transform-origin: right center;
    transform-origin: right center;
    -webkit-transform: scale(0, 1);
    -moz-transform: scale(0, 1);
    -ms-transform: scale(0, 1);
    -o-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    -moz-transition: -moz-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    -ms-transition: -ms-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    -o-transition: -o-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
  }
}


.btn-theme:hover {
  color: var(--white);

  &:before {
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -ms-transform-origin: left center;
    transform-origin: left center;
    -webkit-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}

.bg-gray {
  background: var(--bg-gray);
}

.about h2,
.head1 {
  color: var(--dark-black);
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1.15em;
}

.dropcv {


  & h2 {
    color: var(--dark-black);
    font-size: 2.25rem;
    font-weight: 600;
  }

  & h6 {
    color: var(--dark-black);
    font-size: 1.125rem;
  }

  & .btn-theme {
    background: var(--white);
    color: var(--dark-black);
    margin-top: 20px;
  }

  & .btn-theme:hover {
    color: var(--primary);
    background: var(--white);
    border-color: var(--primary);
  }
}



.map {
  border-radius: 20px;
  overflow: hidden;
  line-height: 1;
}

.m-details {
  padding: 40px 60px 40px 40px;
  height: 100%;
  background: var(--bg-gray);
  border-radius: 20px;
}



.program-benefits {
  display: grid;
  margin-top: 30px;

  .p-wrap:last-child {
    border-bottom: none;
    padding: 0;
    margin: 0;
  }

  .p-wrap {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-bottom: 25px;
    margin-bottom: 25px;
    border-bottom: 1px solid #ababab;



    .p-img {
      min-width: 50px;
      height: 50px;
      border-radius: 5px;
      background-color: var(--white);
      justify-content: center;
      display: flex;
      align-items: center;
    }

    i {
      font-size: 16px;
      color: var(--primary);
    }

    h4 {
      color: var(--dark-black);
      margin-bottom: 5px;
      font-size: 1.25rem;
      font-weight: 600;
    }

    p {
      font-size: 0.875rem;
      line-height: 1.4;
      margin-bottom: 0;
    }
  }
}


.content-tab .nav-tabs {
  border: none;
  column-gap: 35px;
  flex-wrap: wrap;
  row-gap: 15px
}

.content-tab .nav-tabs .nav-link {
  background-color: var(--bg-gray);
  color: var(--dark-black);
  border-radius: 5px;
  border: none;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 30px
}

.content-tab .nav-tabs .nav-link.active {
  background-color: var(--dark-green);
  color: var(--white)
}

.content-tab .tab-info {
  margin-top: 30px;
  color: #74787c;
}



.who-wrap {
  padding: 80px 40px 100px 40px;
  background: url(../images/who-we-are.jpg) center center;
  background-size: cover;
  text-align: center;
  border-radius: 30px;
  position: relative;
  z-index: 1;
  overflow: hidden;

  h2 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 50px;
  }

  p {
    font-size: 1.25rem;
    color: var(--white);
    line-height: 1.8;
  }

  .shape {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
  }

}



/* .icon-list li {
  display: flex;
  gap: 20px;
}

.icon-list li span {
  color: var(--primary);
  font-size: 18px;

} */

.inner-banner {
  padding: 7.5em 0;
  background: url(../images/inner-banner.jpg) no-repeat;
  background-size: cover;
  position: relative;
  background-position: center;


  & h2 {
    font-size: 2.25rem;
    font-weight: 700;
  }
}

.job-banner {
  background: url(../images/inner-banner.jpg) no-repeat;
  background-size: cover;
  padding: 5em 0;
  background-position: center;
}

.job-banner .box {
  border-radius: 0;
}

.box {
  background: #fff;
  padding: 15px;
  overflow: hidden;
  text-align: left;
}

/*-----------searchbar------------*/

.searchBar input#s_form {
  background: var(--primary);
  border: 1px solid var(--primary);
  color: #fff;
}

.searchBar input#s_form:hover {
  background: var(--primary);
  color: #fff;
  border: 1px solid var(--primary);
}

.searchBar label {
  display: none !important;
  color: #000;
}

.searchBar .txtBx {
  width: 100%;
  padding: 15px !important;
  border: 0;
  border-radius: 0px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  background: #ededed;
  width: 100%;
  display: block;
  height: auto;
}

input {
  line-height: normal !important;
}

.searchBar .blueBtn {
  margin-top: 0px !important;
  width: 100% !important;
  padding: 13px 1em !important;
  border-radius: 0px !important;
  color: #000;
  border: 0;
  height: auto;
  text-transform: uppercase;
}

.col {
  width: 32% !important;
  margin: 0 1% 0 1.5% !important;
}

.c2 {
  width: 32% !important;
  margin-left: 1% !important;
}

.c3 {
  width: 10% !important;
  margin-left: 1% !important;
}

.c4 {
  width: 16% !important;
  margin-left: 1% !important;
}

/*----------- /searchbar------------*/



.footer {
  background: var(--black);
  padding: 15px 0px;

  & p {
    margin-bottom: 0;
    font-size: 14px;
    line-height: 1.25rem;
    color: var(--white);
  }

  & a {
    color: var(--white);
  }
}

.scrolled {
  width: 100%;
  float: left;
  position: fixed;
  z-index: 30;
  top: 0;
}

.social li {
  margin-right: 15px;
  display: inline;
}

.social li a {
  font-size: 1rem;
  color: var(--white);
}

.social li a:hover {
  color: var(--primary);
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: var(--primary);
  /* background: linear-gradient(
    90deg,
    rgba(42, 106, 241, 1) 0%,
    rgba(0, 40, 90, 1) 70%
  ); */
  width: 20px;
}

.owl-theme .owl-dots .owl-dot span {
  transition: all 500ms ease;
  width: 8px;
  height: 8px;
  margin: 5px;
}


/*-- Current Opening section css start ---*/
.job_section_2 {
  padding: 3em 0;
  background-color: #f7f7f7;
  /* background: url("../images/bg.jpg"); */
  background-size: cover;
}

.job_section_2 .heading {
  color: #001f60;
  font-weight: bold;
}

.job_section_2 .job_blocks {
  display: inline-block;
  width: 100%;
  margin: 3em 0;
}

.job_blocks .box_wrapper {
  padding: 20px 28px;
  background: #fff;
  border: 1px solid #ccc;
  box-shadow: 4px 4px 14px 0px rgba(0, 0, 0, 0.1);
  line-height: 25px;
  width: 90%;
  margin: auto;
}

.job_blocks .box_wrapper .top_head {
  padding-bottom: 20px;
  border-bottom: 1px solid #ccc;
}

.job_blocks .box_wrapper .top_head .title {
  font-size: 16px;
  font-weight: 600;
  color: #041b30;
  height: 50px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.job_blocks .box_wrapper .top_head .exp {
  font-size: 13px;
  color: var(--dark-black);
}

.job_blocks .box_wrapper .top_head .location {
  font-size: 13px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--dark-black);
}

.job_blocks .box_wrapper .desc {
  padding: 20px 0;
  font-size: 15px;
}

.job_blocks .box_wrapper .desc span {
  color: #9c9c9c;
}

.job_blocks .box_wrapper .desc .keyword {
  overflow: hidden;
  height: 75px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  color: var(--dark-black);
}

.job_blocks .box_wrapper .desc .role {
  margin-top: 20px;
  overflow: hidden;
  height: 72px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  color: var(--dark-black);
}

.job_blocks .box_wrapper .btn_area {}

.job_blocks .box_wrapper .btn_area .btn {
  font-size: 13px;
  background: var(--primary) !important;
  color: #fff !important;
  border: 1px solid var(--primary);
  padding: 8px 26px;
  border-radius: 4px !important;
  text-transform: uppercase;
}

.job_blocks .box_wrapper .btn_area .btn:hover {
  background: var(--primary) !important;
  color: #ffffff !important;
  border: 1px solid var(--primary);
}

.job_blocks .box_wrapper_footer {
  background: #e8e8e8;
  font-size: 13px;
  text-align: right;
  padding: 14px 25px;
  border-bottom: 4px solid var(--primary);
  width: 90%;
  margin: auto;
  margin-bottom: 20px;
}

.job_section .view_all {
  text-align: center;
}

.job_section .view_all .btn-default {
  color: #000000;
  background-color: #ffffff;
  padding: 10px 40px;
  text-align: center;
  font-size: 20px;
  margin-bottom: 0;
  border: 1px solid #c3c1c1;
  border-radius: 0px;
}

.job_section .view_all .btn-default:hover {
  background: #000000;
  border: 1px solid #c3c1c1;
  color: #ffffff !important;
}

.job_section_2 .view_all {
  text-align: center;
}

.job_section_2 .view_all .btn-default {
  color: #fff;
  background-color: var(--primary);
  padding: 8px 37px;
  text-align: center;
  font-size: 20px;
  margin-bottom: 30px;
  border: 0px solid #c3c1c1;
  border-radius: 5px;
}

.job_section_2 .view_all .btn-default:hover {
  background: var(--primary);
  color: #fff !important;
}

/*-- Current Opening section css ends ---*/


/*--- Job description page CSS ---*/

.job-banner .box {
  border-radius: 0;
}

.box {
  background: #fff;
  padding: 15px;
  overflow: hidden;
  text-align: left;
}

.job_blocks hr {
  display: none;
}

.box hr {
  border: 0;
  border-top: 1px solid #eee;
  display: block;
  height: 1px;
  margin: 0.3em 0;
  padding: 0;
  opacity: 1;
}

.tupl {
  color: #545454;
  overflow: hidden;
  padding-bottom: 6px;
  padding-top: 8px;
}

.nobdr {
  border: 0 !important;
}

.ovh,
.oh {
  overflow: hidden;
}

.hding3 {
  color: var(--dark-black) !important;
  font-size: 1.167em !important;
  margin: 0;
}

.prt1 {
  width: 70%;
}

.fL,
.fl {
  float: left;
}

.share {
  float: right;
  margin: 0 0 0 2%;
}

.pb20 {
  padding-bottom: 20px;
}

.sgTxt {
  color: #929292;
  font-size: 0.917em;
  font-style: normal;
  padding-right: 5px !important;
}

.blueBtn,
.gryBtn {
  background: var(--primary);
  font-size: 1em;
  padding: 0.73em 1em;
  text-align: center;
  display: block;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  color: #fff;
  border: 0;
  margin-top: 10px;
}

.cl {
  clear: both;
  overflow: hidden;
}

.listing {
  line-height: 21px;
}

.mt5 {
  margin-top: 5px;
}

.pb0 {
  padding-bottom: 0 !important;
}

.mtb20 {
  margin: 15px 0;
}

.dispN {
  display: none;
}

.lightbox {
  display: none;
  background: #fff;
}

.slider.owl-theme .owl-nav [class*="owl-"] {
  position: absolute;
  font-size: 80px;
  margin: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  background: rgba(0, 0, 0, 0.1);
  height: 100%;
  padding: 0 20px !important;
  display: block;

  &:hover {
    background: rgba(0, 0, 0, 0.3);
  }

  & span {
    color: var(--white);
  }
}

.owl-theme .owl-nav [class*="owl-"]:hover {
  background: transparent;
}

.slider.owl-theme .owl-nav {
  margin: 0;
}

.slider .owl-nav .owl-prev {
  left: 0px;
}

.slider .owl-nav .owl-next {
  right: 0px;
}

/*--- Job description page CSS ---*/


/*-- media querry ---*/

@media (min-width: 1400px) {}

@media (max-width: 991px) {
  .cta-wrap-3 .cta-mask-img {
    display: none;
  }
}

@media (max-width: 767px) {

  .who-wrap {
    60px 30px 40px 30px
  }

  .who-wrap h2 {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .who-wrap p {
    font-size: 1rem;
    line-height: 1.4;
  }

  .content-tab .nav-tabs {
    column-gap: 20px;
  }

  .content-tab .nav-tabs .nav-link {
    padding: 10px 15px;
  }

  .about .abt-content {
    padding-left: 0;
  }



  .testi-area {
    padding: 50px 0 20px;
  }

  .cta-wrap-3 {
    padding: 50px 20px;
  }

  .counter-section {
    padding: 50px 0;
  }

  .slider.owl-theme .owl-nav [class*="owl-"] {
    font-size: 36px;
    padding: 0 10px !important;
  }

  .img-caption h1 {
    font-size: calc(1.375rem + 1.5vw);
  }

  .navbar-brand img {
    max-width: 150px;
  }

  .img-caption p {
    line-height: 1.2;
  }

  .slide img {
    min-height: 400px;
    object-fit: cover;
  }

  .home-banner {
    padding: 4em 0;
  }

  .about h2,
  .head1,
  .dropcv h2 {
    font-size: 1.5rem;
  }

  p {
    font-size: 0.85rem;
  }

  .inner-banner h2 {
    font-size: 2rem;
  }

  .inner-banner {
    padding: 5em 0;
  }

}