@import url("https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200..1000;1,200..1000&display=swap");
.burger-menu {
  display: none;
  cursor: pointer;
  position: relative;
  z-index: 3;
}
@media (max-width: 940px) {
  .burger-menu {
    display: block;
    font-size: 60px;
    color: #5f4c62;
  }
}
@media (max-width: 600px) {
  .burger-menu {
    font-size: 50px;
  }
}

.side-menu {
  height: 100%;
  width: 0;
  position: fixed;
  top: 0;
  right: 0;
  background-color: #5f4c62;
  overflow: hidden;
  transition: 0.5s ease;
  padding: 60px 0;
  z-index: 1000;
}

.side-menu a {
  text-decoration: none;
  font-size: 25px;
  color: #fff;
  display: block;
  transition: 0.3s;
  margin-bottom: 5px;
  margin-top: 5px;
  padding: 5px 20px;
}
.side-menu a:hover {
  background: rgb(167, 142, 167);
}

.swipe {
  margin: 5px 0;
}

.side-menu .close-btn {
  position: absolute;
  top: 10px;
  right: 25px;
  font-size: 36px;
}

.side-menu.open {
  width: 350px;
  overflow: visible;
}
@media (max-width: 550px) {
  .side-menu.open {
    width: 100%;
  }
}

.side-dropdown-content {
  max-height: 0;
  overflow: hidden;
  padding: 0;
  transition: max-height 0.5s ease;
}
.side-dropdown-content:hover {
  background: transparent !important;
}

.side-dropdown-content a {
  font-size: 20px;
  margin-bottom: 0;
}
.side-dropdown-content a:hover {
  background: rgb(167, 142, 167);
}

.side-dropdown.open .side-dropdown-content {
  max-height: 200px;
}

.side-dropdown-toggle {
  cursor: pointer;
}

.close-btn:hover {
  background: transparent !important;
}/*# sourceMappingURL=burger_menu.css.map */