/* MOBILE FIRST */
/* 
.languageBarContainer {
    z-index: 10;
}

.languageBar {

    position: fixed;
    width: 100%;
    bottom: 0%;


    display: grid;
    grid-template-columns: 1fr;
    background-color: rgb(11,29,68);
    column-gap: 2rem;

    padding: 30px 20px;
    row-gap: 5px;
    
}

.aboutContact {
    display: grid;
    grid-template-columns: min-content auto;
    justify-items: right;
    column-gap: 0.3rem;
    row-gap: 10px;
}

.languageSelector {
    color: rgb(182,216,255);
    display:grid;
    grid-template-columns: auto;
    align-items: right;
    column-gap: 0.7rem;
    row-gap: 10px;
}

.mobileDivider {

    height:1px; 
    background: #b6d8ff;
    margin: 15px 0% 15px 5%;

}


.aboutContact a {
    color: white;
    text-decoration: none;
}


.languageSelector a {
    color: #b6d8ff;
    text-decoration: none;
}
.languageSelector a:hover, .aboutContact a:hover {
    color: wheat;
    text-decoration: underline;
} */

.mdIcons {
    color: #6ee1d9;
}

/* DESKTOP SECOND */
@media only screen and (min-width: 768px) {
/* 
    .languageBarContainer {
        
        z-index: unset;
    }

.languageBar {

    position: relative;
    bottom: unset;
    right: unset;
    width: unset;

    display: flex;
    justify-content: end;
    padding: 3px 20px;
    
}

.aboutContact {
    
    grid-template-columns: auto auto auto auto;
    
    align-items: center;
}

.languageSelector {
    
     
     grid-template-columns: auto auto;
     
     align-items: center;
 }

.mobileDivider {
    display: none;
} */

}


