.footer {
    background: #014365;
    padding: 20px 0px;
    font-family: 'Play', sans-serif;
    text-align: center;
    margin-top: auto; 
}

.footer .row,
.footer .d-flex {
    width: 100%;
    margin: 0;
    padding: 0.5% 0;
    color: gray;
    font-size: 0.75em;
}

.footer .row a,
.footer .d-flex a {
    text-decoration: none;
    color: #fff;
    transition: 0.5s;
}

.footer .row a:hover,
.footer .d-flex a:hover {
    color: #fff;
}

.footer ul {
    width: 100%;
    padding: 0;
    list-style: none;
    margin: 0;
}

.footer ul li {
    display: inline-block;
    margin: 0 30px;
}

.footer .social-icons ul li {
    margin: 0 10px;
}

.footer .social-icons ul {
    padding: 0;
    list-style: none;
    margin: 0;
    display: flex;
    justify-content: center;
}

.footer .row a i,
.footer .d-flex a i {
    font-size: 2em;
    margin: 0 1%;
}

.divider {
    width: 80.563rem; /* Control width here, was previously specified */
    height: 0.125rem; /* Adjusted for specificity */
    background-color: rgba(255, 255, 255, 0.15);
    border: 1px solid var(--white); /* Ensure this color variable is defined or replace with a hex code */
}

@media (max-width: 720px) {
    .footer {
        padding: 5%;
    }
    .footer ul li {
        display: block;
        margin: 10px 0;
        text-align: center;
    }
    .footer .social-icons ul {
        justify-content: center;
    }
}
