.nav {
    width: 100%;
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    flex-flow: row;
    z-index: 999999999;
    background-color: black;
}
.left-nav {
    display: inline-block;
    flex: 0 1 auto;
    width: 40%;
}
.left-nav img {
    width: 80px;
    display: block;
}
.left-nav a {
    display: block;
    margin: 30;
    margin-left: 50px;
}
.right-nav {
    flex: 1 1 auto;
    display: inline-block;
    text-align: right;
    padding-right: 100px;
}
.nav-lnk {
    display: inline-block;
    padding: 10px 15px;
    margin: 30px 20px;
    font-family: "Lato", sans-serif;
    font-size: 15px;
    color: white;
    font-weight: 400;
    text-decoration: none;
}
.nav-lnk:hover {
    text-decoration: underline;
}
.ham-lnk {
    display: none;
    font-size: 30px;
}
.ham-lnk button, .close-ar button {
    color: white;
    border: none;
    background-color: black;
    outline: none;
    padding: 20px 30px;
    transform: scale(1.2);
}
.nav-link-cont {
    width: 100%;
    background-color: black;
    z-index: 999999999;
    left: 100%;
    display: none;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
}
.close-ar {
    width: 100%;
    display: block;
    text-align: right;
    color: white;
    overflow: hidden;
}
.close-ar img {
    float: left;
    position: relative;
    height: 30px;
    margin: 20px;
    margin-left: 50px;
}
.close-ar button {
    font-size: 30px;
    padding-bottom: 20px !important;
    display: inline-block;
}
.nav-link-list {
    width: 100%;
    display: block;
}
.nav-link-list a {
    width: 100%;
    display: block;
    padding: 30px 0;
    color: white;
    text-decoration: none;
    border-top: solid 1px #ccc;
    text-align: center;
    font-size: 20px;
    font-family: 'Lato', sans-serif;
}
@media screen and (max-width: 1100px){
    .nav {
        background-color: black !important;
        z-index: 999999989;
    }
    .nav-link-cont {
        display: block;
        left: 100%;
        transition: 0.2s;
    }
    .right-nav {
        display: none;
    }
    .left-nav {
        width: 100%;
        display: block;
        text-align: center;
    }
    .left-nav a {
        justify-content: center;
        text-align: center;
        display: inline-block;
    }
    .ham-lnk {
        display: block;
        position: absolute;
        top: 10px;
        right: 10px;
    }
    
}