.stove {
    aspect-ratio: 16/9;
    
    .container {
        height: 100%;
        width: 100%;
        max-width: 1920px !important;
    }

    .cooperation__content {
        width: fit-content !important;
        margin-left: 0 !important;
        margin-right: auto !important;
    }
}

@media only screen and (max-width: 1100px) {
    .stove {
        aspect-ratio: unset;

        .container {
            padding: 96px 48px !important;
        }

        .cooperation__content {
            width: 50% !important;

            p {
                br {
                    display: none;
                }
            }
        }
    }
}

@media only screen and (max-width: 576px) {
    .stove {
        
        .container {
            padding: 64px 24px !important;
            padding-bottom: 256px !important;

            .cooperation__content {
                width: 100% !important;
                padding: 32px 24px !important;
            }
        }
    }

}