/* Google font */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");

:root {
  --siteFont: "Poppins", sans-serif;
  --primary: #0d4477;
  --color: #404040;
}

body {
  font-family: var(--siteFont);
  color: var(--color);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.3;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
}

p {
  margin: 0;
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

a,
a:hover {
  text-decoration: none;
}

.shadow-none {
  box-shadow: none !important;
}
.btn-primary {
  color: #fff;
  background-color: var(--primary);
  border-color: var(--primary);
  padding: 0.5rem 1.5rem;
  border-radius: 30px;
}
.btn-outline-primary {
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline-primary:hover {
  color: #fff;
  background-color: var(--primary);
}
.btn-secondary {
  color: var(--primary);
  background-color: var(--yellow);
  border-color: var(--yellow);
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  font-weight: 600;
}

.text-primary {
  color: var(--primary) !important;
}
.bg-primary {
  background-color: var(--primary) !important;
}
.sec_title {
  font-size: 16px;
  letter-spacing: 0.32px;
  border-bottom: 1.5px solid #404040;
  padding-bottom: 10px;
  margin-bottom: 30px;
  padding-left: 40px;
  position: relative;
}
.sec_title::before {
  content: url(../images/brc_icon.png);
  display: block;
  width: 30px;
  height: 30px;
  margin-bottom: 10px;
  position: absolute;
  left: 0px;
  top: -2px;
  opacity: 0.5;
}
.fw-semi {
  font-weight: 600;
}

/*<<==============Header=============>>>>*/
.header {
  transition: all ease 0.5s;
}
.header .navbar-light .navbar-toggler {
  box-shadow: none;
  border: 0;
}
.nav-link{
  cursor: pointer;
}

.learn_more_btn a {
  min-width: 145px;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  text-align: center;
  font-family: var(--font-family);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  border-radius: 46.167px;
  background: #0D4477;
  padding: 8px 28px;
}

.btn-anim {
  transition: 01s;
  position: relative;
  overflow: hidden;
}

.btn-anim::before {
  content: "";
  position: absolute;
  top: 0;
  transform: rotate(130deg);
  width: 100%;
  height: 30px;
  background: linear-gradient(120deg,
      transparent,
      rgba(255, 255, 255, 0.349),
      transparent);
}

.btn-anim::before {
  animation: shine 3s ease-in-out infinite;
}

@keyframes shine {
  0% {
    left: -100%;
    transition-property: left;
  }

  65% {
    left: 100%;
    transition-property: left;
  }

  100% {
    left: 100%;
    transition-property: left;
  }
}
/*<<==============Header=============>>>>*/

/*<<==============Banner=============>>>>*/
.banner_left h2 {
  color: var(--primary);
  font-size: 60px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -1.5px;
  margin-bottom: 1.5rem;
}
.banner_left .btn {
  border: 2px solid var(--primary);
  padding: 10px 25px;
  border-radius: 54.603px;
}
.banner_right img {
  border-radius: 15px;
}
/*<<==============Banner=============>>>>*/

/*<<==============overview=============>>>>*/
.overview p {
  font-size: 20px;
  margin: 0px 0 50px 0;
}
.overview_stats {
  text-align: center;
}
.overview_stats h3 {
  color: var(--primary);
  font-size: 40px;
  letter-spacing: 1.2px;
}
.overview .overview_stats p {
  color: #000;
  font-size: 14px;
  font-weight: 400;
  line-height: 126%;
  margin: 0px 0 50px 0;
}
/*<<==============overview=============>>>>*/

/*<<==============project=============>>>>*/
.project p {
  font-size: 20px;
  margin: 0px 0 50px 0;
}
.project .project_card {
  border: 0;
  border-radius: 10px;
  background: #f7f7f7;
}
.project .project_card h3 {
  color: var(--primary);
  font-size: 24px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  min-height: 58px;
}
.project .project_card h3 .project_location {
  color: var(--primary);
  font-size: 16px;
  text-transform: capitalize;
  font-weight: 600;
  margin-top: 5px;
}
.project .project_card p {
  font-size: 14px;
  margin: 0.4rem 0;
}
.project .project_card .card-footer {
  border-radius: 10px;
  background: var(--primary);
  color: #fff;
}
.project .project_card .card-footer h6 {
  text-transform: uppercase;
  font-size: 18px;
  margin: 0;
}
.project .project_card {
  height: 100%;
}
.project .project_card .card-footer h6 small, .project .project_card .card-footer h6 {
  font-size: 12px;
}
/*<<==============project=============>>>>*/

/*<<==============Approach=============>>>>*/
.approach {
  color: #fff;
}
.approach .sec_title {
  border-color: #fff;
}
.approach .sec_title::before {
  filter: grayscale(1) invert(1);
}
.approach_block {
  display: flex;
}
.approach_icon {
  width: 40px;
}
.approach_content {
  width: calc(100% - 40px);
}
.approach_content h6 {
  font-size: 20px;
  letter-spacing: -0.4px;
}
.approach_content p {
  font-size: 14px;
  font-weight: 400;
}
/*<<==============Approach=============>>>>*/

/*<<==============Partner=============>>>>*/
.partner_img {
  display: flex;
  align-items: center;
  justify-content: center;
  /* max-width: 215px; */
  background-color: #f7f7f7;
  padding: 10px;
  border-radius: 5px;
  width: auto;
}
.partner_img img {
  /* height: 80px; */
  max-height: 150px;
  object-fit: contain;
}
.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: var(--primary);
}

/*<<==============Partner=============>>>>*/

/*<<==============Team=============>>>>*/
.owl-carousel.team_slider .owl-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-70%);
  width: calc(100% + 5rem);
  display: flex;
  justify-content: space-between;
  left: -2.5rem;
}
.owl-carousel.team_slider .owl-nav button span {
  font-size: 60px;
  font-weight: 300;
  color: var(--primary) !important;
}
.owl-carousel.team_slider .owl-nav button {
  background-color: transparent !important;
}
.team_block {
  padding-bottom: 1.5rem;
}
.team_block img {
  display: block;
  width: 100%;
  max-width: 200px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.team_block h5 {
  color: #0d4477;
  font-size: 20px;
  line-height: 136.4%;
  margin: 15px 0 3px 0;
  /* margin-bottom: 3px; */
}
.team_block p {
  font-size: 15px !important;
  line-height: 136.4%;
  margin: 0;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
  opacity: 0.8;
}
.team_block a {
  font-size: 16px;
  font-weight: 400;
  color: var(--color);
}

.offcanvas_team_content {
  text-align: center;
}

.offcanvas_team_content img {
  max-width: 150px;
  margin: 10px auto 20px auto;
  display: block;
}

.offcanvas_team_content h5, .offcanvas_team_content p, .offcanvas_team_content a, .offcanvas_team_content button {
  display: none!important;
}
.offcanvas_team_content small {
  display: block!important;
  text-align: start;
  line-height: 1.4;
  font-weight: 400;
  font-size: 16px;
}
/*<<==============Team=============>>>>*/

/*<<==============Contact=============>>>>*/
.contact_card {
  border-radius: 20px;
  background: #f7f7f7;
  border: 0;
}
.contact_card h3 {
  font-size: 38px;
  font-weight: 600;
  line-height: normal;
  color: var(--primary);
  text-align: center;
}
.contact_card p {
  color: #383a3b;
  font-size: 14px;
  font-weight: 400;
  line-height: 136.4%;
  margin: 0;
  margin-bottom: 1.5rem;
  text-align: center;
}
.contact_card .form-label {
  color: #383a3b;
  font-size: 14px;
  text-align: start;
  font-weight: 600;
  line-height: 136.4%;
}
.contact_card .form-control {
  min-height: 42px;
  border-radius: 5px;
  border: 1.5px solid #dcdcdc;
  background: #fff;
}
.contact_card .form-control::placeholder {
  color: #383a3b;
  font-size: 12px;
  line-height: 136.4%;
  opacity: 0.5;
}
.contact_card .btn {
  border-radius: 5px;
}

/*<<==============Contact=============>>>>*/

/*<<==============Footer=============>>>>*/
.footer {
  color: #fff;
}
/*<<==============Footer=============>>>>*/

.approach_icon img {
  width: 30px;
  opacity: 0.8;
}
