@media screen and (min-width: 640px) {
    .category__banner {
        width: 100%;
        object-fit: cover;
    }

    .category__banner-overlay {
        background-image: linear-gradient(0deg, black, transparent);
        position: absolute;
        inset: 0;
        z-index: 2;
    }
    
    .category__banner-container {
        position: relative;
    }
    
    .category__page-title {
        position: absolute;
        z-index: 3;
        color: #fff;
        top: 0;
        left: 50%;
        transform: translate(-50%, 250%);
        font-size: 2rem;
    }
    
    .category__flex-page {
        display: flex;
        flex-direction: column;
    }
}

@media screen and (min-width: 1140px) {
    .category__page-title {
        font-size: 2.24rem;
    }
}

.company__adress {
    max-width: 300px;
    display: flex;
    flex-direction: column;
}

.company__adress p {
    margin: 0;
}

.dev__message {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0;
    background-color: #000;
    background-image: linear-gradient(180deg, #ff000099, transparent);
}

.dev__message-text {
    margin: 0;
    padding: 20px;
    color: #fff;
    font-weight: 900;
    text-align: center;
    font-size: 1.1rem;
    max-width: 80%;
}