.contact-us
{
    width: 90%;
    height: 100%;
    margin: auto;
}

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

.contact-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;
}

.contact-us .contents
{
    width: 100%;
    margin: 0;
}

.contact-us .contents .map
{
    width: 100%;
    height: 100%;
}

.contact-us .contents .map .shape .google-map
{
    width: 100%;
    height: 400px;
    border: 0;
    box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.26);
}

.contact-us .contents .map .title
{
    width: 90%;
    height: 60px;
    margin: auto;
    text-align: center;
    font-size: 12pt;
    font-weight: bold;
    color: rgba(0,0,0,0.4);
    display: flex;
    justify-content: center;align-items: center;
}

.contact-us .contents .information
{
    width: 100%;
    height: 100%;
}

.contact-us .contents .information .items
{
    width: 80%;
    height: 100%;
    margin: auto;
}

.contact-us .contents .information .items .item
{
    width: 100%;
    margin: 12px 0;
    background-color: white;
    border-radius: 3px;
    box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.26);
    top: 0;
    position: relative;
    transition: all 0.2s ease-in-out;
}

.contact-us .contents .information .items .item:hover
{
    top: -4px;
    box-shadow: 0px 6px 20px 0px rgba(0,0,0,0.26);
}

.contact-us .contents .information .items .item .title
{
    text-align: center;
    justify-content: center;
    height: 80px;
    width: 95%;
    margin: auto;
    display: flex;
    align-items: center;
}

.contact-us .contents .information .items .item .title .name
{
    font-size: 14pt;
    font-weight: bold;
    color: rgba(0,0,0,0.5);
}

.contact-us .contents .information .items .item .context
{
    padding: 0;
    display: flex;
    font-size: 11pt;
    font-weight: bold;
    color: rgba(0,0,0,0.6);
    justify-content: center;
    align-items: center;
}

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

    .contact-us > .title
    {
        height: 30px;
    }

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

    .contact-us .contents .map
    {
        padding: 0 5px;
    }

    .contact-us .contents .map .shape .google-map
    {
        height: 300px;
    }

    .contact-us .contents .map .title
    {
        font-size: 10pt;
    }

    .contact-us .contents .information
    {
        margin-bottom: 40px;
        padding: 0;
    }

    .contact-us .contents .information .items
    {
        width: 100%;
    }

    .contact-us .contents .information .items .item .title
    {
        width: 100%;
        padding: 0;
    }

    .contact-us .contents .information .items .item .title .name
    {
        font-size: 12pt;
    }

    .contact-us .contents .information .items .item .context
    {
        font-size: 10pt;
        padding: 0 5px;
    }
}