#head .logo a{
    height: fit-content;
    width: 100%;
}
#head .logo {
    display: flex;
    align-items: center;
    gap: 20px;
}
#head .logo .dropdown{
    width: 180px;
}
#head .logo .dropdown #dropdownButton{
    list-style: none;
    border-radius: 40px;
    width: 100%;
    height: 40px;
    background: #fff;
    position: relative;
}
#dropdownButton::after {
      content: "";
    position: absolute;
    right: 20px;
    top: calc(43% + 3px);
    transform: translateY(-50%);
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
    border-top: 6px solid #000;
    }
#dropdownMenu::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}
#dropdownMenu{
    border-radius: 10px;
}
.dropdown ul li{
    height: 30px;
}
.dropdown ul li a{
    font-size: 12px;
}