.hero .content h1 {
  margin-top: -5rem;
  margin-bottom: 1rem;
  font-size: 2.5rem;
}

.hero .content .btn {
  margin-top: 1rem;
}

/* Hamburger Menu */
.menu-wrap {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
}

.menu-wrap .toggler {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 3;
  cursor: pointer;
  width: 50px;
  height: 50px;
  opacity: 0;
}

.menu-wrap .hamburger {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  width: 60px;
  height: 60px;
  padding: 1rem;
  background: var(--primary-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* hamburger line */
.menu-wrap .hamburger > div {
  position: relative;
  flex: none;
  width: 100%;
  height: 2px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

/* Hamburger Lines - Top and Bottom */

.menu-wrap .hamburger > div:before,
.menu-wrap .hamburger > div:after {
  content: "";
  position: absolute;
  z-index: 2;
  top: -10px;
  width: 100%;
  height: 2px;
  background: inherit;
}
/* Moves Line Down */
.menu-wrap .hamburger > div:after {
  top: 10px;
}

/*  Toggler Animation */
.menu-wrap .toggler:checked + .hamburger > div {
  transform: rotate(135deg);
}

/* Turns into X */
.menu-wrap .toggler:checked + .hamburger > div:before,
.menu-wrap .toggler:checked + .hamburger > div:after {
  top: 0;
  transform: rotate(90deg);
}

/* ROtate on Hover When Checked */
.menu-wrap .toggler:checked:hover + .hamburger > div {
  transform: rotate(225deg);
}

/* SHow Menu */
.menu-wrap .toggler:checked ~ .menu {
  visibility: visible;
}

.menu-wrap .toggler:checked ~ .menu > div {
  transform: scale(1);
  transition-duration: 0.75s;
}

.menu-wrap .toggler:checked ~ .menu > div > div {
  opacity: 1;
  transition: opacity 0.4s ease 0.4s;
}

/* Menu */
.menu-wrap .menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  visibility: hidden;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.menu-wrap .menu > div {
  background: var(--overlay-color);
  border-radius: 50%;
  width: 300vw;
  height: 300vw;
  display: flex;
  flex: none;
  align-items: center;
  justify-content: center;
  transform: scale(0);
  transition: all 0.4s ease;
}

.menu-wrap .menu > div > div {
  text-align: center;
  max-width: 90vw;
  max-height: 100vh;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.navbar ul {
  display: flex;
  flex-direction: column;
}

.navbar ul li {
  padding: 0.5rem;
  color: #fff;
}

.navbar ul li a {
  font-size: 1.5rem;
  color: inherit;
}

/* hero */
.hero .content h1 {
  margin-top: 1rem;
}

/* Donation */

.donation-payment-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.donation-form {
  min-width: 446px;
}

.donation-form .tax-p {
  font-size: 1rem;
}

.form {
  margin: 10px 0;
}

#donate-main .maintenance-txt {
  margin-left: 0;
}

@media (max-width: 768px) {
  /* Hero */

  .hero .content h1 {
    font-size: 2rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
  }

  .hero.blog {
    height: 80vh;
  }

  /* icons */
  .flex-items {
    flex-direction: column;
    margin-right: 0;
  }

  .flex-items .icons > img {
    margin-top: 10px;
  }

  /* Why We Started & Stories */
  .flex-columns .row,
  .flex-columns.flex-reverse .row {
    display: flex;
    flex-direction: column;
    max-width: 100%;
  }

  .flex-columns .column-2 {
    align-items: center;
    text-align: center;
    justify-content: center;
  }

  /* Gallery */
  .gal-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 5px;
  }

  .gal {
    height: 250px;
  }

  .gal-4 {
    background: url("../images/jpg/Nepal/begnas-lake.jpg") top center;
    background-size: cover;
    grid-column: 1 / span 2;
  }

  .gal-5 {
    background: url("../images/gal/mtn-cloud-crop.jpeg") center center/cover;
    background-size: cover;
  }

  .gal-6 {
    background: url("../images/jpg/mountain-3-small.jpg") center center/cover;
    background-size: cover;
    grid-column: 2 / span 1;
  }

  /* Founders */

  .team .section-header {
    margin-bottom: 0;
  }

  .team img {
    width: 70%;
  }

  .team .flex-items .president {
    margin-right: 0;
  }

  .team .flex-items .vp {
    margin-left: 0;
  }
}

/* Footer */

#footer p {
  font-size: 0.8rem;
}

@media (max-width: 667px) {
  /* Projects */
  #project-articles .articles-container,
  #project-articles .articles-container > *:nth-child(1),
  #project-articles .articles-container > *:nth-child(7),
  #project-articles .articles-container > *:nth-child(11) {
    display: flex;
    flex-direction: column;
  }
}

@media (max-width: 414px) {
  .btn {
    font-size: 1.3rem;
  }
  .hero .content h1 {
    font-size: 2rem;
    margin-top: 0;
  }
  .navbar {
    padding: 0;
  }

  .hero .content > a {
    display: none;
  }

  /* Icons */
  #about .icons-1,
  #about .icons-2,
  #about .icons-3 h3 {
    display: none;
  }

  #about .icons-3 {
    margin-bottom: 0;
  }
  #about .icons-3 a {
    display: inline-block;
  }

  /* About */
  .flex-columns h2 {
    text-align: left;
    font-size: 2.5rem;
  }

  .flex-columns p {
    text-align: left;
  }

  .flex-columns .column-2 {
    padding: 1rem;
  }
  /* Gallery */
  .gal-grid {
    display: flex;
    flex-direction: column;
  }

  .gal {
    margin: 5px 0;
  }

  .gal a {
    display: none;
  }

  /* Donation */

  .donation-form {
    min-width: 350px;
    max-width: 400px;
    padding: 1rem 0;
  }

  .donation-form > * {
    margin: 0;
  }

  .donation-form h2 {
    margin-right: 0;
    text-align: left;
  }

  .donation-am {
    text-align: center;
  }

  .donation-am > div {
    display: flex;
    flex-direction: column-reverse;
    grid-gap: 2rem;
  }

  .donation-am .donorbox {
    margin-bottom: 2rem;
  }

  .donation-am .donorbox a {
    border-radius: 3px;
  }

  /* Contact */
  .contact-form {
    width: 100%;
  }
  #contact .column-2 > form {
    width: 100%;
  }
}

@media (max-width: 320px) {
  /* .hero .content h1 {
    font-size: 2.5rem;
  } */

  .section-header h2 {
    font-size: 2.5rem;
  }

  .flex-columns h2 {
    font-size: 2.3rem;
  }

  .flex-columns p {
    font-size: 1rem;
  }

  .section-margin {
    margin-top: 2rem;
  }

  .form {
    min-width: 310px;
    max-width: 310px;
  }

  .donation-form {
    min-width: 200px;
    max-width: 320px;
  }
}

/* Landscape mode */

@media (max-height: 414px) {
  /* Hero */
  .hero .content > p,
  .hero .content > a {
    display: none;
  }

  /* Icons */
  #about .icons-1,
  #about .icons-2,
  #about .icons-3 h3 {
    display: none;
  }

  #about .icons-3 {
    margin-bottom: none;
  }
  #about .icons-3 a {
    display: inline-block;
  }
}
