.nav-promo {
    position: fixed;
    width: 100%;
    height: 40px;
    background-color: rgba(30, 26, 34, 0.71);
    backdrop-filter: blur(20px);
    display: flex;
    justify-content: center;
    flex-direction: row;
    z-index: -1;
    align-items: center;
    top: 60px;
}

.nav-promo h1 {
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    font-family: Poppins, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', 'Liberation Sans', sans-serif;
    cursor: pointer;
}

.nav-promo a {
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    font-family: Poppins, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', 'Liberation Sans', sans-serif;
    cursor: pointer;
}


.offers .offers-list .offer-item.promo {
    position: relative;
}

.offers .offers-list .offer-item.promo::before {
    z-index: 1;
    content: "-30%";
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #9264c7;
    color: #fff;
    padding: 5px 10px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 9px;
    font-size: 1rem;
    font-family: Poppins, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', 'Liberation Sans', sans-serif;
    transition: all cubic-bezier(.46, .43, .1, .99) 0.5s;
}

.offers .offers-list .offer-item.promo:hover::before {
    transform: scale(1.1) translate(-7px, 5px);
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.offers .offers-list .offer-item.promoblack {
    position: relative;
}

.offers .offers-list .offer-item.promoblack::before {
    z-index: 1;
    content: "-50%";
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #9264c7;
    color: #fff;
    padding: 5px 10px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 9px;
    font-size: 1rem;
    font-family: Poppins, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', 'Liberation Sans', sans-serif;
    transition: all cubic-bezier(.46, .43, .1, .99) 0.5s;
}

.offers .offers-list .offer-item.promoblack:hover::before {
    transform: scale(1.1) translate(-7px, 5px);
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}


.price .cut {
    font-weight: 200;
    color: white !important;
    text-decoration: line-through;
}

@media screen and (max-width: 1220px) {
    .nav-promo h1 {
        font-size: 1.5vw;
    }
}

@media screen and (max-width: 678px) {
    .nav-promo h1 {
        font-size: 1.8vw;
    }
}


@media screen and (max-width: 410px) {
    .nav-promo h1 {
        font-size: 1.9vw;
    }
}
