body {
    background-color: white;
}

a {
    color: #11869b;
}

.t-primary-bgcolor {
    background-color: #d31245;
}

.header {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 20px 0;
}

.header__logo img {
    max-height: 80px;
}

.header__nav a {
    color: #6d6d6d;
    transition: color .1s ease;
    font-size: 18px;
}

.header__nav a:hover {
    color: #d31245;
}

.footer-wrapper {
    background-color: #C2C2C2;
}

.footer-center {
    background-color: #fff;
    width: 100%;
    padding: 15px 0;
}

.footer-center-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bhfx-logo img {
    max-width: 100%;
    max-height: 50px;
}

.footer-contact ul {
    list-style-type: none;
    text-align: left;
    padding-left: 0;
    margin-left: 15px;
    font-size: 16px;
    line-height: 28px;
    margin-top: 5px;
}

.footer {
    padding: 0;
    text-align: center;
    width: 100%;
}

.footer-top {
    color: #333;
    font-size: 18px;
    padding: 4px 0;
}

.footer-top a {
    color: #333;
}

.footer-inner,
.footer-inner a {
    color: #fff;
}

.contact-info {
    display: flex;
    padding: 20px 0;
}

.contact-info div {
    text-align: left;
    border-left: 1px solid #33333350;
    padding: 0 15px;
    font-size: 15px;
}

.contact-info div:first-child {
    border-left: none;
    padding-left: 0;
}

@media screen and (max-width: 966px) {
    .footer-center-inner {
        flex-direction: column;
        row-gap: 20px;
    }
}

@media screen and (max-width: 456px) {
    .footer-contact ul {
        font-size: 14px;
    }
}

@media screen and (max-width: 552px) {
    .contact-info {
        flex-direction: column;
    }

    .contact-info div {
        border-left: none;
        padding-left: 0;
        padding-bottom: 10px;
    }
}
