@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Varela+Round&display=swap");
/**Color**/
.stopscroll {
  overflow: hidden !important;
}

nav {
  width: 100%;
  background-color: #fafbff;
  -webkit-box-shadow: 0 3px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 3px 30px rgba(0, 0, 0, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  z-index: 10;
  top: 0px;
}

nav.disabled-white {
  background: transparent;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  -webkit-box-shadow: none;
          box-shadow: none;
}

nav.disabled-white .nav-links li a {
  color: #fff;
}

.disabled-white .hamburger div {
  background: #fff;
}

.disabled-white .hamburger.toggle div {
  background: #101a29;
}

.disabled-white .nav-links.open li a {
  color: #101a29;
}

/*Styling logo*/
.logo {
  text-align: center;
}

.logo img {
  height: 5rem;
  width: 5rem;
  margin: 15px 0px;
}

/*Styling Links*/
.nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: -15px;
  margin-top: 0px;
  margin-bottom: 0px;
}

.nav-links li a {
  text-decoration: none;
  margin: 0px 20px;
  color: #101a29;
  font-size: 18px;
}

.nav-links li a:hover {
  color: #101a29;
}

.nav-links li {
  position: relative;
}

.nav-links li.active a::before {
  content: "";
  display: block;
  height: 2px;
  width: 30%;
  background-color: #f8403e;
  position: absolute;
  -webkit-transition: all ease-in-out 250ms;
  transition: all ease-in-out 250ms;
  bottom: -6px;
  left: 0px;
  right: 0px;
  margin: auto;
}

.nav-links li a::before {
  content: "";
  display: block;
  height: 2px;
  width: 0%;
  background-color: #f8403e;
  position: absolute;
  -webkit-transition: all ease-in-out 150ms;
  transition: all ease-in-out 150ms;
  bottom: -6px;
  left: 0px;
  right: 0px;
  margin: auto;
}

.nav-links li a:hover::before {
  width: 30%;
}

/*Styling Buttons*/
.login-button {
  background-color: transparent;
  border: 1.5px solid #f2f5f7;
  border-radius: 2em;
  padding: 0.6rem 0.8rem;
  margin-left: 2vw;
  font-size: 1rem;
  cursor: pointer;
}

.login-button:hover {
  color: #131418;
  background-color: #f2f5f7;
  border: 1.5px solid #f2f5f7;
  -webkit-transition: all ease-in-out 350ms;
  transition: all ease-in-out 350ms;
}

.join-button {
  color: #131418;
  background-color: #61dafb;
  border: 1.5px solid #61dafb;
  border-radius: 2em;
  padding: 0.6rem 0.8rem;
  font-size: 1rem;
  cursor: pointer;
}

.join-button:hover {
  color: #f2f5f7;
  background-color: transparent;
  border: 1.5px solid #f2f5f7;
  -webkit-transition: all ease-in-out 350ms;
  transition: all ease-in-out 350ms;
}

/*Styling Hamburger Icon*/
.hamburger div {
  width: 30px;
  height: 3px;
  background: #101a29;
  margin: 5px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.hamburger {
  display: none;
}

/*Stying for small screens*/
@media screen and (max-width: 767px) {
  nav {
    position: fixed;
    z-index: 9999;
  }
  .disabled-white.active {
    background: #fafbff;
    -webkit-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
  }
  .disabled-white.active .hamburger div {
    background: #101a29;
  }
  .hamburger {
    display: block;
    position: absolute;
    cursor: pointer;
    right: 5%;
    top: 50%;
    -webkit-transform: translate(-5%, -50%);
            transform: translate(-5%, -50%);
    z-index: 2;
    -webkit-transition: all 0.6s ease;
    transition: all 0.6s ease;
  }
  .nav-links {
    position: fixed;
    background: transparent;
    height: 100vh;
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
    pointer-events: none;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .nav-links li {
    margin: 15px 0px;
  }
  .nav-links.open {
    height: 100%;
    pointer-events: all;
    background-color: #fafbff;
    padding-left: 0px;
  }
  .nav-links li {
    opacity: 0;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
  }
  li.fade {
    opacity: 1;
  }
}

/*Animating Hamburger Icon on Click*/
.toggle .line1 {
  -webkit-transform: rotate(-45deg) translate(-5px, 6px);
          transform: rotate(-45deg) translate(-5px, 6px);
}

.toggle .line2 {
  -webkit-transition: all 0.7s ease;
  transition: all 0.7s ease;
  width: 0;
}

.toggle .line3 {
  -webkit-transform: rotate(45deg) translate(-5px, -6px);
          transform: rotate(45deg) translate(-5px, -6px);
}

.register-log a {
  font-family: "Varela Round", sans-serif;
  font-size: 14px;
  margin-right: 20px;
  padding: 12px 20px;
}

.register-log a:last-child {
  margin-right: 0px;
}

.register-log a:hover {
  -webkit-box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
  color: #fff;
}

ul li:nth-child(4) button {
  margin-left: 20px;
}

ul li:last-child button {
  margin-right: 0px;
}

.signupRegistered .header-area {
  position: absolute;
  width: 100%;
}

.signupRegistered .header-area .main-header .main-menu ul li a {
  color: #fff;
}
/*# sourceMappingURL=navmenu.css.map */