#topnav {
    position: fixed;
    width: 100%;
    height: 120px;
    transition: 0.4s;
    top: 0;
    left: 0;
    z-index: 99;
    background-image: url("../res/banner/banner_cropped.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    border-bottom: 2px solid #1d1d1d;
}

.navbuttons {
    width: auto;
    position: absolute;
    bottom: 0;
    right: 0;
}

.navbuttons a {
    font-family: 'Montserrat', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    float: left;
    color: #f2f2f2;
    text-align: center;
    padding: 20px 30px;
    text-decoration: none;
    font-size: 1.2rem;
    text-shadow: 0 0 3px #000;
}

#title {
    transition: 0.4s;
    float: left;
    height: 100%;
    width: auto;
}

.navbuttons a:hover {
    background-color: #ddd;
    color: black;
}

.navbuttons a.active {
    background-color: rgba(0, 146, 85, 0.623);
    color: white;
}

.navbuttons a.active:hover {
    background-color: #ddd;
    color: black;
}

.productsDropBtn {
    color: white;
    padding: 16px;
    font-size: 16px;
    border: none;
    cursor: pointer;
}

.productsDropBtn:hover, .productsDropBtn:focus {
    background-color: #2980B9;
}

.dropdown {
    display: flex;
    float: left;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 40px;
    background-color: #f1f1f1;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content a {
    font-weight: 500;
    float: none;
    text-align: left;
    color: black;
    height: auto;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 1rem;
    text-shadow: none;
    margin: 0;
}

.dropdown-content a:hover {
    background-color: #ddd;
    border-left: 2px solid black;
}

.show {display:block;}

@media screen and (max-width: 1120px) {
    #title {
        height: 50%;
    }

    .navbuttons {
        width: 100%;
    }

    .navbuttons a {
        padding-left: 0;
        padding-right: 0;
        width: 16.6%;
    }

    .dropdown-content a {
        width: 100% !important;
    }
}

@media screen and (max-width: 850px) {

    .navbuttons a {
        font-size: 0.7rem;
        width: 16.6%;
    }

    .dropdown-content a {
        font-size: 0.7rem;
        width: 100% !important;
    }

    #title {
        margin: auto
    }
}

a::-moz-selection {
    color: none;
    background: #00000000;
  }
  
a::selection {
    color: none;
    background: #00000000;
}