.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown .dropbtn {
    border: none;
    padding: 0;
    height: var(--navbar-height);
}

.dropdown .dropdown-content {
    display: none;
    position: absolute;
    z-index: 1;
    background-color: var(--theme-white);
    left: -40px;
    right: -40px;
    border-radius: 0 0 var(--border-radius) var(--border-radius);
}

.dropdown .dropdown-content a {
    height: var(--navbar-height);
    text-align: center;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
}

.dropdown .dropdown-content a,
.dropbtn {
    font: 16px "ClashDisplay";
    font-weight: 550;
    text-decoration: none;
    text-transform: uppercase;
    background-color: transparent;
    color: var(--theme-red);
}

@media (max-width: 1200px) {
    .dropdown .dropbtn {
        height: auto;
        cursor: pointer;
    }

    .dropdown .dropdown-closed {
        display: none;
        height: 0;
        overflow: hidden;
    }
}
