.header-desktop {
  display: block;
  background-image: url('../image/rituals-header.webp'); /* Replace with your header image path */
  background-size: cover;
  background-position: center;
  height: 400px; /* Adjust the height as needed */
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-top: 75px;
  text-align: right;
}
.header-mobile {
  display: none;
}

@media (max-width: 768px) {
  .header-desktop {
    display: none;
  }
  .header-mobile {
    display: block;
    background-image: url('../image/rituals-header-m.webp'); /* Replace with your header image path */
    background-size: cover;
    background-position: center;
    height: 210px; /* Adjust the height as needed */
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 75px;
    text-align: right;
  }

}




  .ritual-desktop {
    display: block;
  }
  .ritual-mobile {
    display: none;
  }

  @media (max-width: 992px) {
    .ritual-desktop {
      display: none;
    }
    .ritual-mobile {
      display: block;
    }

  }
