/*
CSS specific to the contact page
This styles the 3 blocks, Web chat, Call and Email
*/

#contact-header-container .contact-heading{
    font-weight: normal;
    color: #333333;
}

#contact-header-container .contact-heading-h3{
    font-size: 24px;
    line-height: 0.5;
    margin-bottom: 20px;
}
#contact-header-container .contact-heading-h2{
    font-size: 30px;
    line-height: 0.8;
}

#contact-header-container .contact-block{
    border-radius: 8px;
    background-color: #f3f3f3;
    border: solid 1px rgba(153, 153, 153, 0.4);
    padding: 20px;
    min-height: 258px;
    text-align: center;
    color: #333333;
    -moz-transition: background-color 0.1s ease-in-out, color 0.1s ease-in-out;
    -o-transition: background-color 0.1s ease-in-out, color 0.1s ease-in-out;
    -webkit-transition: background-color 0.1s ease-in-out, color 0.1s ease-in-out;
    transition: background-color 0.1s ease-in-out, color 0.1s ease-in-out;
}

#contact-header-container a:hover .contact-block,
#contact-header-container a:focus .contact-block{
    background-color: #fff;
}


#contact-header-container .contact-block-image{
    display: inline-block;
    vertical-align: middle;
    width: auto;
    max-width: 100%;
    height: auto;
    margin: 20px;
    -moz-transition: -moz-transform 0.1s ease-in-out;
    -ms-transition: -ms-transform 0.1s ease-in-out;
    -o-transition: -o-transform 0.1s ease-in-out;
    -webkit-transition: -webkit-transform 0.1s ease-in-out;
    transition:transform 0.1s ease-in-out;
}
#contact-header-container .contact-block a{
    display: block;
    width: 100%;
    height: 100%;
}

#contact-header-container a:hover .contact-block-image,
#contact-header-container a:focus .contact-block-image{
    -ms-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}



#contact-header-container .contact-block-heading{
    font-size: 24px;
    font-weight: normal;
    line-height: 1;
    color: #333333;
}

#contact-header-container .contact-block-p{
    max-width: 72%;
    font-size: 14px;
    line-height: 1.36;
}
#contact-header-container .contact-block-p-large{
    max-width: 100%;
    font-size: 18px;
    line-height: 1.11;
}
#contact-header-container .contact-block-p-small{
    font-size: 12px;
    line-height: 1.67;
    color: #999999;
}

