img {
  width: 100%;
  display: inline-table;
}

.bg-primary,
.btn-primary {
  background-color: #3ebb26 !important;
}

.btn {
  background-color: transparent;
  font-family: "Outfit", Sans-serif;
  font-size: 22px;
  font-weight: 800;
  fill: #fff;
  color: #fff;
  background-image: linear-gradient(120deg, #36b71d 0%, #47c32e 100%);
  border-radius: 15px;
  padding: 8px 20px;
  border-color: #36b71d;
}

.bg-primary-light {
  background-color: #4ad92312 !important;
}

.text-primary {
  color: #3ebb26 !important;
}

.container {
  display: flex;
  flex-direction: row;
  height: 100vh;
}

.navigation-sidebar {
  width: 20%;
  background-color: #f8f9fa;
  padding: 20px;
  border-right: 1px solid #dee2e6;
  position: fixed;
  height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
  top: 0;
  left: 0;
  z-index: 1000;
}

.main-content {
  position: fixed;
  width: 60%;
  left: 0;
  padding: 20px;
  display: block;
  margin-left: 20%;
  margin-right: 20%;
  background-color: #ffffff;
  overflow-y: auto;
  overflow-x: hidden;
  height: 100vh;
}

.sidebar {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  overflow-y: auto;
  /* Enable vertical scrolling */
  overflow-x: hidden;
  /* Disable horizontal scrolling */
  z-index: 1000;
  /* Ensure it stays on top of other content */
  width: 20%;
  background-color: #f8f9fa;
  padding: 20px;
  border-left: 1px solid #dee2e6;
}

@media (max-width: 768px) {

  .navigation-sidebar,
  .sidebar {
    display: none;
  }

  .main-content {
    width: 100%;
    margin-left: 0%;
    margin-right: 0%;
  }

}

.navigation-sidebar ul li {
  list-style: none;
  padding: 10px;
  margin: 5px 0;
  background-color: #4ad92312;
  border-radius: 5px;
  transition: background-color 0.3s;
  cursor: pointer;
}

.navigation-sidebar ul li:hover {
  background-color: #ced4da;
  /* Change color on hover */
}

.navigation-sidebar ul li a {
  text-decoration: none;
  color: #000;
  /* Change link color */
  font-weight: 600;
}

.navigation-sidebar ul li a:hover {
  color: #007bff;
  /* Change link color on hover */
}

.navigation-sidebar h2 {
  margin-bottom: 20px;
}

.sidebar ul li {
  list-style: none;
  padding: 10px;
  margin: 5px 0;
  background-color: #4ad92312;
  border-radius: 5px;
  transition: background-color 0.3s;
  cursor: pointer;
}

.sidebar ul li:hover {
  background-color: #ced4da;
  /* Change color on hover */
}

.sidebar ul li a {
  text-decoration: none;
  color: #000;
  /* Change link color */
  font-weight: 600;
}

.sidebar ul li a:hover {
  color: #007bff;
  /* Change link color on hover */
}

.about-item {
  margin-bottom: 20px;
  background-color: #2dd9231c;
  border-radius: 12px;
  border-style: solid;
  border-width: 0 0 3px;
  border-color: #36b71d;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.08);
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
  padding: 15px 25px;
}

.custom-border-bottom {
  border-style: solid;
  border-width: 0 0 3px;
  border-color: #36b71d;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.08);
}

.para-text {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4em;
  color: #00022b;
}

.heading-secondary {
  font-size: 18px;
  font-weight: 600;
  color: #36b71d;
}