.about-us
{
    width: 90%;
    margin: 0 auto;
}

.about-us .title
{
    height: 60px;
    width: 95%;
    margin: auto;
    display: flex;
    align-items: center;
}

.about-us .title .name
{
    font-size: 18pt;
    font-weight: bold;
    color: rgba(0,0,0,0.6);
}

.line-separator
{
    position: relative;
    background-color: rgba(0,0,0,0.2);
    height: 1pt;
}

.about-us .content-body
{
    font-size: 12pt;
    font-weight: bold;
    color: rgba(0,0,0,0.5);
}

.about-us .content-body .content
{
    width: 100%;
    height: auto;
    text-align: justify;
    box-shadow: none;
}

.about-us .content-body .company-info
{
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0;
}

.about-us .content-body .company-info .template
{
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    text-align: justify;
}

.about-us .content-body .company-info .template .image
{
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-us .content-body .company-info .template .image img
{
    width: 500px;
    height: 300px;
    max-width: 450px;
    max-height: 300px;
    border-radius: 8px;
}

.about-us .content-body .company-info .template .text
{
    width: 100%;
    height: auto;
    padding: 10px 0;
}

.about-us .content-body .company-info .template .text span
{
    font-size: 12pt;
    font-weight: bold;
    color: rgba(0,0,0,0.5);
}

.about-us .content-body .team-info
{
    width: 100%;
    margin: 50px 0;
    padding: 0;
}

.about-us .content-body .team-info .card-body
{
    width: 100%;
    padding: 0;
}

.about-us .content-body .team-info .card-body .card-info
{
    width: 80%;
    height: 300px;
    margin: auto;
    border-radius: 7px;
    overflow: hidden;
    transition: background-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    cursor: pointer;
}

.about-us .content-body .team-info .card-body .card-info:hover
{
    background-color: white;
    box-shadow: 0 1px 2px 0 rgba(60,64,67,0.3), 0 1px 3px 1px rgba(60,64,67,0.15);
}

.about-us .content-body .team-info .card-body .card-info .image
{
    width: 100%;
    height: 84%;
    margin: 0;
    padding: 0;
    max-width: 100%;
    max-height: 80%;
}

.about-us .content-body .team-info .card-body .card-info .name
{
    width: 100%;
    height: 8%;
    display: flex;
    align-items: center;
    justify-content: right;
    color: rgba(0,0,0,0.8);
    padding: 2px 5px;
    font-size: 12pt;
    font-weight: bold;
}

.about-us .content-body .team-info .card-body .card-info .post
{
    width: 100%;
    height: 8%;
    display: flex;
    align-items: center;
    justify-content: right;
    color: rgba(0,0,0,0.4);
    padding: 2px 5px;
    font-size: 10pt;
    font-weight: bold;
}

@media only screen and (max-width: 768px) {
    .about-us
    {
        height: auto;
    }

    .about-us .title
    {
        height: 30px;
    }

    .about-us .title .name
    {
        font-size: 14pt;
    }

    .about-us .content-body
    {
        font-size: 10pt;
        font-weight: bold;
        color: rgba(0,0,0,0.5);
    }

    .about-us .content-body .company-info .template .text span
    {
        font-size: 10pt;
    }

    .about-us .content-body .team-info
    {
        margin: 30px 0;
    }

    .about-us .content-body .team-info .card-body .card-info
    {
        width: 90%;
        height: 250px;
    }

    .about-us .content-body .team-info .card-body .card-info .name
    {
        font-size: 10pt;
    }

    .about-us .content-body .team-info .card-body .card-info .post
    {
        font-size: 8pt;
    }
}