#category-top-banner .banner {
    height: 380px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: var(--box-shadow);
    margin-bottom: 20px;
    border-radius: var(--border-radius);
    margin: 0;
    position: relative;
}

#category-top-banner .banner>img {
    position: absolute;
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: var(--border-radius);
}

#category-top-banner .banner>div {
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#category-top-banner .banner .button {
    display: flex;
    align-items: center;
    justify-content: end;
}

#category-top-banner .banner .button p {
    text-transform: uppercase;
    font-size: 1.5em;
    color: white;
    margin-bottom: 0;
}

#category-top-banner .banner .button img {
    margin-left: 10px;
}

#category-top-banner .banner p.banner-title {
    font-size: 2em;
    margin: 1em 0 1em 0;
    font-family: var(--font-bold);
    color: white;
    line-height: 1em;
}

#category-top-banner .banner p.banner-price-old {
    color: darkgray;
    font-size: 1.2em;
    margin-bottom: 10px;
    margin-top: 10px;
    text-decoration: line-through;
    color: white;
}

#category-top-banner .banner p.banner-price {
    color: white;
    font-size: 2.1em;
    font-family: var(--font-bold);
}

@media(max-width:1330px) {
    #category-top-banner .banner {
        margin-top: 15px;
    }
}

@media(max-width:768px) {
    #category-top-banner .banner {
       display: none;
    }
}