.footer{
    background-color: #111111;
    height: 300px;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    color: #fff;
}
.footer_social{
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.footer_social_title{
    width: 100%;
    text-align: center;
}
.footer_social_list{
    width: 100%;
    max-width: 500px;
    display: flex;
    margin: 0;
    padding: 0;
}
.footer_social_list li{
    width: 30px;
    height: 30px;
    list-style: none;
    padding: 0;
    margin: 0;
    margin: 0 10px;
}
.footer_social_list li a{
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: #fff;
}
.footer_copy{
    background-color: #222222;
    width: 100%;
    height: 100px;
    box-sizing: border-box;
    padding: 20px;
    font-size: 0.9em;
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer_svg{
    width:100%; 
    height:100%;  
    fill:#fff;
    transition: fill 0.3s;
}
.footer_svg:hover{
    fill:var(--mainColorLight);
}