body {
    padding: 0;
    margin: 0;
}
/* Footer */
.footer {
    bottom: 0;
    /* left: 0; */
    width: 100%;
    padding: 20px 50px;
    background: #3586ff;
    min-height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    overflow: hidden;
    margin-top: 75px; 
}
.footer .social_icons {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 5px 5px 5px;
    flex-wrap: wrap;
}
.footer .menu {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 100px;
    flex-wrap: wrap;
}
.footer .social_icons li, .footer .menu li {
    list-style: none;
}
.footer .social_icons li a {
    font-size: 1.7em;
    color: #fff;
    margin: 0 0px;
    display: inline-block;
    transition: 0.5s;
}
.footer .social_icons li a:hover {
    transform: translateY(-10px);
}
.footer .menu li a {
    font-size: 1em;
    color: #fff;
    margin: 0px 15px 0px 15px;
    display: inline-block;
    text-decoration: none;
    opacity: 0.75;
}
.footer .menu li a:hover {
    opacity: 1;
}
.footer a {
    font-size: 1em;
    color: #fff;
    display: inline-block;
    text-decoration: none;
}
.footer p {
    color: #fff;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 1.1em;
    border: none;
}