body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex-grow: 1;
}


footer {
    background-color: #00005C;
    color: #fff;
    padding: 40px 0 0;
    margin-top: auto;
}

footer .logo {
    height: 100px;
    margin: 0px 0px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

footer .logo img{
    height: 100%;
    object-fit: contain;
}

footer .heading {
    font-weight: 700;
    font-size: 20px;
    line-height: 20px;
}

footer .mb {
    margin-bottom: 15px;
}

footer .content {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
}

footer ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

footer ul li {
    margin-bottom: 8px;
}

footer a {
    text-decoration: none;
    color: #FFF;
}

footer a:hover {
    color: rgba(255, 255, 255, 0.8);
}


@media screen and (max-width: 768px) {
    footer .logo {
        height: 100px;
        margin: 0 auto;
    }

    footer .heading,
    footer .content {
        display: flex;
        justify-content: center;
        text-align: center;
    }
}

.footer-area {
    padding: 25px 0px;
    background-color: #00005C;
    color: #fff;
}

.footer-area a {
    text-decoration: none;
}

.footer-area .footer-heading {
    /* font-size: 24px; */
    color: #fff;
}

.footer-area .footer-underline {
    height: 1px;
    width: 70px;
    background-color: #ddd;
    margin: 10px 0px;
}

.copyright-area {
    padding: 14px 0px;
    background-color: #262626;
}

.copyright-area p {
    margin-bottom: 0px;
    color: #fff;
}

.copyright-area .social-media {
    text-align: end;
}

.copyright-area .social-media a {
    margin: 0px 10px;
    color: #fff;
    width: 20px;
}