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

.menu span {
    margin-right: 8px
}

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

/* .ac-list-nav{
    pointer-events: none;
} */

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

.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(--bg-therdy);
}

.nav-content {
    position: fixed; 
    top: 0;
    bottom: 0;
    left: 0;
    right: -200%;
    width: 100vw;
    overflow: scroll;
    background-image: url('../images/webp/bg/abstract-bg2.jpg');
    background-position: center;
    background-size: cover;
    /*backdrop-filter: blur(10px);*/
    /*opacity: 1;*/
    display: none;
    justify-content: center;
    align-items: start;
    height: 100%;
    z-index: 1;
}

.nav-list {
    list-style: none;
    padding: 0;
	position: relative;
    margin-top: 40px ;
    margin-bottom: 40px;
}

.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, .sub-nav.mobile-sub-nav {
    color: #fff;
    font-size: 24px;
    text-transform: uppercase;
    position: relative;
    text-decoration: none;
    padding: 5px 10px;
}

@media (min-width: 768px) {
    .item-anchor, .sub-nav.mobile-sub-nav {
        font-size: 30px;
        padding: 10px 10px;
    }
}

.item-anchor:hover,
.item-anchor:focus {
    /*color: var(--primary-color);*/
    /*-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(--primary-color);
    -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: 20px auto;
    text-align: center
}
.nav-item.nav-open {
    margin-bottom: 0;
}

.animated {
    display: block
}

.animated .icon-bar {
    background-color: var(--bg-therdy) !important;
}

.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(--background-white);
}

.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 {
        right: -200%
    }

    to {
        right: 0
    }
}

@-webkit-keyframes showNav {
    from {
        right: -200%
    }

    to {
        right: 0
    }
}

@-moz-keyframes showNav {
    from {
        right: -200%
    }

    to {
        right: 0
    }
}

@-o-keyframes showNav {
    from {
        right: -200%
    }

    to {
        right: 0
    }
}

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

@keyframes hideNav {
    from {
        right: 0
    }

    to {
        right: -200%
    }
}

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

    to {
        right: -200%
    }
}

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

    to {
        right: -200%
    }
}

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

    to {
        right: -200%
    }
}

.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
}

#center-img {
    width: 150px;
    margin-right: 80px;
    padding: 10px;
}



.arrow-nav {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-left: 2px solid var(--bg-secondary);
    border-bottom: 2px solid var(--bg-secondary);
    transform: rotate(-45deg);
    position: relative;
    top: -3px;
    margin-right: 5px;
    -webkit-transition: all 0.1s ease;
    -moz-transition: all 0.1s ease ;
    -ms-transition: all 0.1s ease ;
    -o-transition: all 0.1s ease ;
    transition: all 0.1s ease ;
}


.sub-nav {
    /*display: none;*/
    visibility: hidden;
    /*padding-left: 20px;*/
    position: absolute;
    top: calc(100% + 10px);
    right: 10px;
    background: var(--bg-primary);
    width: 100%;
    min-width: 260px;
    padding: 10px 10px;
    border-radius: 10px;
    -webkit-transition: opacity 0.2s ease ;
    -moz-transition: opacity 0.2s ease ;
    -ms-transition: opacity 0.2s ease ;
    -o-transition: opacity 0.2s ease ;
    transition: opacity 0.2s ease ;
    opacity: 0;
}

.sub-nav.mobile-sub-nav {
    position: relative;
    display: none;
    height: 0;
    padding: 0px !important;
    background: none;
}
.sub-nav.mobile-sub-nav li {
    margin: 20px auto !important;

}

.box-shadow {
    -webkit-box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.2);
}

li.nav-open > .sub-nav.mobile-sub-nav,
li.current-parent > .sub-nav.mobile-sub-nav {
    height: auto;
    display: block;
    visibility: visible;
    opacity: 1;
}

@media (max-width: 1200px) {
    .sub-nav {

        right: auto;
        left: 0;
        min-width: 0;
    }
}
.sub-nav li {
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
}
.sub-nav li a {
    padding: 10px 10px;
    display: block;
}
.mobile-sub-nav.sub-nav li a {
    padding: 5px 10px;
}
li.nav-open {
    position: relative;
}
li.nav-open > .sub-nav {
    visibility: visible;
    opacity: 1;
}

li.nav-open .arrow-nav{
    transform: rotate(135deg);
    top: 3px;
}

.nav-list .arrow-nav {
    top: -6px;
}
.nav-list .nav-open .arrow-nav {
    top: 0px;
}


@media(max-width: 925px) {
    body.overflow {
        overflow: hidden;
    }
}