@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap");
body, html {
  font-family: "Open Sans", sans-serif;
}

/* The sticky class is added to the navbar with JS when it reaches its scroll position */
.sticky {
  position: fixed;
  top: 0;
  width: 100%;
}
.sticky + .content {
  padding-top: 60px;
}

.btn {
  background: var(--bs-white);
  border: 1px solid var(--bs-light-border-subtle);
  color: var(--bs-black);
  font-family: Roboto, sans-serif;
  text-transform: uppercase;
  font-size: 14px;
}

.btn-primary {
  background-color: #0b612d;
  border-color: #0b612d;
  color: var(--bs-white);
}

.navbar {
  background-color: #0b612d;
  z-index: 2;
}
.navbar a {
  font-family: Roboto, sans-serif;
  color: white;
}
.navbar .navbar-nav .navbar-brand {
  display: flex;
  align-items: center;
  font-weight: 700;
}
.navbar .navbar-nav .nav-link {
  color: white;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  margin-right: 0.5rem;
}
.navbar .navbar-nav .nav-link .active {
  color: white !important;
}

.hero-section {
  border-bottom: 4px solid #0b612d;
}

.about-section {
  background-color: var(--bs-light);
  border-bottom: 1px solid var(--bs-light-border-subtle);
}
.about-section .nav {
  align-items: flex-start;
}
.about-section .nav .nav-link {
  width: 100%;
  text-transform: uppercase;
  font-size: 14px;
  color: var(--bs-black);
  border: 1px solid transparent;
  text-align: start;
}
.about-section .nav .nav-link.active {
  background-color: white;
  border-color: var(--bs-light-border-subtle);
}

.posts-section .col-4 {
  border-left: 1px solid var(--bs-light-border-subtle);
}

.partners-section .owl-carousel .owl-item {
  margin-bottom: 1rem;
}
.partners-section .owl-carousel .owl-item img {
  height: 100px;
  width: 100px;
  object-fit: contain;
}

footer {
  background-color: #2f2f2f;
  color: white;
}
footer a {
  color: white;
}
footer h5 {
  text-transform: capitalize;
}
footer .hstack {
  text-transform: capitalize;
}

@media only screen and (max-width: 600px) {
  .navbar-brand img {
    height: 64px;
    width: 200px;
  }

  .about-section .nav {
    align-items: center;
    justify-content: center;
  }
  .about-section .nav .nav-link {
    width: auto;
  }

  .posts-section .object-fit-cover {
    width: 100%;
    height: 200px;
  }

  .partners-section .owl-carousel .owl-item img {
    height: 200px;
    width: 100%;
  }
}

/*# sourceMappingURL=style.css.map */
