.lang-switcher {
display: flex;
align-items: center;
gap: 6px;
}
.lang-switcher select {
background: transparent;
border: none;
color: inherit;
font: inherit;
cursor: pointer;
outline: none;
appearance: none;
-webkit-appearance: none;
-moz-appearance: none;
}
.lang-switcher select option {
color: #000;
}
.lang-switcher #language {
padding: 0px 20px;
}
.footer-social {
gap: 10px;
}
.footer-social .social-icon {
width: 34px;
height: 34px;
border: 1px solid #d9d9d9;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
text-decoration: none;
color: #555;
background: #fff;
transition: all 0.3s ease;
}
.footer-social .social-icon:hover {
background: #f5f5f5;
color: #000;
}
.footer-social i {
font-size: 15px;
}