#HeaderContainer {
    position: relative;
    display: block;
    padding-top: 10px;
    padding-bottom: 5px;
    margin: 0;
}

.prevent-select {
    -webkit-user-select: none;
    /* Safari */
    -ms-user-select: none;
    /* IE 10 and IE 11 */
    user-select: none;
    /* Standard syntax */
}

.notvisible {
    display: none;
    opacity: 0;
}

.visible {
    display: block;
    opacity: 1;
}

#ContactBreakout1 {
    position: absolute;
    display: block;
    z-index: 99;
    right: 50px;
    top: 70px;
    text-align: left;
    background-color: rgb(66 111 155);
    color: white;
    padding: 12px;
    transition: .2s;
}

#TopLogo {
    width: 6vw;
    min-width: 70px;
    position: relative;
    display: block;
    margin: auto;
}

#ButtonsContainer {
    position: absolute;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: 50%;
    transform: translate(0, 50%);
    right: 80px;
}

@media screen and (max-width: 830px) {
    #TopLogo{
        left: 3vw;
        margin: 0;
    }
    #ButtonsContainer{
        right: 2vw;
    }
}