.navbar {
    width: 100%;
    height: 125px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 999;
}
.navbarLogo {
    max-height: 75px;
    width: auto;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}
.navbarHamburguer {
    width: 125px;
    height: 50px;
    position: absolute;
    top: 0;
    left: 15%;
    bottom: 0;
    margin: auto;
    display: none;
    transition: all 0.3s ease;
}
.hamburguerLeft {
    width: 55%;
    height: 100%;
    padding: 10px 0 0 0;
    position: relative;
    float: left;
    transition: all 0.3s ease;
}
.hamburguerLeft div {
    width: 80%;
    height: 2px;
    background: #fff;
    background-color: #fff;
    margin: 8px 0 0 0;
    transition: all 0.3s ease;
}
.hamburguerLeft div:nth-child(2) {
    width: 40%;
}
.hamburguerRight {
    width: 45%;
    height: 100%;
    text-align: center;
    line-height: 50px;
    position: relative;
    float: left;
    transition: all 0.3s ease;
}
.hamburguerRight span {
    font-weight: 200;
    font-style: normal;
    font-size: 16px;
    color: #fff;
    transition: all 0.3s ease;
}
.navbarHamburguer:hover .hamburguerLeft div,
.navbarHamburguer:active .hamburguerLeft div,
.navbarHamburguer:focus .hamburguerLeft div {
    width: 40%;
    margin: 8px auto;
}
.navbarHamburguer:hover .hamburguerLeft div:nth-child(2),
.navbarHamburguer:active .hamburguerLeft div:nth-child(2),
.navbarHamburguer:focus .hamburguerLeft div:nth-child(2) {
    width: 80%;
    margin: 8px auto;
}

.optionsLeft {
    width: 45%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    padding: 45px 0 50px 20%;
    transition: all .3s ease;
}
.optionsLeft ul li {
    display: inline-block !important;
    position: relative;
    cursor: pointer;
    padding: 0 22px 0 22px;
    transition: all 0.3s ease;
}
.optionsLeft ul li::after {
    content: "";
    width: 0;
    height: 2px;
    background: #fff;
    background-color: #fff;
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    margin: auto;
    transition: all 0.3s ease;
}
.optionsLeft ul li a {
    font-size: 20px;
    color: #fff;
    font-weight: 200;
    font-style: normal;
    transition: all 0.3s ease;
}
.optionsLeft ul li:hover::after,
.optionsLeft ul li:focus::after,
.optionsLeft ul li:active::after {
    width: 100%;
    background: #96674a;
    background-color: #96674a;
}

.optionsRight {
    width: 45%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    padding: 45px 0 50px 5%;
    transition: all .3s ease;
}
.optionsRight ul li {
    display: inline-block !important;
    position: relative;
    cursor: pointer;
    padding: 0 22px 0 22px;
    transition: all 0.3s ease;
}
.optionsRight ul li::after {
    content: "";
    width: 0;
    height: 2px;
    background: #fff;
    background-color: #fff;
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    margin: auto;
    transition: all 0.3s ease;
}
.optionsRight ul li a {
    font-size: 20px;
    color: #fff;
    font-weight: 200;
    font-style: normal;
    transition: all 0.3s ease;
}
.optionsRight ul li:hover::after,
.optionsRight ul li:focus::after,
.optionsRight ul li:active::after {
    width: 100%;
    background: #96674a;
    background-color: #96674a;
}

.navbarWhite {
    background: #776d63;
    background-color: #776d63;
    -webkit-box-shadow: 1px 3px 5px 0 rgba(0, 0, 0, 0.24);
    -moz-box-shadow: 1px 3px 5px 0 rgba(0, 0, 0, 0.24);
    box-shadow: 1px 3px 5px 0 rgba(0, 0, 0, 0.24);
}
.noShadow {
    background: none !important;
    background-color: none !important;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
    box-shadow: none !important;
}
.sidebarMain {
    width: 100%;
    height: 0;
    background: #393735;
    background-color: #393735;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 998;
    margin: auto;
    display: none;
}
.sidebarInner {
    width: 100%;
    height: 100%;
    position: relative;
    padding: 0 0 0 0;
}
.sidebarContent {
    width: 100%;
    position: absolute;
    bottom: 2px;
    top: 50px;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 18% 0 0 0;
    text-align: center;
    transition: all 0.3s ease;
}
.sidebarContent ul li {
    display: inline-block !important;
    position: relative;
    cursor: pointer;
    padding: 0 22px 0 22px;
    transition: all 0.3s ease;
}
.sidebarContent ul li::after {
    content: "";
    width: 0;
    height: 2px;
    background: #fff;
    background-color: #fff;
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    margin: auto;
    transition: all 0.3s ease;
}
.sidebarContent ul li a {
    font-size: 60px;
    color: #fff;
    font-weight: 200;
    font-style: normal;
    opacity: 0;
    transition: all 0.3s ease;
}
.sidebarContent ul li a.activePage,
.sidebarContent ul li:hover a,
.sidebarContent ul li:focus a,
.sidebarContent ul li:active a {
    color: #96674a;
}
.sidebarContent ul li:hover::after,
.sidebarContent ul li:focus::after,
.sidebarContent ul li:active::after {
    width: 100%;
    background: #96674a;
    background-color: #96674a;
}
.sidebarFooter {
    width: 100%;
    height: 2px;
    position: absolute;
    padding: 0 0 0 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
}
