footer {
    width: 100%;
    overflow: hidden;
}
footer > div {
    margin: 0px auto;
    overflow: hidden;
    display: flex;
    align-items: start;
    flex-wrap: wrap;
    gap: 40px;
}
footer > div > nav {
    width: 300px;
}
@media screen and (min-width: 1341px) {
    footer > div {
        width: 1320px;
        justify-content: start;
    }
}
@media screen and (max-width: 1340px) and (min-width: 661px) {
    footer > div {
        width: 640px;
        justify-content: start;
    }
}
@media screen and (max-width: 660px) {
    footer > div {
        width: 90%;
        justify-content: center;
    }
    footer > div > nav {
        width: 100%;
    }
}
footer > div > nav > div {
    width: 80%;
}
footer > div > nav > h2 {
    width: 100%;
    line-height: 25px;
    font-size: 16px;
    font-weight: bold;
    color: #252263;
}
footer > div > nav > nav {
    width: 100%;
    display: flex;
    justify-content: start;
    align-items: start;
    flex-wrap: nowrap;
    margin-top: 25px;
}
footer > div > nav > nav > a {
    display: block;
    text-decoration: none;
    background-color: #d4e4f8;
    box-shadow: 0px 0px 5px #d4e4f8;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    border-radius: 100%;
    color: #252263;
    margin-left: 5px;
    font-size: 20px;
    padding: 1px 0px 0px 2px;
}
footer > div > nav > h1 {
    width: 100%;
    height: 50px;
    line-height: 50px;
    font-size: 25px;
    font-weight: bold;
    color: #252263;
}
footer > div > nav > p {
    width: 100%;
    line-height: 25px;
    margin: 7.5px 0px;
    overflow: hidden;
}
footer > div > nav > p > a {
    text-decoration: none;
    font-size: 16px;
    line-height: 25px;
    color: black;
    transition: .3s;
}
footer > div > nav > p > a:hover {
    color: rgb(255, 196, 0);
}
footer > nav {
    width: 100%;
    height: 50px;
    line-height: 50px;
    font-size: 15px;
    font-weight: bold;
    color: #252263;
    text-align: center;
}