.language-switcher {
    list-style-type: none;
    margin: 0;
    padding: 0;
    z-index: 1000; /* Adjust this value as needed to ensure the switcher appears above other elements */
    position: relative; /* or absolute, depending on your layout needs */
	float: right;
	right: -30px;
}

.language-switcher li {
    display: inline-block;
    margin-right: 10px; /* Adjust the right margin as needed */
}

.language-switcher a {
    text-decoration: none;
    font-size: 17px;
    font-family: 'gilroy', Helvetica, Arial, sans-serif;
    font-weight: 600;
	color: #000b40 !important;
	padding: 5px;
	transition: background-color 0.4s ease-in-out, color 0.4s ease-in-out, border-color 0.4s ease-in-out;
}

.language-switcher a:hover {
    text-decoration: underline; /* Add any hover effect you want */
	background-color: #000b40;
    color: #ffffff !important;
	padding: 5px;
	transition: background-color 0.4s ease-in-out, color 0.4s ease-in-out, border-color 0.4s ease-in-out;
}