/*------------------------------------------------
  17. Section Nav
-------------------------------------------------*/
/*My Nav CSS*/
.nav-wrapper {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}
.nav-wrapper .section-nav.fixed {
    position: fixed;
    width: 20%;
    height: auto;
    top: 20px;
    left: auto;
}
@keyframes fadeInTop{
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}
.nav-wrapper .section-nav{
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5.1px);
    background: rgb(178 176 176 / 30%);
    border-radius: 0.5em;
    padding: 25px 20px;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.nav-wrapper .section-nav .navbar-menu li {
    display: block;
    width: 100%;
}
.nav-wrapper .section-nav .navbar-menu{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    row-gap: 20px;
}

.nav-wrapper .section-nav .navbar-menu li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    border-radius: 50px 0px 0px 50px;
    position: relative;
    height: 35px;
}

.nav-wrapper .section-nav .navbar-menu li a span {
    text-transform: uppercase;
    color: var(--primary-color);
    font-weight: 500;
    font-size: 15px;
    transition: all .5s ease-in-out;
}
/*.nav-wrapper .section-nav .navbar-menu li a i {*/
/*    background-color: var(--primary-color);*/
/*    border-radius: 50%;*/
/*    width: 40px;*/
/*    height: 40px;*/
/*    color: var(--primary-color);*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*}*/

.nav-wrapper .section-nav .navbar-menu li a:before,
.nav-wrapper .section-nav .navbar-menu li a:after {
    position: absolute;
    width: 100%;
    content: '';
    height: 100%;
    right: 0;
    top: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.nav-wrapper .section-nav .navbar-menu li a:before {
    content: '';
    font-family: "Font Awesome 5 Free";
    font-weight: 400;
    color: var(--primary-color);
    font-size: 20px;
}
.nav-wrapper .section-nav .navbar-menu li:first-child a:before{
    content: '\f2bb';
}
.nav-wrapper .section-nav .navbar-menu li:nth-child(2) a:before{
    content: '\f249';
    font-weight: 700;
}
.nav-wrapper .section-nav .navbar-menu li:nth-child(3) a:before{
    content: "\f0b1";
    font-weight: 900;
}
.nav-wrapper .section-nav .navbar-menu li:nth-child(4) a:before{
    content: "\f03e";
}
.nav-wrapper .section-nav .navbar-menu li:last-child a:before{
    content: "\f098";
    font-weight: bold;
}

.nav-wrapper .section-nav .navbar-menu li a::after {
    width: 35px;
    height: 35px;
    animation: translateRotate 10s linear infinite;
    top: 1px;
    right: -6px;
    opacity: 0;
    border: 1px dashed var(--primary-color);
    border-radius: 50%;
    background: transparent;
    transition: ease-out 0.2s;
}
.nav-wrapper .section-nav .navbar-menu li a:hover, 
.nav-wrapper .section-nav .navbar-menu li a.active:after{opacity: 1;}

@keyframes translateRotate{
    0% {
    -webkit-transform:  rotate(0);
    transform: rotate(0);
    }
    100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
    }
}

