.dropdown {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid var(--grey);
    padding-left: 22px;
    box-shadow: 4px 4px 4px 4px #0000cc40;

}
.dropdown-items {
    margin-left: 30px;
    flex-direction: column;
    height: fit-content;
}
.dropdown >li > h2 {
    cursor: pointer;
    color: var(--blue02);
}
.dropdown-items > a {
    text-transform: uppercase;
    color: var(--blue01);
}