.footer{
    min-height: 600px;
    background-color: #0031C8;
    margin-left: -8px;
    margin-right: -8px;
    margin-bottom: -8px;
    padding-bottom: 20px;
}

.footer .logo{
    padding-top: 25px;
    text-align: center;
    align-items: center;
    justify-content: center;
    display: flex;
}

.footer .logo img{
    height: 179px;
}

.footer > div {
    color: #ffffff;
    font-size: 16px;
    display: flex;
    margin: auto;
    justify-content: center;
    text-align: center;
    padding-right: 70px;
    padding-left: 70px;
    padding-top: 10px;
}

.footer .separator{
    display: inline;
}

.footer .separator::after{
    content: "|";
}

.footer a {
    text-transform: none;
    display: inline-block;
    color: #ffffff;
    text-decoration: underline;
}

.footer ul{
    display: flex;
    margin: auto;
    justify-content: center;
    text-align: center;
    list-style: none;
    padding-right: 70px;
    padding-left: 70px;
    margin-top: 50px;
    margin-bottom: 50px;
    gap:100px;
}
.footer ul li{
    height: 50px;
    border-radius: 100%;
    background-color: white;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer ul li a{
    color: #0031C8;
    font-size: 35px;
}

.footer ul li a i{
    margin: auto;
    padding-top: 5px;
}

.footer table{
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer table tbody{
    width: 100%;
}

.footer table tr{
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer table td{
    color: white;
    padding: 20px;
    width: 50%;
}

.footer table td:first-of-type{
    border-right-color: white;
    border-right-style: solid;
    padding-right: 50px;
}

.footer table td:last-of-type{
    padding-left: 50px;
}

.footer div.order{
    display: flex;
    flex-direction: column;
}

@media (max-width: 979px) {
    .footer{
        min-height: 500px;
    }
    
    .footer table,
    .footer .copyright{
        font-size: 14px !important;
        line-height: 25px;
    }
    .footer table{
        margin-bottom: 50px;
    }
    .footer ul{
        gap:30px;
        padding-left: 0px;
        padding-right: 0px;
    }

    .footer .logo img{
        height: 80px;
    }

    .footer table tr{
        display: flex;
        flex-direction: column-reverse;
        gap: 20px;
    }

    .footer table td{
        display: flex;
        justify-content: center;
        text-align: center;
        border-style: none !important;
        padding:0 !important;
        width: 100%;
    }

    .footer table td:nth-child(even){
        text-decoration: underline;
    }

    .footer .separator{
        display: block;
    }
    .footer .separator::after{
        content: "";
    }

    .footer div.order{
        display: flex;
        flex-direction: column-reverse;
    }
}