.mainNav {
  width: 100%;
  background-color: var(--navGrey);
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 100;
  position: sticky;
  top: 0;
  left: 0;
}
.mainNavLogoContainer {
  height: 100%;
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 5vw;
}
.MainNavLogo {
  height: 50px;
}
.mainNavLinksContainer {
  height: 100%;
  width: fit-content;
  margin-right: 5vw;
}
.mainNavLinks {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  height: 100%;
  gap: 50px;
  font-size: 17px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}
.mainNavLinks a {
  color: black;
  text-decoration: none;
  transition: color 0.6s;
}
.mainNavLinks a:hover {
  color: var(--mainGreenDarker);
  cursor: pointer;
}
.fa-bars {
  font-size: 35px;
  position: fixed;
  top: 10px;
  left: 10px;
  display: none;
  z-index: 101;
}
@media only screen and (max-width: 1300px) {

  .container, body{
    overflow-x: hidden !important;
  }

  .MainNavLogo {
  width: 20vh;
    height: auto;
  }
  .mainNavLinks {
    margin-left: 10px;
    margin-right: 0;
    gap: 30px;
  }
}
@media only screen and (max-width: 1090px) {

  .MainNavLogo {
    width: 20vw;
    height: auto;
  }
  .mainNavLinks {
    margin-left: 10px;
    margin-right: 0;
    gap: 15px;
    font-size: 0.9em;
  }
  .mainNavLogoContainer {
    margin-left: 3vw;
  }
}
@media only screen and (max-width: 850px) {
  .mainNavLogoContainer a{
    display: flex !important;
    align-items: center;
    justify-content: center !important;
  }
  .fa-bars {
    display: block;
  }
  .MainNavLogo {
    width: 70%;
  }
  .mainNav {
    height: 100vh;
    width: 50%;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    position: fixed;
    transition: translateY, 0.3s;
    transform: translateX(-100%);
    margin: 0;
    padding: 0;
  }

  .mainNavLogoContainer {
    padding: 0;
    margin: 0;
  }
  .mainNavLinksContainer ul {
    display: flex;
    flex-direction: column;
    height: fit-content;
  }
  .hero {
    flex-direction: column;
    margin: 0;
    padding: 0;
    position: relative;
    top: -80px;
  }
  .fa-bars:hover {
    cursor: pointer;
  }
  .menuIconContainer {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .mainNav.active {
    transform: translateX(0%);
  }
}
@media only screen and (max-width: 690px) {
  .mainNav {
    width: 100%;
  }
}
@media only screen and (max-width: 250px) {
  .mainNav {
    transform: translateY(-120%);
  }
}
