.content_sectionM01 {
    width: 100%;
    height: auto;
    padding: 70px 0;
}

.content_sectionM01 .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.content_sectionM01 .text {
    width: 45%;
}

.content_sectionM01 .imgM01 {
    width: 45%;
    height: 450px;
    background-color: var(--color-background-light-secondary);
    border-radius: var(--border-radius-md);
    overflow: hidden;
}

.content_sectionM01 .imgM01 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content_sectionM01 .order02 {
    order: -1;
}


/* CSS RESPONSIVE */
@media (max-width: 900px) {
    .content_sectionM01 {
        padding: 40px 0;
    }

    .content_sectionM01 .container {
        max-width: 700px;
        flex-wrap: wrap;
    }
    
    .content_sectionM01 .text {
        width: 100%;
        margin-bottom: 30px;
    }

    .content_sectionM01 .order02 {
        order: 1;
    }
    .content_sectionM01 .imgM01 {
        width: 100%;
        height: 300px;
    }
}

@media (max-width: 700px) {
    
}