footer {
    background-color: #000;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    bottom: 0;
    width: 100vw;
    padding: 50px 10px;
}
footer * {
    color: #ccc;
}
footer .copyright h3 {
    color: #fff;
    text-align: center;
    font-size: 25px;
    margin-bottom: 100px;
    display: block;
}

footer .info {
    text-align: center;
    margin-bottom: 40px;

}
footer .info h3 {
    font-size: 25px;
}

footer .sections {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: start;
    border-top: 2px solid #fff;
    padding-top: 40px;
    left: 0;
    right: 0;
}
footer .sections .columns {
    width: 150px;
}
footer .sections .columns h4 {
    display: inline;
    font-size: 20px;
    font-weight: 800;
    padding-bottom: 2px;
    border-bottom: 1px solid #fff;
}
footer .sections .columns h5 {
    font-size: 17px;
}
footer .sections .columns ul {
    list-style-type: none;
    margin-top: 10px;
}
footer .sections .columns ul li {
    margin-top: 5px;
}
footer .sections .columns ul li a {
    text-decoration: none;
    font-weight: 100;
    transition: .3s;
}
footer .sections .columns ul li a:hover {
    font-weight: 500;

}







footer .links {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
footer .links a i {
    width: 30px;
    height: 30px;
    font-size: 30px;
    color: #aaa;
    text-decoration: none;
    margin-left: 10px;
    transition: color .2s ease-in-out;
}
.links a.fb:hover i{
    color: #4267B2;
}

footer .links a.ig i {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    background-clip: text;
    color: #aaa;
}
footer .links a.ig:hover i {
    color: #00000000;
}







@media (max-width: 600px) {
    footer .copyright h3 {
        font-size: 20px;
        margin-bottom: 50px;
    }
    
    footer .info h3 {
        font-size: 20px;
    }
    footer .info p {
        font-size: 15px
    }

    footer .sections {
        flex-direction: column;
    }

    footer .sections .columns {
        margin-bottom: 50px;
    }
    
    footer .links {
        position: absolute;
        right: 10px;
        flex-direction: column;
        height: 100px;
        justify-content: space-between;
        transform: translateY(-150px);
    }
}