.footer-contact {
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 1px solid #ccc;
    padding-top: 30px;
    margin-bottom: 30px;
}

.footer-contact .info {
    width: 200px;
    height: 50px;
    border-radius: 8px;
    font-size: 18px;
    margin: 0 10px;
    line-height: 1;
}

.footer-contact .info-left {
    background: #1b224c;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    cursor: pointer;
}

.footer-contact .info-right {
    border: 1px solid #1b224c;
    color: #1b224c;
    text-align: center;
    padding-top: 8px;
}

.footer-contact .info-right p {
    font-size: 14px;
}

.footer-copyright {
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
    background: #1b224c;
    color: #fff;
}

.header-landing {
    display: flex;
    justify-content: space-between;
    padding-top: 15px;
    padding-bottom: 15px;
}

.header-landing img {
    max-width: 222px;
}

header {
    border-bottom: 1px solid #d9d9d9;
}

.contact-header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.contact-header .info {
    line-height: 1.2;
    text-align: right;
    color: #1a376f;
    font-weight: bold;
    font-size: 16px;
    margin-right: 10px;
}

.contact-header .info p {
    margin-bottom: 0;
    font-weight: normal;
    font-size: 14px;
}

.contact-header .link {
    width: 120px;
    border-radius: 6px;
    margin: 0 5px !important;
    height: 40px;
    background: #1a376f;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.contact-header .link.first {
    background-color: #65ccd5;
}

.contact-header .link a {
    font-weight: normal;
    color: #fff;
}

.contact-header .link a:hover {
    color: #fff;
}

@media (max-width: 767px) {
    .header-landing {
        flex-direction: column;
        text-align: center;
    }
    .contact-header {
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .contact-header .link {
        width: 100px;
    }
}