.footer {
    padding: 15px 0;
    font-size: 16px;
    background-color: #ffffff;
    border-top: 1px solid #e5e5e5;
}

.footer-container {
    padding: 0 20px;
}

.footer-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.footer-nav-item {
    margin-right: 20px;
    text-decoration: none;
    color: #00113d;
    font-size: 14px;
}

.footer-nav-item:hover {
    font-weight: 700;
}

.footer-main {
    display: flex;
    justify-content: center;
}

.footer-copyright {
    color: #00113d;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
}

.footer-policy {
    color: #66708a;
    margin-left: 16px;
}

@media (max-width:768px) {
    .footer-main {
        flex-direction: column;
        margin-top: 25px;
    }

    .footer-policy{
        margin: 8px 0;
        text-align: center;
    }
}

.header{
    height: 120px;
    background-color: #00113d;
    padding: 0 25px;
    font-size: 20px;
}

.header a{
    text-decoration: none;
    color: #fff;
}

@media (max-width:768px) {
    .header{
        font-size: 18px;
    }
}