/* GENERAL */

footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    background-color: white;
    color: #254E70;
}

/* UPPER PART */

footer ul,
footer ul a {
    list-style: none;
    text-decoration: none;
    padding: 0;
    color: #254E70;
}

footer>div:first-child {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1300px;
    min-height: 300px;
}

footer>div:first-child div:not(:nth-child(2)) {
    margin: 10px;
    width: 250px;
}

/* BUTTONS */

footer>div:first-child div:nth-child(2) li {
    margin: 40px 0px;
    text-align: center;
}

footer>div:first-child div:nth-child(2) a {
    background-color: #254E70;
    color: #F9F9F9;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 500;
}

footer>div:first-child div:last-child a {
    color: #254E70;
}

/* COPYRIGHTS */

footer>div:last-child {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #F9F9F9;
    background-color: rgba(37, 78, 112, 0.3);
    font-weight: 500;
    width: 100%;
    height: 50px;
}

footer>div:last-child a {
    color: #F9F9F9;
}

@media screen and (max-width: 760px) {
    footer>div:first-child {
        flex-direction: column;
    }
}