.about_home {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.about_info_home_header,
.about_info_home,
.about_image_home {

    margin: 0 auto;
}

.about_wrapper_home {
    /* position: relative; */
    margin: 100px 0;
}


.about_info_home_header h2,
.about_info_home p {
    text-align: left;
    padding: 10px;
    font-weight: bold;
    font-family: 'Montserrat', 'Arial', sans-serif;
    color: var(--text_black);
    font-size: larger;
}

.about_info_home_header {
    width: 40%;
}

.about_info_home {
    transform: translate(40%, 70%);
    width: 40%;
}

.about_image_home {
    overflow: hidden;
    border-radius: 20px;

    position: absolute;
    z-index: -1;
    top: -20%;
    right: 30%;
    /* background-color: aqua; */
    width: 50%;
}

.about_image_home img {
    width: 100%;
    height: 100%;
    object-fit: cover;

}

.about_image_home_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.582);
    z-index: 100;

}