.header-desktop {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px 0 30px;
    font-family: "Garet-Bold", sans-serif;

    width: 100%;

    background-color: rgba(82, 113, 255, 0.15);
    color: #00247d;
}

.logo h1 {
    font-size: clamp(1.5rem, 3vw, 5rem);
    padding: 0;
    margin: 0;
    font-family: "Garet-Heavy", sans-serif;
    letter-spacing: 10px;
}

.header-desktop .buttons {
    font-weight: bold;
    font-size: clamp(1.25rem, 2vw, 3rem);
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 30px;
    align-items: center;
    align-content: center;
    margin: 0;
}

.header-desktop .buttons .header-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.header-desktop .buttons .header-button img {
    width: clamp(3rem, 3.5vw, 5rem);
    height: auto;
    align-content: center;
}

.header-desktop .buttons button {
    all: unset;
    cursor: pointer;
    display: inline-block;
}

.header-desktop a {
    display: flex;
    padding: 0;
    margin: 0;
    gap: 10px;
    justify-content: center;
    align-items: center;
}

.header-mobile,
.mobile-menu {
    display: none;
}

.language-dropdown-content {
    display: none;
    position: absolute;
    background-color: rgba(82, 113, 255, 0.15);
    min-width: 80px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    opacity: 1 !important;
    border-radius: 10px;
    overflow: hidden;
    right: 0.5%;
    top: 8%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

.language-dropdown-content button .content {
    display: flex;
    flex-direction: row;
    padding: 10px;
    gap: 5px;
    justify-content: center;
    align-items: center;
    transition: 0.3s ease box-shadow, 0.3s ease background-color;
}

.language-dropdown-content img {
    width: clamp(3rem, 3.5vw, 5rem);
    height: auto;
    align-content: center;
}

.language-dropdown-content button .content:hover {
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    background-color: rgba(82, 113, 255, 0.15);
}

.language-selector.show .language-dropdown-content {
    display: flex;
}
