.nav {
    width: 100%;
    position: fixed;
    height: 85px !important;
    border: none;
    padding: 15px 40px;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
    z-index: 99999;
    background-color: #ddd5cb;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.logo-nav img{
    width: 28px;
}

.contact-icons {
    display: flex;
    align-items: center;
    gap:20px;
}


.contact-icons a{
    width: 30px;
}

#left-border {
    border-left: 1px solid #fff;
    padding: 5px 10px
}

.menu {
    display: flex;
    align-items: center;
    gap:20px;
    z-index: 999;
}

.menu span {
    margin-right: 8px
}

.btn-nav {
    border: none;
    background: transparent;
    cursor: pointer
}



.icon-bar {
    display: block;
    margin: 9px 0;
    width: 40px;
    height: 2px;
    background-color: var(--ws-brown);
}

.btn-nav:hover .icon-bar {
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -ms-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
    background-color: var(--ws-gold);
}

.nav-content {
    position: fixed; 
    top: -100%;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--ws-brown); 
    backdrop-filter: blur(10px);
    opacity: 96%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    z-index: 3;
}

.nav-list {
    list-style: none;
    padding: 0;
	position: relative;
    top: 0% ;
    
    
}

.nav-list img{
    width: 200px;
}


.item-anchor:after {
    content: "";
    position: absolute;
    width: 3px;
    height: 3px;
    left: 0;
    bottom: 0;
    z-index: 9;
    background: transparent;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -ms-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease
}

.item-anchor {
    color: #fff;
    font-size: 3rem;
    position: relative;
    text-decoration: none;
    padding: 10px;
    font-family: 'KeplerStd-LightExtDisp';
}

.item-anchor:hover,
.item-anchor:focus {
    color: var(--ws-gold);
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -ms-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease
}

.item-anchor:hover:after,
.item-anchor:focus:after {
    width: 100%;
    background: var(--ws-brown);
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -ms-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease
}

.nav-item {
    margin: 40px auto;
    text-align: center
}

.animated {
    display: block
}

.animated:hover .icon-bar,
.animated:focus .icon-bar {
    background-color: var(--ws-brown);
}

.animated:focus {
    cursor: pointer;
    z-index: 9999
}

.middle {
    margin: 0 auto
}

.icon-bar {
    -webkit-transition: all .7s ease;
    -moz-transition: all .7s ease;
    -ms-transition: all .7s ease;
    -o-transition: all .7s ease;
    transition: all .7s ease;
    z-index: 999999
}

.animated .icon-bar {
    z-index: 999999;
    background-color: var(--ws-brown);
}

.animated .top {
    -webkit-transform: translateY(10px) rotateZ(45deg);
    -moz-transform: translateY(10px) rotateZ(45deg);
    -ms-transform: translateY(10px) rotateZ(45deg);
    -o-transform: translateY(10px) rotateZ(45deg);
    transform: translateY(10px) rotateZ(45deg)
}

.animated .bottom {
    -webkit-transform: translateY(-12px) rotateZ(-45deg);
    -moz-transform: translateY(-12px) rotateZ(-45deg);
    -ms-transform: translateY(-12px) rotateZ(-45deg);
    -o-transform: translateY(-12px) rotateZ(-45deg);
    transform: translateY(-12px) rotateZ(-45deg)
}

.animated .middle {
    width: 0
}

@keyframes showNav {
    from {
        top: -100%
    }

    to {
        top: 0
    }
}

@-webkit-keyframes showNav {
    from {
        top: -100%
    }

    to {
        top: 0
    }
}

@-moz-keyframes showNav {
    from {
        top: -100%
    }

    to {
        top: 0
    }
}

@-o-keyframes showNav {
    from {
        top: -100%
    }

    to {
        top: 0
    }
}

.showNav {
     -webkit-animation: showNav 2s ease forwards; 
     -moz-animation: showNav 2s ease forwards; 
     -o-animation: showNav 2s ease forwards; 
     animation: showNav 2s ease forwards 
}

@keyframes hideNav {
    from {
        top: 0
    }

    to {
        top: -100%
    }
}

@-webkit-keyframes hideNav {
    from {
        top: 0
    }

    to {
        top: -100%
    }
}

@-moz-keyframes hideNav {
    from {
        top: 0
    }

    to {
        top: -100%
    }
}

@-o-keyframes hideNav {
    from {
        top: 0
    }

    to {
        top: -100%
    }
}

.hideNav {
    -webkit-animation: hideNav 1s ease forwards;
    -moz-animation: hideNav 1s ease forwards;
    -o-animation: hideNav 1s ease forwards;
    animation: hideNav 1s ease forwards
}

.hidden {
    display: none
}

.ua {
    position: absolute;
    right: 20px;
    bottom: 20px;
    color: #fff;
    font-size: 2em
}

.fa {
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -ms-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease
}

.ua:hover .fa {
    color: #17BEBB;
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -ms-transform: scale(1.5);
    -o-transform: scale(1.5);
    transform: scale(1.5);
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -ms-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease
}

#contact-btn{
    background-color: var(--ws-brown);
    width: 120px;
    height: 40px;
    font-family: 'KeplerStd-LightExtDisp';
    font-size: 1.4rem;
    transition-property: background-color, color;
    transition: .7s ease;
}

#contact-btn:hover{
    background-color: var(--ws-gold);
    color: var(--ws-brown);
}

#center-img{
    margin-right: 130px;
    margin-top: 10px;
}


@media only screen and (max-width: 600px){
    .nav-list {
        top: 3%
    }

}