
footer {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    background-color: #1f2940;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-between;
    align-items: center;
}

footer > .top {
    position: relative;
    width: 100%;
    height: 30%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}

footer > .center {
    position: relative;
    padding: 0 20px;
    width: 100%;
    height: 60%;
    border-bottom: solid 1px rgba(255, 255, 255, .5);
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-between;
    align-items: center;
}

footer > .bottom {
    position: relative;
    width: 100%;
    height: 10%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}


footer > .top > img {
    position: absolute;
    width: 100%;
    height: 100%;
}

footer > .top > .content {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}

footer > .top > .content > span {
    position: relative;
    padding: 20px;
    font-size: xx-large;
    color: white;
    font-weight: bold;
}

footer > .top > .content > button {
    position: relative;
    margin: 20px 0;
    width: 140px;
    height: 48px;
    border: none;
    background-color: #34a7fc;
    color: white;
    font-size: larger;
    border-radius: 24px;
    transition: color, transform 0.1s linear;
}

footer > .top > .content > button:hover {
    background-color: #189fff;
    transform: scale(1.05);
}

footer > .bottom > .icp {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}

footer > .bottom > .icp > span {
    position: relative;
    height: 100%;
    color: white;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    line-height: 1.5;
}

footer > .bottom > .icp > span > a > img {
    position: relative;
    width: 18px;
    height: 18px;
}

footer > .bottom > .icp > span > a {
    text-decoration: none;
    color: white;
    transition: transform 0.1s linear;
}

footer > .bottom > .icp > span > a:hover {
    transform: scale(1.1);
}

footer > .center > .left {
    position: relative;
    padding: 40px;
    width: 35%;
    height: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: flex-start;
}

footer > .center > .right {
    position: relative;
    padding: 40px;
    width: 60%;
    height: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-between;
    align-items: center;
}

footer > .center > .left > img {
    width: 12vw;
}

footer > .center > .left > span {
    padding: 10px 0;
    color: white;
    font-size: medium;
}

footer > .center > .right > ul {
    position: relative;
    width: 100%;
    height: 60%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}

footer > .center > .right > ul > .list {
    position: relative;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-start;
    align-items: flex-start;
}

footer > .center > .right > ul > .list > span {
    position: relative;
    width: 100%;
    color: white;
    font-size: x-large;
    font-weight: 600;
}

footer > .center > .right > ul > .list > ul {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 10px 20px 10px 0;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: flex-start;
    justify-content: flex-start;
    align-items: flex-start;
}

footer > .center > .right > ul > .list > ul > li {
    position: relative;
    padding: 5px 0;
    width: 100%;
    display: flex;
    color: white;
    font-size: medium;
}

footer > .center > .right > ul > .list > ul > li > a {
    text-decoration: none;
    color: white;
    transition: transform 0.1s linear;
}

footer > .center > .right > ul > .list > ul > li > a:hover {
    transform: scale(1.1);
}
