.container-category-parallax {
    position: relative;
    width: 100%;
    margin-top: -60px;
    padding: 150px 16px;
    height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-sizing: border-box;
    z-index: 1;
}

.container-category-parallax .parallax-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.container-category-parallax .parallax-bg-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.container-category-parallax .parallax-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.container-category-parallax .parallax-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 1216px;
}

.container-category-parallax .parallax-text-orange {
    color: #ed6e04;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    display: block;
    margin-bottom: 8px;
}

.container-category-parallax .parallax-text-white {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    display: block;
}

@media (min-width: 1024px) {
    .container-category-parallax {
        margin-top: -72px;
        padding: 230px 16px;
        height: auto;
        min-height: 800px;
    }

    .container-category-parallax .parallax-text-orange {
        font-size: 64px;
    }

    .container-category-parallax .parallax-text-white {
        font-size: 64px;
    }
}