/*FOOTER*/
footer {
    padding: 100px 5%;
}
.footer-grid ul {
    list-style: none;
}
footer a{
    color: #ffffff;
    text-decoration: none;
}
footer a:hover {
    color: #ffffff;
    text-decoration: underline;
}
footer h3 {
    padding-left: 39px;
    font-size: 25px;
    letter-spacing: 3px;
}
footer hr {
    width: 90%;
    text-align: center;
    border: 0.25px solid #65bb94
}
footer .linkedin-flex {
    display: flex;
    flex-direction: row;
    align-items: center;
}
@media only screen and (max-width: 760px) {
    .footer-grid {
        display: block;
    }
}
@media only screen and (min-width: 761px) and (max-width: 1200px) {
    .footer-grid {
        display: grid;
        grid-template-columns: repeat(2, 50%);
        grid-template-rows: auto;
    }
}
@media only screen and (min-width: 1201px) {
    .footer-grid {
        display: grid;
        grid-template-columns: repeat(4, 25%);
        grid-template-rows: auto;
    }
}