/* FOOTER */
footer {
    border-top: 1px solid rgba(138,150,163,.25);
    background-color: #000000;
    text-align: center;
    --footer-text-color: rgb(255, 255, 255);
    --social-icon-color: rgb(255, 255, 255);  
}
footer .footer-inner-div {
    width: 100%;
}
.footer-top {
    width: 100%;
    /* padding: 30px 0px; */
    padding: 30px 0px 0px 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.footer-bottom {
    width: 100%;
    padding: 20px 0 30px 0;
    /* border-top: .5px solid rgba(255, 255, 255, 0.451); */
}
/* Footer Logo */
footer .logo {
    padding: 0;
    margin-bottom: 10px;
    padding: 0;
    width: auto;
    text-align: center;
}
footer .logo a {
    text-transform: uppercase;
    font-size: 20px;
    color: var(--footer-text-color);
    text-decoration: none;
}
.footer-inner-div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 auto;
    color: var(--footer-text-color);
}
footer ul {
    list-style: none;
}
/* Footer Social Links */
.socials {
    display: flex;
    flex-flow: row nowrap;
    margin: 0 auto 0px auto;
}
.social {
    width: 20px;
    height: 30px;
    margin-right: 10px;
    display: grid;
    align-items: center;
    justify-content: flex-start;
    background-color: var(--social-icon-bg);
    border-radius: 3px;
    transition: .4s;
}
.social:last-child {
    margin-right: 0px;
}
.socials .social a {
    text-decoration: none;
}
.socials .social i {
    color: var(--social-icon-color);
    font-size: 14px;
}
.fab.fa-facebook-f:hover {
    color: #1A9FFF;
}
.fab.fa-instagram:hover {
    color: rgb(237,2,142);
}
.copyright-text {
    font-size: 12px;
    text-align: center;
}