div.about-container
{
    width: 95%;
    margin: 0 auto;
}

div.about-section
{
    width: 100%;
    display: flex;
    padding: 20px 0;
}

div.about-section-left
{
    width: 50%
}

div.about-section-right
{
    width: 50%
}

img.about-pic
{
    width: 100%;
    padding: 25px;
    border-radius: 50px;
}

p.about-text
{
    font-size: 1.4rem;
    text-align: center;
}

p.about-text-heading
{
    font-family: Impacto, Impact, "Arial Black", Arial, sans-serif;
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin: 12px;
}

div.about-text
{
    display:flex;
    flex-direction: column;
    justify-content: center;
}

/* #Mobile */
@media (max-width: 767.99px) {
    div.about-section-left
    {
        width: 100%;
    }

    div.about-section-right
    {
        width: 100%;
    }

    div.about-section
    {
        flex-direction: column;
    }
}


/* #Tablets */
@media (min-width: 768px) and (max-width: 1024px) {

    div.about-section-right
    {
        display: flex;
        align-items: center;
    }
}