@import url("https://fonts.googleapis.com/css2?family=Michroma&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Anek+Devanagari:wght@300;400;500;600;700&display=swap");
.header-body {
  width: 100%;
  display: flex;
  justify-content: space-between;
  box-sizing: border-box;
  background-color: rgba(243, 248, 255, 0.8);
  backdrop-filter: blur(10px);
  align-items: center;
}
.header-body .nav-buttons-container {
  display: flex;
  align-items: center;
}
.header-body .nav-buttons-container .nav-button {
  color: rgba(34, 91, 177, 0.5019607843);
  font-family: "Anek Devanagari", sans-serif;
  font-weight: 600;
  text-decoration: none;
  height: fit-content;
  transition: 0.3s;
}
.header-body .nav-buttons-container .nav-button:hover {
  color: #225bb1;
}
.header-body .nav-buttons-container .nav-button.focus {
  color: #225bb1;
}

@media all and (min-width: 1367px) {
  .header-body {
    height: 90px;
    padding: 0px 80px 0px 50px;
  }
  .header-body .abe-logo {
    height: 80px;
  }
  .header-body .nav-buttons-container {
    gap: 40px;
  }
  .header-body .nav-buttons-container .nav-button {
    font-size: 22px;
  }
}
@media all and (max-width: 1366px) and (min-width: 1025px) {
  .header-body {
    height: 70px;
    padding: 0px 60px 0px 30px;
  }
  .header-body .abe-logo {
    height: 60px;
  }
  .header-body .nav-buttons-container {
    gap: 25px;
  }
  .header-body .nav-buttons-container .nav-button {
    font-size: 16px;
  }
}
@media all and (max-width: 1024px) and (min-width: 769px) {
  .header-body {
    height: 60px;
    padding: 0px 60px 0px 30px;
  }
  .header-body .abe-logo {
    height: 50px;
  }
  .header-body .nav-buttons-container {
    gap: 15px;
  }
  .header-body .nav-buttons-container .nav-button {
    font-size: 16px;
  }
}
@media all and (max-width: 768px) and (min-width: 471px) {
  .header-body {
    height: 60px;
    padding: 0px 60px 0px 30px;
  }
  .header-body .abe-logo {
    height: 50px;
  }
  .header-body .nav-buttons-container {
    gap: 15px;
  }
  .header-body .nav-buttons-container .nav-button {
    font-size: 16px;
  }
}
@media all and (max-width: 470px) {
  .header-body {
    height: 40px;
    padding: 0px 20px 0px 10px;
  }
  .header-body .abe-logo {
    height: 25px;
  }
  .header-body .nav-buttons-container {
    gap: 8px;
  }
  .header-body .nav-buttons-container .nav-button {
    font-size: 12px;
  }
}/*# sourceMappingURL=header.css.map */