@import url("https://fonts.cdnfonts.com/css/museo-sans-rounded");

body {
  height: 1000px;
}
* {
  padding: 0;
  margin: 0;
  font-family: "Museo Sans Rounded", Helvetica;
  box-sizing: border-box;
}
.navigation-container {
  margin-bottom: 30px;
  position: relative;
  min-height: 30px;
  z-index: 100000000;
}
nav {
  display: inline-flex;
  justify-content: space-evenly;
  gap: 10px;
  align-items: center;
  border-bottom: 1px solid rgb(243, 236, 236);
  padding: 5px 10px;
  margin-bottom: 10px;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 2;
  background-color: white;
}

.item-gray-bg{
  position: relative;
  border-radius: 50px;
  box-sizing: border-box;
  height: 40px;
  max-width: fit-content;
  width: 100%;
  cursor: pointer;
  outline: none;
  text-align: center;
  transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms;
  font-size: 16px;
  opacity: 1;
  padding: 10px 10px;
  border: 0px;
  color: rgb(17, 17, 17);
  background-color: rgb(245, 245, 245);
  border: 0px;
}

.logo-section {
  width: 80px;
}
.menu-section {
  width: 30px;
}
.nav-search-container {
  width: 50%;
}

.logo-section img,
.menu-section img {
  width: 100%;
}

.nav-search {
  /* background-image: url(../assets/icons/search.svg); */
  background-repeat: no-repeat;
  padding: 10px;
  background-size: 20px;
  background-position: 5px;
  padding-left: 35px;
  margin-right: 60px;
  border: none;
  outline: none;
  box-shadow: 0px 0px 1px 0px rgba(128, 128, 128, 0.4);
  background-color: #fafafa;
  opacity: 0;
  width: 0;

  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.9s ease-in-out, opacity 0.3s ease-in-out,
    visibility 0.3s ease-in-out;
}

#nav-search.show {
  opacity: 1;
  display: block;
  width: 100%;
  transform: scaleX(1);
}

.nav-search::placeholder {
  font-weight: 300;
  color: grey;
}

.menu-options {
  position: fixed;
  z-index: 1000000;
  right: 10px;
  background-color: white;
  width: 180px;
  padding: 10px 15px;
  border-radius: 7px;
  box-shadow: 0px 0px 5px 0px rgb(128, 128, 128, 0.4);
}

.dashboard-options {
  position: fixed;
  z-index: 1;
  right: 10px;
  top: 100px;
  background-color: white;
  width: 180px;
  padding: 10px 15px;
  border-radius: 7px;
  box-shadow: 0px 0px 5px 0px rgb(128, 128, 128, 0.4);
}


.content {
  /* width: 90%; */
  margin: auto;
  z-index:100000;

}

.content li {
  list-style-type: none;
  margin: 15px 0px;
  user-select: none;
  z-index:100000;
}

.hero-section {
  padding: 10px;
  width: 80%;
  margin: 30px auto;
  height: 510px;
  background-size: 95%;
  background-position: center bottom;
  background-repeat: no-repeat;
}

.heading {
  font-size: 32px;
  font-weight: 600;
}
.heading .anything {
  color: #518cc7;
}

.hero-body {
  margin: 30px 0px;
  color: #767676;
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 35px;
}

.search-section {
  padding: 5px;
  display: flex;
  align-items: center;
  border-radius: 40px;
  position: relative;
  box-shadow: 0px 0px 5px 1px rgb(128, 128, 128, 0.2);
  background-color: #fafafa;
}

.search-input {
  border: none;
  outline: none;
  height: 100%;
  width: 100%;
  padding: 10px;
  border-radius: 20px;
  background-color: #fafafa;

  font-weight: 300;
}
.search-input::placeholder {
  color: rgb(128, 128, 128, 0.4);
}

.search-button {
  position: absolute;
  right: 5px;
  font-size: 16px;

  padding: 10px 20px;
  color: white;
  border: none;
  outline: none;
  border-radius: 20px;
  background-color: #2b1e89;
}

.hidden {
  display: none;
}

footer {
  height: 600px;
}
.bottom-navigation {
  position: fixed;
  z-index: 2;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: white;
}

.bottom-navigation .content {
  width: 96%;
  margin: auto;
  /* background-color:#4629d3; */
  /* background-color:#518cc7; */
  background-color: #fff;
  display: flex;
  align-items: center;
  padding: 5px 10px;
  color: white;
  list-style-type: none;
  justify-content: space-between;
}

.bottom-navigation .content li {
  display: flex;
  flex-direction: column;
  width: 30px;
  border-radius: 100%;
  font-size: 12px;
  align-items: center;
  user-select: none;
  /* color: #4629d3; */
  color: #518cc7;
}
.bottom-navigation .content li i:active {
  /* background-color: #4629d3; */
  background-color: #1a1085;
}
.bottom-navigation .content li i {
  padding: 10px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  /* color: #4629d3; */
  /* color: #518cc7; */

  font-size: 16px;
  color: #518cc7;
}






@media only screen and (min-width: 768px) {
  .mobile-view{
    display: none;
  }
  .menu-section img {
    display: none;
  }


  .logo-section {
    width: 10%;
  }

  .nav-search-container {
    width: 50%;
  }

  .hero-section {
    display: none;
  }

  .desktop-nav-links {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 30%;
    list-style-type: none;
    gap: 20px;
    font-size: 14px;
  }
  .desktop-nav-links li {
    cursor: pointer;
    transition: all 0.3s linear;
    &:hover {
      color: #518cc7;
    }
  }

  .bottom-navigation {
    display: none;
  }
}
