header {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 999;
    padding: 1rem 0;
}

.navbar-brand img {
    width: 300px;
}

.navbar {
    justify-content: space-between;
    padding: 0.375rem 0;
}

.header-main__nav {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.menubtn {
    color: var(--white);
    box-shadow: none !important;
    position: relative;
    z-index: 2;
    padding: 0.5rem 1.5rem;
}

.menubtn .icon {
    width: 30px;
    height: 30px;
    margin-left: auto;
}

.menubtn .icon span {
    width: 30px;
    height: 2px;
    background-color: var(--white);
    display: block;
    transition: 0.5s ease;
}

.menubtn .icon span+span {
    margin-top: 7px;    
}

.menubtn .text {
    line-height: 1;
    font-size: 1.25rem;
    font-weight: 700;
}

.nav-active .menubtn .icon span:last-child {
    display: none;
}

.nav-active .menubtn .icon span {
    transform: translate(-4px, 10px) rotate(45deg)
}

.nav-active .menubtn .icon span+span {
    transform: translate(-4px, 1px) rotate(-45deg);
    width: 30px;
}

.menubtn:hover {
    color: var(--primary);
}

.menubtn:hover .icon span {
    background-color: var(--secondary);
}

.nav-fix-st {
    position: fixed;
    right: 0;
    z-index: 1;
    align-items: start;
    height: 100%;
    width: 350px;
    padding-top: 200px;
}

.nav:after,
.nav:before {
    background-color: rgba(20, 21, 26, .6);
    border-bottom-right-radius: 200%;
    content: "";
    height: 0;
    position: fixed;
    right: 0;
    top: 100px;
    transition: border-radius .8s linear, width .6s cubic-bezier(.77, 0, .175, 1), height .6s cubic-bezier(.77, 0, .175, 1);
    width: 0;
    z-index: -1
}

.nav:after {
    background-color: #09090c;
    box-shadow: 6px 7px 28px 0 hsla(0, 0%, 6%, .3);
    transition-delay: 0s
}

.nav:before {
    transition-delay: .2s
}

.nav__content {
    position: relative;
    right: 0;
    text-align: left;
    top: 0;
    visibility: hidden;
    width: 0;
    z-index: 9
}

.nav__list {
    margin: 0;
    padding: 0;
    z-index: 99
}

.nav__list-item {
    color: #fff;
    display: block;
    font-size: 13px;
    letter-spacing: 2px;
    line-height: 1.2;
    margin-top: 0;
    opacity: 0;
    overflow: hidden;
    position: relative;
    text-align: left;
    -webkit-transform: translate(30px);
    transform: translate(30px);
    transition: opacity .2s, transform .2s, -webkit-transform .2s
}

.nav__list-item a {
    color: hsla(0, 0%, 100%, .8);
    cursor: pointer;
    display: block;
    overflow: hidden;
    padding-bottom: 7px;
    padding-left: 50px;
    padding-top: 7px;
    position: relative;
    text-decoration: none;
    transition: .2s linear;
    z-index: 2;
    font-size: 1.5rem;
    font-weight: 600;
}

.nav__list-item a:after {
    background-color: var(--primary);
    content: "";
    height: 0;
    left: 0;
    opacity: 0;
    position: absolute;
    top: 50%;
    transition: .2s linear;
    width: 5px;
    z-index: 1
}

.nav__list-item a:hover:after,
.nav__list-item.active-nav a:after {
    height: 100%;
    opacity: 1;
    top: 0
}

body.nav-active .nav__content {
    visibility: visible;
    width: 350px;
}

body.nav-active .menu-icon__line {
    background-color: #fff;
    -webkit-transform: translate(0) rotate(-45deg);
    transform: translate(-4px, 1px) rotate(-45deg);
    width: 30px
}

body.nav-active .menu-icon__line-left {
    -webkit-transform: translate(2px, 4px) rotate(45deg);
    transform: translate(-4px, 10px) rotate(45deg);
    width: 30px
}

body.nav-active .menu-icon__line-right {
    float: right;
    -webkit-transform: translate(-3px, -3.5px) rotate(45deg);
    transform: translate(-3px, -3.5px) rotate(45deg);
    width: 15px
}

body.nav-active .nav:after,
body.nav-active .nav:before {
    border-radius: 0;
    height: 100%;
    right: 0;
    top: 0;
    width: 350px;
}

body.nav-active .nav:after {
    transition-delay: .1s
}

body.nav-active .nav:before {
    transition-delay: 0s
}

body.nav-active .nav__list-item {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    transition: opacity .3s, transform .3s, color .3s, -webkit-transform .3s
}

body.nav-active .nav__list-item:nth-child(0) {
    transition-delay: .7s
}

body.nav-active .nav__list-item:first-child {
    transition-delay: .8s
}

body.nav-active .nav__list-item:nth-child(2) {
    transition-delay: .9s
}

body.nav-active .nav__list-item:nth-child(3) {
    transition-delay: 1s
}

body.nav-active .nav__list-item:nth-child(4) {
    transition-delay: 1.1s
}

body.nav-active .nav__list-item:nth-child(5) {
    transition-delay: 1.2s
}

body.nav-active .form-inline .searchBtn {
    transition-delay: 1.3s
}

body.nav-active .form-inline .cart {
    transition-delay: 1.4s
}

body.nav-active .nav__list-item:nth-child(8) {
    transition-delay: 1.5s
}

body.nav-active .nav__list-item:nth-child(9) {
    transition-delay: 1.6s
}

body.nav-active .nav__list-item:nth-child(10) {
    transition-delay: 1.7s
}

body.nav-active .nav__list-item:nth-child(11) {
    transition-delay: 1.8s
}

body.nav-active .nav__list-item:nth-child(12) {
    transition-delay: 1.9s
}

body.nav-active .nav__list-item:nth-child(13) {
    transition-delay: 2s
}

body.nav-active .nav__list-item:nth-child(14) {
    transition-delay: 2.1s
}

body.nav-active .nav__list-item:nth-child(15) {
    transition-delay: 2.2s;
}