/* 
    Created on : 30 Apr 2017, 7:10:10 PM
    Author     : Joshua Sello
*/
.nav_bar {
    position: absolute;
    top: 0px;
    left: 0px;
    height: 60px;
    width: calc(100vw - 0px);
    color: #fff;//#999;
    z-index: 100;
}
.nav_bar a {color: #fff;}
.fixed {
    position: fixed;
    box-shadow:2px 5px 20px rgba(0, 0, 0,.05);
    background: #fff;
    color: #999
}
.logo_hold {
    position: relative;
    float: left;
    padding: 0px 20px 0px 20px;
    height: 100%;
    width: max-content;
    text-align: left;
    font-family: 'Martel', serif;
    font-size: 18px;
    line-height: 20px;
    display: none;
}
.logo_hold span{color: #C6B45E}
.nav_item_hold {
    position: relative;
    margin-right: 20px;
    float: right;
    height: 100%;
    width: max-content;
}
.nav_item {
    position: relative;
    float: left;
    height: 100%;
    padding: 0px 20px 0px 20px;
    width: max-content;
    cursor: pointer;
    transition-duration: .5s;
    text-transform: uppercase;
    font-size: 15px;
    opacity: .7
}
.nav_item:hover hr{transition-duration: .5s;top: 25px; display: block}
.nav_item:hover {opacity: 1;} 
.nav_item hr {
    position: relative;
    transition-duration: .5s;
    display: none;
    width: 50%;
    border: 1px #C6B45E solid;
}
.contact_hold {
    padding: 0px 20px 0px 20px;
    background: #C6B45E;
    font-size: 12px;
}
.contact_hold:hover {opacity: .7}
.contact_hold span  {
    margin: 0px;
    font-size: 20px;
    font-family: 'Martel', serif;
    font-weight: bold;
}

.menu_btn {
    position: fixed;
    top: 0px;
    right: 20px;
    height: 50px;
    cursor: pointer;
}
.menu {
    position: fixed;
    top: 0px;
    right: 0px;
    height: calc(100vh - 100px);
    padding: 50px;
    width: calc(100vw - 100px);
    background: #fff;
    color: #666;
}
.menu a {color: #666;}
.menu_item {
    position: relative;
    margin-top: 60px;
    font-size: 20px;
    height: 50px;
    width: max-content;
}
.menu, .m_close,.m_open{display: none;}
.m_open {background: rgba(0,0,0,.3)}
@media screen and (min-width: 0px) and (max-width:780px) {
    .nav_bar{display: none;}
    .m_open{display: block}
}