.top-contacts{
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    padding: 5px;
    color: #999;
    outline: #e6e6e6 solid 1px;
    font-size: small;
}

.top-logo{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.5);
}

.top-logo .navNotRes{
    display: flex;
    align-items: center;
    @media screen and (max-width: 900px){
        display: none;
    }
}

.top-logo .navRes{
    @media screen and (min-width: 900px){
        display: none;
    }
}

.top-logo button{
    margin: 20px;
    width: 130px;
    height: 40px;
    cursor: pointer;
    font-weight: 500;
    background-color: white;
    color: #00457C;
    border: 2px #00457C solid;
    border-radius: 3px;
    transition: all .4s;
    @media screen and (max-width: 900px){
        margin: 0;
    }
}

.top-logo .dropdownButton{
    width: 40px;
}

.top-logo button:hover{
    background-color: #00457C;
    color: white;
    border: 2px #00457C solid;
    border-radius: 3px;
    transform: translateY(-5px);
    box-shadow: 0 7px 0 -2px #0771C8,
    0 13px 0 -4px #61A4D7
}

.top-logo button:active{
    transition: all 0.2s;
    transform: translateY(0px);
    box-shadow: 0 2px 0 -2px #0771C8,
    0 8px 0 -4px #61A4D7
}

.logo{
    margin: 0 30px 0 30px;
    width: 400px;
    transition: transform 0.3s ease;
    @media screen and (max-width: 900px){
        width: 200px;
    }
}

.logo:active {
    transform: scale(0.9);
}

.sticky {
    position: fixed;
    top: 0;
    width: 100%
}