﻿.dropdownNav {
    position: relative;
    display: inline-block;
    align-self: center;
}

.dropdownNav-content {
    display: none;
    position: absolute;
    width: inherit;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    padding: 5px 10px;
    z-index: 1;
    text-align-last: center;
    background-color: rgba(0, 0, 0, 0.9);
    border-style: outset;
    border-color: dimgray;
}

    .dropdownNav-content a {
        width: 130px;
        align-self: center;
        padding: 5px 0px;
        padding-top: 20px;
        text-decoration: none;
        display: block;
    }

    .dropdownNav-content img {
        height: 15px;
        width: 15px;
        float: left;
        align-self: center;
        margin-top: 2px;
    }

.dropdownText {
    width: 180px;
    padding-top: 20px;
    text-transform: none;
}

.dropdownNav:hover
.dropdownNav-content {
    display: block;
    opacity: 0;
    animation-name: dropdown-animation;
    animation-duration: 500ms;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
}

@keyframes dropdown-animation {
    from {
        opacity: 0;
        transform: rotateY(20deg) translateY(-5px)
    }

    to {
        opacity: 100;
        transform: rotate(0deg) translateY(0px)
    }
}

.company-button:hover{
    cursor:pointer;
}