#about {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

#about-block {
    width: 80%;
    text-align: justify;
    font-size: 20px;
}

#about img {
    background: radial-gradient(circle at center, rgba(77, 162, 232, 1), rgba(77, 162, 232, 0) 60%);
    padding: 100px;
    width: 200px;
}

#about-mobile-images {
    display: none;
}

@media (max-width: 768px) {
    #about {
        flex-direction: column;
    }

    #about-block {
        width: 100%;
    }

    #about-block p {
        font-size: 4vw;
    }

    #about-images {
        display: none;
    }

    #about-mobile-images {
        display: flex;
        justify-content: center;
    }

    #home-block-overview {
        margin-bottom: 0;
    }
}