.HomeComponents {
  display: flex;
  flex-direction: column;
  background-color: #00a5a2;
  width: 100%;
  text-align: left;
  color: white;
  align-items: flex-start;
}

.homepage {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 77vh;
}

.Homesection {
  background-color: #fff;
  width: 80%;
  border-top-left-radius: 30px;
  height: auto;
  border-top: 20px;
}

.homepage h3 {
  color: #fff;
  text-decoration: none;
  margin-bottom: 20px;
  margin: 0;
  font-size: 1em;
}

.dashboard {
  display: flex;
  align-items: center;
  margin-right: 20px;
  cursor: pointer;
  border-radius: 30px;
  margin: 10px;
  padding: 5px;
  padding-left: 30px;
  text-decoration: none;

}

.dashboard .nameys {
  color: #fff;
  text-decoration: none;
}

.dashboard img {
  margin-right: 20px;
  width: 20px;
  height: 30px;
  color: #fff;
  size: 10px;
  object-fit: contain;
}


.dashboard:hover {
  background-color: #008b83;
}

hr {
  border: none;
}



/* Active link styles */
.dashboard.active {
  background-color: #eaac10;
}



.dashboard.active .nameys {
  color: darkcyan;
}

.footer {
  background-color: #101820;
  color: #fff;
  padding-top: 40px;
  padding-bottom: 4px;
}

.container {
  max-width: 2000px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 20px;
}

.footer-logo img {
  height: 80px;
  margin: 20px;
}

.footer-nav {
  display: flex;
  flex-direction: row;
  flex: 1;
  justify-content: space-between;
}

.footer-column {
  margin: 0 10px;
}

.footer-column h4 {
  font-size: 14px;
  margin-bottom: 20px;
  color: white;
  text-transform: uppercase;
  font-weight: bold;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 13px;
  transition: all.35s;
}

.footer-column ul li a:hover {
  font-size: 13px;
  color: rgb(230, 154, 14);
}

.footer-bottom {
  max-width: 1500px;
  margin: 0 auto;
  text-align: center;
  padding: 10px 20px;
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
}

.footer-bottom p {
  margin: 0;
  padding: 0;
}

.footer-links {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.footer-links li {
  margin: 0 10px;
}

.footer-links li a {
  text-decoration: none;
  color: #fff;
}

.footer-links li a:hover {
  text-decoration: underline;
}

.menu-icon {
  display: none;
  cursor: pointer;
  padding: 10px;
}


.Nav_sidebar {
  display: block;
  transition: transform 0.3s ease-in-out;
}

.Nav_sidebar.hidden {
  transform: translateX(-100%);
}

.Nav_sidebar.show {
  transform: translateX(0);
}

/* Menu Icon */
.menu-icon {
  display: none;
  cursor: pointer;
  padding: 10px;
}

.menu-icon i {
  font-size: 1.5em;
  color: #ffffff;
}

/* .menu-icon i.fa-close {
  color: #ffffff;
} */


/*======== Mobile Styles ======= */

.close-button {
  display: none;
}

.close-button i {
  font-size: 1.5em;
  color: #fff;
}

.scroll-lock {
  overflow: hidden;
}

@media (max-width: 992px) {
  .menu-icon {
    display: block;
  }

  /* .Nav_sidebar {
    display: none;
  } */

  sidebar {
    display: none;
    width: 0;
  }

  sidebar.show {
    display: block;
    /* max-height: 90vh; */
  }

  .homepage {
    position: relative;
  }

  .Nav_sidebar {
    position: absolute;
    background-color: #00a5a2;
    height: 100vh;
    padding-top: 50px;
    top: -40px;
  }

  .footer-nav {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (min-width: 601px) and (max-width: 1024px) {
  .footer-nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-column {
    width: 100%;
    margin-bottom: 20px;
  }

  .footer-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .footer-column {
    width: auto;
    margin-bottom: 20px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
  }

  .footer-links {
    flex-direction: column;
    margin-top: 20px;
  }
}