.main-header {
  height: 3.5rem;
  background-color: #008cf1;
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding-left: 2rem;
  padding-right: 2rem;
}

.main-header a {
  color: white !important;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
}

/* Hamburger menu for small screens */
.hamburger-menu {
  display: none;
  font-size: 30px;
  cursor: pointer;
  color: #008cf1;
}

/* Mobile menu for small screens */
.mobile-menu {
  flex-direction: column;
  background-color: #008cf1;
  position: fixed;
  border-left: 2px solid white;
  right: 0;
  height: fit-content;
  overflow-y: auto;
  transition: transform 0.3s ease-in-out;
  z-index: 1000;
  transform: translateX(100%);
  width: 70%;
}

.mobile-menu a {
  padding: 1rem;
  border-bottom: 1px solid #ddd;
  color: black;
  display: block;
}

/* Media query for small screens */
@media (max-width: 768px) {
  .main-header {
    display: none;
  }

  .main-header a {
    display: none;
  }

  .hamburger-menu {
    display: block;
  }

  .mobile-menu {
    width: 70%;
  }

  .mobile-menu a {
    font-size: 18px;
    font-weight: 500;
    color: white;
    text-decoration: none;
  }
}

/* Media query for medium screens */
@media (max-width: 820px) {
  .mobile-menu {
    width: 50%;
  }
  .main-header a {
    display: none;
  }
  .hamburger-menu {
    display: block;
  }
  .mobile-menu a {
    font-size: 18px;
    font-weight: 500;
    color: white;
    text-decoration: none;
  }
  .main-header {
    justify-content: start;
  }
}

/* Open state */
.mobile-menu.open {
  transform: translateX(0);
}
/* banner */
.main-banner {
  width: 100%;
  height: fit-content;
  margin-top: 7.5rem;
}
.main-banner-img img {
  width: 100%;
}
@media (max-width: 580px) {
  .main-banner {
    margin-top: 9rem;
  }
}
@media (max-width: 768px) {
  .main-banner {
    margin-top: 5rem;
  }
}
