*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Arial, sans-serif;
  background: #fafafa;
}
body a {
  text-decoration: none;
  color: #212121;
}
body a:hover {
  color: #2E4DFF;
}
body header nav {
  display: grid;
  grid-template-columns: auto auto auto;
  margin: 1rem auto;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  background: #fff;
  padding: 0.5rem 1.5rem;
  border-radius: 1rem;
  position: relative;
}
body header nav .logo a {
  display: block;
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
}
body header nav .logo a img {
  width: 36px;
  height: 36px;
}
body header nav .logo a strong {
  font-weight: bolder;
  font-size: 1rem;
}
@media screen and (max-width: 820px) {
  body header nav .menu {
    display: none;
  }
}
body header nav .menu ul {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
body header nav .menu ul li #dashhbord {
  background: linear-gradient(270deg, #2e4dff 0%, #85e1e6 100%);
  padding: 8px 16px;
  border-radius: 20rem;
  color: #fafafa;
  font-size: 1rem;
  font-weight: bold;
  transition: color 250ms ease;
  outline: none;
}
body header nav .menu ul li #dashhbord:hover {
  background: transparent;
  color: #2e4dff;
  border: 3px solid #2e4dff;
  padding: 0.5rem 13px;
}
body header .prfoile {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
@media screen and (max-width: 820px) {
  body header .prfoile {
    gap: 0.5rem;
  }
}
body header .prfoile a svg {
  width: 24px;
  height: 24px;
}
@media screen and (max-width: 820px) {
  body header .prfoile a svg {
    width: 20px;
    height: 20px;
  }
}
body header .prfoile a img {
  width: 48px;
  height: 48px;
  border-radius: 100%;
}
@media screen and (max-width: 820px) {
  body header .prfoile a img {
    width: 36px;
    height: 36px;
  }
}
body header .prfoile span {
  cursor: default;
  background-color: #caffca;
  color: #005000;
  padding: 0.2rem 0.5rem;
  border-radius: 0.5rem;
  align-self: flex-end;
  margin-bottom: 5px;
  margin-right: -7px;
  font-size: 0.8rem;
}
@media screen and (max-width: 820px) {
  body header .prfoile span {
    font-size: 0.5rem;
  }
}
body header .mobilemenu label {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0.5rem;
}
body header .mobilemenu label span {
  width: 24px;
  background-color: #212121;
  border: 1px solid;
  margin-top: 0.3rem;
  transition: all 350ms ease;
}
body header .mobilemenu input {
  display: none;
}
body header .mobilemenu input:checked + label + ul {
  visibility: visible;
  opacity: 1;
}
body header .mobilemenu input:checked + label .topline {
  transform: rotate(45deg) translateY(3px) translateX(2px);
}
body header .mobilemenu input:checked + label .botline {
  transform: rotate(-45deg) translateY(-7px) translateX(5px);
}
body header .mobilemenu input:checked + label .midline {
  transform: translateX(24px);
  opacity: 0;
}
body header .mobilemenu ul {
  list-style: none;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #fff;
  height: 100vh;
  visibility: hidden;
  opacity: 0;
  transition: opacity 200ms ease;
}
body header .mobilemenu ul li {
  margin-top: 1rem;
}
body header .mobilemenu ul li #dashhbord {
  background: linear-gradient(270deg, #2e4dff 0%, #85e1e6 100%);
  padding: 0.5rem 1rem;
  color: #fafafa;
  font-size: 1rem;
  font-weight: bold;
}
body header .mobilemenu ul li #dashhbord:hover {
  color: #e7e7e7;
}
body header .mobilemenu ul li a {
  padding: 1rem;
}
@media screen and (min-width: 820px) {
  body header .mobilemenu {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */