.educathon__navbar {
  display: flex;
  flex-direction: column;
  background-color: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.educathon__navbar-hamburger {
  background-color: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
  display: none;
  flex-direction: column;
}

.educathon__navbar-body {
  display: flex;
  border-style: solid;
  border-color: rgba(255, 255, 255, 0.5);

  /* border-image: initial; */
  border-width: 0px 0px 2px 0px;
  justify-content: space-between;
  align-items: center;
  top: 0px;
  padding: 0px 2rem;
  height: 72px;
  box-sizing: border-box;
  max-width: 1920px;
  margin: 0 auto;
  width: 100%;
}

.educathon__navbar-hamburger-body {
  width: 91.6667%;
  max-width: 80rem;
  margin: 0px auto;
  padding: 0;
}

.educathon__navbar-logo {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
}

.educathon__navbar-logo a img {
  width: auto;
  height: 50px;
}

.educathon__navbar-brochure {
  /* padding: px; */
  display: flex;
  gap: 20px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  min-width: 200px;
}

.educathon__navbar-brochure-button {
  font-family: var(--font-family);
  /* margin-right: 2rem; */
  font-size: 16px;
  display: flex;
  /* gap:35px; */
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 10px 16px;
  border-radius: 4px;
  border: none;
  color: white;
  cursor: pointer;
  min-width: 120px;
  background-color: green;
}

.educathon__navbar-brochure-button img {
  width: 16px;
  filter: invert(100%);
}

.educathon__navbar-brochure-button a {
  font-size: 12px;
  margin-left: 8px;
  padding-right: 3px;
}

.educathon__navbar-brochure-button:hover img {
  filter: invert(0%);
}

.educathon__navbar-brochure-button:hover a {
  color: black;
}

.educathon__navbar-hamburger-brochure_feedback-button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.educathon__navbar-hamburger-brochure-button {
  margin: 2rem auto;
  padding: 20px 24px;
  border-radius: 4px;
  border: none;
  color: white;
  cursor: pointer;
  width: 30%;
  background-color: var(--primary-c);
}

.educathon__navbar-hamburger-feedback-button {
  margin: 2rem auto;
  padding: 20px 24px;
  border-radius: 4px;
  border: none;
  color: white;
  cursor: pointer;
  width: 30%;
  background-color: var(--primary-c);
}

.educathon__navbar-brochure-button:hover {
  background-color: rgba(255, 255, 255, 0.9);
  color: black;
}

/* .educathon__navbar-brochure-button.feedback-button {
  margin-left: 2rem;
  margin-right: 0rem;
} */

.educathon__navbar-brochure-button.feedback-button img {
  width: 16px;
}

.educathon__navbar-brochure-button.feedback-button a {
  font-size: 12px;
  margin-left: 8px;
  padding-right: 3px;
}

.educathon__navbar-brochure-button.feedback-button:hover img {
  filter: invert(0%);
}

.educathon__navbar-brochure-button.feedback-button:hover a {
  color: black;
}

.educathon__navbar-hamburger-logo {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.educathon__navbar-hamburger-logo a img {
  width: auto;
  height: 50px;
  object-fit: contain;
}

/* Specific styling for main logo to make it bigger */
.educathon__navbar-hamburger-logo a img.educathon-main-logo {
  height: 60px;
  width: auto;
}

/* Samarth logo styling to prevent distortion */
.educathon__navbar-hamburger-logo a img.samarth-logo {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.educathon__navbar-hamburger-nav {
  display: flex;
  padding: 4px;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.educathon__navbar-menu {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.educathon__navbar-navlist {
  list-style: none;
  display: flex;
  gap: 0;
  margin: 0;
  padding: 0;
}

.educathon__navbar-menu-heading {
  font-family: var(--font-family);
  justify-content: space-evenly;
  font-style: normal;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1rem;
  /* identical to box height, or 122% */
  letter-spacing: 1.5px;
  text-transform: capitalize;
  margin: 0;
  padding: 1.5rem 1.1rem;
  color: #b0b0b0;
  color: white;
  cursor: pointer;
  box-sizing: border-box;
}

.educathon__navbar-navitem:hover>a>.educathon__navbar-menu-heading {
  color: white !important;
}

.educathon__navbar-menu-heading:after {
  margin-top: 4px;
  display: block;
  content: "";
  border-bottom: 2px solid var(--secondary-c);
  transform: scaleX(0);
  transition: transform 0.5s ease-in-out;
  box-shadow: 0 0 5px var(--secondary-c), 0 0 12px var(--secondary-c),
    0 0 15px var(--secondary-c), 0 0 25px var(--secondary-c);
}

.educathon__navbar-menu-heading:hover::after {
  transform: scaleX(0.8);
  border-radius: 4px;
  color: #b0b0b0;
}

@media screen and (max-width: 2000px) {
  .educathon__navbar-logo a img {
    max-width: 100%;
    height: auto;
  }
}

@media screen and (max-width: 1100px) {
  .educathon__navbar {
    display: none;
  }

  /* .educathon__navbar-brochure-button.feedback-button {
    margin: 4rem auto;
  } */
  .educathon__navbar-brochure-button {
    margin: 4rem auto;
  }

  .educathon__navbar-hamburger {
    height: auto;
    display: flex;
  }

  .educathon__navbar-hamburger-nav {
    padding: 10px;
  }
}

@media screen and (max-width: 650px) {

  /* .educathon__navbar-hamburger-logo {
    width: 40px;
    height: 40px;
  } */
  .educathon__navbar-hamburger-logo img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
  }

  /* Make EDUC-A-THON logo bigger on mobile */
  .educathon__navbar-hamburger-logo a img.educathon-main-logo {
    height: 75px;
    width: auto;
  }

  /* Samarth logo sizing */
  .educathon__navbar-hamburger-logo a img.samarth-logo {
    height: 50px;
    width: auto;
  }

  .educathon__navbar {
    display: none;
  }

  .educathon__navbar-hamburger {
    height: auto;
    display: flex;
  }

  .educathon__navbar-hamburger-nav {
    padding: 4px;
  }

  .educathon__navbar-hamburger-brochure-button {
    width: 45%;
  }

  .educathon__navbar-hamburger-feedback-button {
    width: 45%;
  }
}

@media screen and (max-width: 480px) {
  .educathon__navbar-hamburger-logo {
    width: 45px;
    height: 45px;
  }

  .educathon__navbar-hamburger-logo img {
    height: 45px;
    object-fit: contain;
  }

  /* Make EDUC-A-THON logo bigger on mobile */
  .educathon__navbar-hamburger-logo a img.educathon-main-logo {
    height: 70px;
    width: auto;
  }

  /* Samarth logo sizing */
  .educathon__navbar-hamburger-logo a img.samarth-logo {
    height: 45px;
    width: auto;
  }

  .hamburger {
    width: 45px;
    height: 45px;
  }

  .ham {
    height: 55px;
  }

  .educathon__navbar-hamburger-navitem {
    padding: 12px;
  }

  .educathon__navbar-hamburger-menu-heading {
    font-size: 0.75rem;
  }

  .educathon__navbar-hamburger-brochure-button,
  .educathon__navbar-hamburger-feedback-button {
    width: 48%;
    padding: 15px 20px;
    font-size: 0.85rem;
  }
}

@media screen and (max-width: 320px) {
  .educathon__navbar-hamburger-logo {
    width: 40px;
    height: 40px;
  }

  .educathon__navbar-hamburger-logo img {
    height: 40px;
    object-fit: contain;
  }

  /* Make EDUC-A-THON logo bigger even on smallest screens */
  .educathon__navbar-hamburger-logo a img.educathon-main-logo {
    height: 65px;
    width: auto;
  }

  /* Samarth logo sizing */
  .educathon__navbar-hamburger-logo a img.samarth-logo {
    height: 40px;
    width: auto;
  }

  .hamburger {
    width: 40px;
    height: 40px;
  }

  .ham {
    height: 50px;
  }

  .educathon__navbar-hamburger-navlist {
    padding: 8px 20px;
  }

  .educathon__navbar-hamburger-navitem {
    padding: 10px;
  }

  .educathon__navbar-hamburger-menu-heading {
    font-size: 0.7rem;
    letter-spacing: 0.5px;
  }

  .educathon__navbar-hamburger-brochure-button,
  .educathon__navbar-hamburger-feedback-button {
    width: 100%;
    padding: 12px 16px;
    font-size: 0.8rem;
    margin: 1.5rem auto;
  }

  .educathon__navbar-hamburger-brochure_feedback-button {
    flex-direction: column;
    gap: 0;
  }
}

.hamburger {
  width: 50px;
  height: 50px;
}

.hamburger-open {
  height: 100vh;
}

.ham {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: transform 400ms;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: auto;
  height: 60px;
}

.hamRotate.active {
  transform: rotate(45deg);
}

.hamRotate180.active {
  transform: rotate(180deg);
}

.line {
  fill: none;
  transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
  stroke: white;
  stroke-width: 4;
}

.ham8 .top {
  stroke-dasharray: 25 160;
}

.ham8 .middle {
  stroke-dasharray: 60 142;
  transform-origin: 50%;
  transition: transform 400ms;
}

.ham8 .bottom {
  stroke-dasharray: 25 85;
  transform-origin: 50%;
  transition: transform 400ms, stroke-dashoffset 400ms;
}

.ham8.active .top {
  stroke-dashoffset: -64px;
}

.ham8.active .middle {
  transform: rotate(90deg);
}

.ham8.active .bottom {
  stroke-dashoffset: -64px;
}

.educathon__navbar-hamburger-navlist {
  display: none;
  padding: 12px 34px;
  flex-direction: column;
  align-items: stretch;
  list-style: none;
  transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
  flex: 1 1 0%;
}

.activeMenu {
  transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
}

.educathon__navbar-hamburger-navitem {
  padding: 16px;
  border-bottom: 0.4px solid rgb(163, 163, 163);
}

.educathon__navbar-hamburger-menu-heading {
  font-family: var(--font-family);
  justify-content: space-evenly;
  font-style: normal;
  font-weight: 300;
  font-size: 0.8rem;
  line-height: 1rem;
  /* identical to box height, or 122% */
  letter-spacing: 1px;
  text-transform: capitalize;
  color: #fff;
  cursor: pointer;
}