.logo {
    color: wheat;
}

.hd,
.hd-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.hd {
    width: 100%;
    margin: auto;
    height: max-content;
    margin-top: 24px;
}

.hd-item {
    gap: 20px;
}

.hd-item>a {
    box-shadow: 0px 8px 16px -4px var(--custom-rgba1);
    text-decoration: none;
    border-radius: 32px;
    height: 46px;
    font-size: 14px;
    font-family: "Inter-SemiBold";
    padding-left: 24px;
    padding-right: 24px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hd-item-one {
    background-color: transparent;
    border: 1px solid white;
    color: white;
}

.hd-item-two {
    border: none;
    border-radius: 32px;
    color: var(--custom-333333);
    background-color: white;
}

@media only screen and (max-width: 500px) {

    .hd-item>a {
        height: 43px;
        font-size: 12px;
    }
  }