/* footer */
footer {
    background-color: #fff;
    padding-top: 70px;
    padding-bottom: 84px;
    text-align: center;
    color: #fff;
}
footer p {
    font-size: 14px;
    font-weight: 300;
    margin-top: 37px;
    color: #272727;
}

/* aside */
aside {
    display: flex;
    flex-direction: column;
    position: fixed;
    bottom: 95px;
    right: 35px;
    z-index: 101;
}
aside > a {
    margin-bottom: 12px;
    background-color: #fff;
    border-radius: 13px;
    width: 65px;
    height: 65px;
    display: flex;
    justify-content: center;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
    transition: all 0.2s;
}
aside > a:hover {
    opacity: 0.7;
}
aside > a:last-child {
    margin-bottom: 0px;
}
