.navbar {
    height: 10%;
    color: white;
    position: absolute;
    border: solid 0;
    background-color: var(--prim);
    width: 100%;
    z-index: 10;
    display: inline-block;
}

.navbarLogo {
    height: 100%;
    width: 40%;
    display: inline-block;
    float: left;
    position: absolute;
}
.navbarLogo img {
    height: 100%;
    width: 10vh;
}
.navbarCol {
    height: 100%;
    width: 50%;
    display: inline-block;
    right: 0;
    position: absolute;
}

@media screen and (max-width: 600px) {
    .navbarLogo img {
        height: 100%;
        width: 10vh;
    }
    .navbarCol {
        width: 60%;
    }
    .mob {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        right: 0;
        width: 100%;
        height: 100%;

    }
    .pc {
        display: none !important;
    }

    /* Individual Styles */
    .hamburgermenu {
        height: 50%;
        margin-left: auto;
        border: solid 2px transparent;
        font-size: 1.2rem;
        color: white;
        background-color: transparent;
        transform: translateY(50%);
    }
    .dropmenu {
        position: fixed;
        top:10%;
        left:0;
        width:100%;
        height:90%;
        background-color: #114856;
        z-index: 5;
        margin: 0;
        border: solid 0;
        display: none;
        padding: 0;
    }
    .prodNameHeader {
        color: white;
        font-size: 32px;
        margin-left: 15px;
        top: 10%;
    }

    .prodNameItem {
        color: var(--primtxt);
        font-size: 18px;
        margin-left: 22px;
        text-decoration: none !important;
    }
    .hamMobBack {
        border: solid 0;
        background: transparent;
        color: var(--primtxt);
        font-size: 18px;
        position: absolute;
        margin-top: 20px;
        margin-left: 15px;
    }
}
@media screen and (min-width: 600px) {
    .mob {
        display: none !important;
    }
    .pc {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        right: 0;
        width: 100%;
        height: 100%;
    }
    .pc a {
        color: var(--primtxt);
        font-size: 1.2rem;
        float: right;
        text-align: center;
        padding: 30px 16px;
        text-decoration: none;
        cursor: pointer;
    }
    .pc button {
        color: var(--primtxt);
        cursor: pointer;
        font-size: 1.2rem;
        float: right;
        text-align: center;
        padding: 30px 16px;
        text-decoration: none !important;
        border: solid 0;
        background-color: transparent;
    }
    .dropdown-d-content {
        float: right;
        overflow: hidden;
    }
    .dropdown-d-content .drop-d-btn {
        cursor: pointer;
        font-size: 16px;
        border: none;
        outline: none;
        color: white;
        padding: 30px 16px;
        background-color: inherit;
        font-family: inherit;
        margin: 0;
    }
    .dropdown-d-content {
        display: none;
        position: fixed;
        background-color: #114856;
        top: 5em;
        min-width: 160px;
        box-shadow: 0px 30px 16px 0px rgba(0,0,0,0.2);
        z-index: 1;
    }

    .dropdown-d-content a {
        float: none;
        color: var(--primtxt);
        padding: 12px 16px;
        text-decoration: none;
        display: block;
        text-align: left;
    }
    .show {
        display: block;
    }
    .dropdown-s-content {
        float: right;
        overflow: hidden;
    }
    .dropdown-s-content .drop-s-btn {
        cursor: pointer;
        font-size: 16px;
        border: none;
        outline: none;
        color: white;
        padding: 30px 16px;
        background-color: inherit;
        font-family: inherit;
        margin: 0;
    }
    .dropdown-s-content {
        display: none;
        position: fixed;
        top: 5em;
        background-color: #114856;
        min-width: 160px;
        box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
        z-index: 5;
    }
    .dropdown-s-content a {
        float: none;
        color: var(--primtxt);
        padding: 12px 16px;
        text-decoration: none;
        display: block;
        text-align: left;
    }
    .showblock {
        display: block;
    }
}
