@import url("https://fonts.cdnfonts.com/css/helvetica-neue-5");
body {
  margin: 0px;
  font-family: "Helvetica Neue", sans-serif;
}

.navbar {
  top: 0;
  background-color: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  position: fixed;
  width: 100%;
  z-index: 9999;
  display: grid;
}
.navbar .lang {
  color: black;
  opacity: 0.8;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  font-family: Georgia, "Times New Roman", Times, serif;
  padding: 11px;
  cursor: pointer;
  position: absolute;
  margin-right: 90px;
  right: 0;
  max-height: 41px;
  padding-top: 5px;
  padding-bottom: 4px;
}
@media screen and (max-width: 1100px) {
  .navbar .lang {
    margin-right: 45px;
  }
}
.navbar .thehappydreamer {
  color: black;
  opacity: 0.8;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  font-family: Georgia, "Times New Roman", Times, serif;
  padding: 11px;
  cursor: pointer;
  width: 200px;
  position: absolute;
  margin-left: 90px;
}
@media screen and (max-width: 1100px) {
  .navbar .thehappydreamer {
    margin-left: 45px;
  }
}
.navbar .navbarcontainer {
  display: flex;
  width: 440px;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
  padding: 0;
  margin: 0 auto 0 auto;
}
@media screen and (max-width: 1100px) {
  .navbar .navbarcontainer {
    margin: 0 120px 0 auto;
  }
}
.navbar .navbarcontainer div {
  color: black;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 15px;
  cursor: pointer;
}
.navbar .navbarcontainer .navbar-logo {
  width: 30px;
  padding: 7px 20px 7px 20px;
  cursor: pointer;
}
.navbar .navbarcontainer .navbar-profile {
  width: 15px;
  padding: 14px 20px 15px 20px;
  opacity: 0.8;
  cursor: pointer;
}
@media screen and (max-width: 1100px) {
  .navbar .navbarcontainer {
    width: 350px;
  }
}

.navbar-mobile {
  top: 0;
  background-color: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  height: 50px;
  width: 100%;
  position: fixed;
  z-index: 9999;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
}
.navbar-mobile .navbar-logo-mobile {
  width: 30px;
  margin: 10px;
  position: absolute;
  cursor: pointer;
}
.navbar-mobile .thehappydreamer {
  opacity: 0.8;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  font-family: georgia;
  padding: 15px;
  cursor: pointer;
  width: 200px;
  position: absolute;
  cursor: pointer;
}
.navbar-mobile .navbar-mobile-open {
  width: 50px;
  height: 50px;
  margin-left: auto;
  transition: opacity 0.2s linear;
}
.navbar-mobile .navbar-mobile-open img {
  width: 20px;
  padding: 15px;
  opacity: 0.8;
}
.navbar-mobile .navbar-mobile-close {
  opacity: 0;
  width: 50px;
  height: 50px;
  margin-left: auto;
  transition: opacity 0.2s linear;
  position: absolute;
  top: 0;
  right: 0;
}
.navbar-mobile .navbar-mobile-close img {
  width: 20px;
  padding: 15px;
  opacity: 0.8;
}
.navbar-mobile ul {
  padding: 0;
  margin: 0;
  width: 100vw;
  margin-top: 15px;
}
.navbar-mobile ul li {
  list-style: none;
  width: 100vw;
  color: black;
  font-size: 28px;
  font-weight: 500;
  margin-top: 3px;
  margin-bottom: 4px;
  padding-left: 0px;
  padding-top: 10px;
  padding-bottom: 10px;
  height: 28px;
  opacity: 0;
  cursor: pointer;
  transition: all 0.2s ease-out;
}

.navbar-mobile {
  display: none;
}

.navbar {
  display: block;
}

@media screen and (max-width: 800px) {
  .navbar-mobile {
    display: block;
  }
  .navbar {
    display: none;
  }
}/*# sourceMappingURL=navbar-css.css.map */