.dropdown-wrapper {
      position: relative;
      display: inline-block;
    }

    .menu-button {
    color: black;
    cursor: pointer;
    border: none;
    background: transparent;
    border-radius: 4px;
    column-gap: 15px;
    display: flex;
    align-items: center;
}

.dropdown {
    display: none;
    position: absolute !important;
    top: 100%;
    right: 0;
    background-color: transparent;
    min-width: 160px;
    box-shadow: none;
    z-index: 99;
    border-radius: 4px;
    border: none;
    padding-top: 10px;
}
.owl-dots {
    margin-bottom: 15px !important;
    margin-top: -30px !important;
    display: none;
}

.dropdown ul {
    background: #fff;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
    border: 1px solid #f3f3f3;
    padding: 0;
    list-style-type: none;
}

.dropdown ul li {
    padding: 0;
}

    .dropdown a {
      display: block;
      padding: 10px 15px;
      text-decoration: none;
      color: #333;
      width: 100%;
    }

    .dropdown a:hover {
      background-color: #f1f1f1;
    }

    .dropdown-wrapper:hover .dropdown {
      display: block;
    }
