.rainbow{
    width: 100%;
    background: linear-gradient(90deg, rgba(255,5,5,0.25) 0%, rgba(250,163,31,0.25) 4%, rgba(242,246,58,0.25) 8%, rgba(117,238,98,0.25) 15%, rgba(78,209,238,0.25) 20%, rgba(8,47,250,0.25) 27%, rgba(145,4,255,0.25) 33.333%, rgba(8,47,250,0.25) 40%, rgba(78,209,238,0.25) 47%, rgba(117,238,98,0.25) 52%, rgba(242,246,58,0.25) 59%, rgba(250,163,31,0.25) 63%, rgba(255,5,5,0.25) 67%, rgba(250,163,31,0.25) 71%, rgba(242,246,58,0.25) 75%, rgba(117,238,98,0.25) 81%, rgba(78,209,238,0.25) 86%, rgba(8,47,250,0.25) 93%, rgba(145,4,255,0.25) 100%);
    background-size: 300% 100%;
    animation: rainbow 30s linear;
    animation-iteration-count: infinite;
    transition: .2s;
    display: flex;
    justify-content: end;
    align-items: center;
    padding: 0 20px;
}

.rainbow .container{
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

#language-toggle{
    display: inline;
    width: fit-content;
    color: #E6F3FD;
    background-color: #73ABD8;
    padding: 3px 6px;
    border-radius: 6px;
    text-transform: uppercase;
    font-size: 1rem;
    border: none;
}

#language-toggle option {
    background-color: #E6F3FD;
    color: #73ABD8;
}

@keyframes rainbow {
    0%{
        background-position: 0%;
    }
    50%{
        background-position: 50%;
    }
    100%{
        background-position: 100%;
    }
}

/* MENU */
#menuCleaner{
    margin-top: 50px;
    height: 205px;
}


#menu{
    width: 100%;
    position: fixed;
    top: 0;
    background-color: #fff;
    z-index: 3;
    transition: .2s;
}

#menu.collapse{
    /* padding-bottom: 20px; */
    box-shadow: 0px 1px 14px 0px rgba(0, 0, 0, 0.11);
}

/* #menu.collapse .rainbow{
    height: 24px !important;
} */

#menu .wrapper{
    transition: .2s;
}

#menu.collapse .wrapper{
    margin-bottom: 0 !important;
}

#menu a.dropdown{
    cursor: pointer;
}

#menu a,
.menu a{
    color: #121212;
    text-decoration: none;
    text-transform: uppercase;
    transition: .2s;
}

#menu a.dropdown,
.menu a.dropdown{
    display: inline-flex;
    align-items: center;
}

#menu a.dropdown svg,
.menu a.dropdown svg{
    display: inline-block;
    margin-left: 10px;
}

#menu a:not(.logo):hover{
    color: #73ABD8;
    transform: scale(1.2, 1.2);
}

#menu a:last-child{
    margin-right: 0;
}

#menu .logo img{
    transition: .2s;
}

#menu.collapse .logo img{
    width: 200px !important;
}

/* MENU DROPDOWN */


#menu .dropdownBody{
    background-color: #fff;
    box-shadow: 0px 18px 18px 0px rgba(141, 141, 141, 0.17);
    height: 100px;
    width: 100%;
    transition: .2s;
    opacity: 1;
    position: relative;
}

#menu .dropdownBody .container{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    height: 100%;
}

.dropdownBody::before{
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg,
        rgba(141, 141, 141, 0), 
        rgba(141, 141, 141, .17), 
        rgba(141, 141, 141, 0) 
    );
    z-index: 1;
}

#menu.collapse .dropdownBody{
    height: 40px;
}

#menu .dropdownBody.hidden{
    display: none;
    opacity: 0;
}


/* MOBILE */
@media screen and (max-width: 743px) {
    .rainbow{
        height: 36px;
    }

    #menu .wrapper{
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    #menu .wrapper a:not(.logo){
        display: none;
    }

    #menu .logo img{
        width: 223px;
    }

    #menuDialog .container{
        display: flex;
        flex-flow: column;
        background-color: #fff;
        padding: 80px 0;
        align-items: center;
    }

    .modal .menu a{
        display: block;
        margin-bottom: 57px;
        text-align: center;
        font-size: 18px;
    }

    .modal .menu a:last-child{
        margin-bottom: 0px;
    }
}

/* TABLET */
@media screen and (min-width: 744px) and (max-width: 1349px) {
    .rainbow{
        height: 36px;
    }
    
    #menu a{
        font-size: 14px;
    }
    #menu .logo img{
        width: 223px;
    }

    #menu .dropdownBody{
        text-align: center;
    }

    #menu .dropdownBody .container{
        justify-content: space-between;
    }
}

/* DESKTOP */
@media only screen and (min-width: 1350px){
    .rainbow{
        height: 48px;
    }

    #menu a{
        font-size: 18px;
    }

    #menu .logo img{
        width: 372px;
    }
}

/* TABLET + DESKTOP */
@media screen and (min-width: 744px){
    #menu .wrapper{
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 34px;
    }

    .burger{
        display: none;
    }
}