/* RESET */
*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
overflow-x:hidden;
font-family:Arial;
}

/* NAVBAR */
.nav{
width:100%;
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 5%;
background:red;
position:relative;
z-index:9999;   /* IMPORTANT */
}

/* LOGO */
.logo{
display:flex;
align-items:center;
gap:10px;
}

.logo img{
    width:100px;
    height:100px;
    border-radius:50%;
    background:#fff;
}

.logo span{
color:#fff;
font-weight:bold;
}

/* MENU (DESKTOP) */
.menu{
display:flex;
gap:25px;
list-style:none;
}

.menu li a{
color:#fff;
text-decoration:none;
}

.nav-actions{
display:flex;
align-items:center;
gap:14px;
}

.translate-box{
min-height:38px;
display:flex;
align-items:center;
gap:7px;
padding:5px 10px;
background:#fff;
border-radius:6px;
box-shadow:0 5px 14px rgba(0,0,0,0.15);
}

.translate-box i{
color:#b40000;
font-size:18px;
}

.translate-box .goog-te-gadget{
height:28px;
font-size:0;
line-height:1;
}

.translate-box .goog-te-gadget-simple{
display:flex;
align-items:center;
height:28px;
padding:0;
border:none;
background:transparent;
}

.translate-box .goog-te-gadget-simple span{
display:inline-flex;
align-items:center;
font-family:Arial, sans-serif;
font-size:13px;
font-weight:700;
color:#222;
white-space:nowrap;
}

.translate-box .goog-te-gadget-icon{
display:none;
}

.translate-box select.goog-te-combo{
width:145px;
height:28px;
border:none;
outline:none;
background:#fff;
color:#222;
font-size:13px;
font-weight:700;
cursor:pointer;
}

.goog-te-banner-frame.skiptranslate,
.goog-te-gadget span[style*="white-space:nowrap"] + span,
.goog-logo-link{
display:none!important;
}

body{
top:0!important;
}

/* BUTTON */
.btn{
display:none;
background:none;
border:none;
font-size:26px;
color:#fff;
cursor:pointer;
}

/* MOBILE */
@media(max-width:768px){

.btn{
display:block;
}

/* IMPORTANT FIX */
.menu{
position:absolute;
top:100%;
left:0;
width:100%;

background:darkred;

display:none;

flex-direction:column;
align-items:center;

padding:20px 0;

z-index:99999;   /* IMPORTANT */
}

/* SHOW MENU */
.menu.show{
display:flex;
}

.nav{
padding:12px 4%;
}

.logo img{
width:140px;
height:40px;
}

.logo span{
font-size:14px;
}

.nav-actions{
gap:10px;
}

.translate-box{
min-height:34px;
padding:4px 8px;
}

.translate-box i{
font-size:16px;
}

.translate-box .goog-te-gadget-simple span,
.translate-box select.goog-te-combo{
font-size:12px;
}
}

@media(max-width:480px){
.nav{
padding:10px 3%;
}

.logo{
gap:7px;
}

.logo img{
width:36px;
height:36px;
}

.logo span{
max-width:92px;
font-size:13px;
line-height:1.15;
}

.translate-box{
max-width:132px;
gap:5px;
padding:4px 7px;
}

.translate-box .goog-te-gadget-simple span{
max-width:95px;
overflow:hidden;
text-overflow:ellipsis;
}

.translate-box select.goog-te-combo{
width:104px;
}
}
