
/* Footer  - use on /?show=contact (contact.tpl) */

.contact-ct footer {
    background: #15142D;
    padding: 45px 10px 28px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.contact-ct footer .footer-links {
    display: flex;
    width: 550px;
    justify-content: space-between;
}


.contact-ct footer a {
    color: #02DB73;
    font-size: 18px;
    text-decoration: none;
    margin-bottom: 2px;
    cursor: pointer;
    display: block;
}

.contact-ct footer .social-buttons {
    margin-top: 50px;
}

.contact-ct footer .logo {
   margin-top: 50px;
   margin-bottom: 18px;
}

.contact-ct footer p {
   font-size: 11px;
   color: #737373;
   text-align: center;
}

.contact-ct footer .social-buttons {
    display: flex;
}

.contact-ct footer .social-buttons a {
    margin-right: 18px;
    display: block;
}

.contact-ct footer .social-buttons a:last-of-type{
    margin-right: 0px;
}

@media (max-width: 500px) {
    .contact-ct footer .footer-links {
        flex-direction: column;
        align-items: center;
        height: 255px;
    }

    .contact-ct footer .footer-links .links-ct {
        text-align: center;
    }

}