.about_image {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.about_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about_image .about_image_content {
    width: 50%;
    display: flex;
}

.about_image img {
    border-radius: 2px;
    width: 600px;
    height: auto;
    filter: blur(10px);
    opacity: 0;
    animation: fadeIn 4s forwards;
}

@media screen and (max-width: 1024px) {
    .about_image {
        flex-direction: column;
        gap: 25px;
    }

    .about_image .about_image_content {
        width: 100%;
    }

    .about_image img {
        height: auto;
        width: 100%;
        margin-bottom: 15px;
    }
}