@media (min-width: 768px) {
   .menu {
    display: none;
  }

  .reiki_navbar {
    position: static;
    height: auto;
    width: auto;
    padding: 0;
    box-shadow: none;
    display: block;
  }

  .reiki_navbar ul {
     display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 1rem;
    gap: 1.5rem;
  }
  .mobile_menu {
    display: none;
  }
.image {
    width: 60%;
    height: 300px;
  }
  .hero_section_text {
    width: 60%;
    text-align: center;
  }

  .hero_section_text h1 {
    font-size: 1.8rem;
  }

  .wrap-img {
    float: left;
    margin: 0 20px 20px 0;
  }
  .site-footer {
    padding: 60px 20px;
  }

  .footer-content h3 {
    font-size: 2rem;
  }

  .footer-tagline {
    font-size: 1.1rem;
  }

  .footer-copy {
    font-size: 0.9rem;
  }
}
@media (min-width: 1024px) {

  .navbar_container {
  width: 100%;
  margin: auto;
  min-height: 10vh;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  position: sticky;
  top: 0;          
  z-index: 1000;   
  background-color: #f9fcfa;
}
.menu{
  display: none;
}
.reiki_navbar{
width: 30%;
display: block;
}
.reiki_navbar ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 1rem;
  padding: 0;
  margin: 0;
  text-align: center;
}

.reiki_navbar li a {
  text-decoration: none;
  font-weight: 500;
  color: #016B61;
  
}
.reiki_logo {
  width: 30%;
  height: 30vh;
  max-height: 160px;
  overflow: hidden;   
  display: flex;
  align-items: center;
  justify-content: center;
}

.reiki_logo img {
  height: 100%;
  width: auto;
  object-fit: cover;
}
.hero_section {
  background-image: url("pics/hero.webp");
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  min-height: 70vh;
  height: auto;
  border-radius: 2rem;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero_section_text{
  width: 50%;
  position: absolute;
  left: 3rem ;
  display: flex;
  flex-direction: column;
  padding: 3rem;
  background: rgba(235, 191, 191, 0.5);
  border-radius: 12px;
  text-align: center;
}
.hero_section_text h1{
  color: #1f2a44;
  font-size: 2.5rem;
}
.hero_section_text h3{
  color: #444444;
}
.image {
  position: absolute;
  right: 6rem;
  bottom: -3rem;
  /* background-image: url("pics/bg1.webp"); */
  background-position: right;
  background-size: cover;
  background-repeat: no-repeat;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 1rem;
  border-bottom-left-radius: 1rem;
  width: 30%;
  height: 100%;
}
.about_founder{
  background:linear-gradient(rgba(237, 192, 237, 0.448),white);
  width: 87%;
  min-height: 60vh;
  height: auto;
  margin: 6rem auto;
  border-radius: 2rem;
  padding: 2rem;
  box-shadow: 0px 3px 9px lightgrey;
}
.box{
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-direction: column;
}
.wrap-img {
  float: left;
  max-width: 24 0px;     
  margin: 0 20px 20px 0; 
  border-radius: 12px;   
}
.about_founder h1{
  color: purple;
  font-size: 2.5rem;
  padding: 1rem 0;
}
.about_founder p b{
  color: rgb(73, 14, 73);
} 
}