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

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

.content_section .text {
    width: 45%;
}

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

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

.content_section .order02 {
    order: -1;
}


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

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

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

@media (max-width: 700px) {

}

/* ---------------------------------- */

.about_content {
    width: 100%;
    height: auto;
}

.about_content p {
    font-size: 16px;
    margin: 15px 0;
}

.img_about {
    width: 45%;
    height: auto;
}

.img_about .cover {
    width: 100%;
    height: 450px;
    border-radius: var(--border-radius-md);
    overflow: hidden;
}

/* CSS RESPONSIVE */
@media (max-width: 900px) {

    .img_about {
        width: 100%;
    }
    
    .img_about .cover {
        width: 100%;
        height: 300px;
    }
}


.boxM07 {
    width: 100%;
    height: auto;
    padding: 25px;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    background-color: #FFFFFF;
    /* margin: 30px auto; */
}

.boxM07 h4 {
    font-size: 24px; 
    line-height: 30px; 
    font-weight: 500; 
    margin: 15px 0;
    color: var(--color-text-dark);
}

.boxM07 p {
    color: var(--color-text);
    font-size: 16px;
}

.boxM07 p a {
    color: var(--color-text);
}

.boxM07 i {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    background-color: var(--color-background-light-secondary);
    border-radius: var(--border-radius-sm);
    font-size: 20px;
    margin-bottom: 10px;
}