ul{
    list-style: none;
}

.footer{
    width: 100%;
    background: #1c2331;
    padding: 60px 0;
}

.container-footer{
    max-width: 1170px;
    margin: auto;
}

.row{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-col{
    width: 25%;
    padding: 0 15px;
}

.footer-col h4{
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 5px;
}

.footer-col hr{
    border: none;
    background-color: greenyellow;
    height: 2px;
    width: 50px;
    margin-bottom: 25px;
}

.footer-col ul li:not(:last-child){
    margin-bottom: 10px;
}

.footer-col ul li{
    font-size: 16px;
    font-weight: 300;
    color: #bbbbbb;
    display: block;
}

.footer-col ul li a{
    font-size: 16px;
    text-decoration: none;
    font-weight: 300;
    color: #bbbbbb;
    display: block;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover{
    color: greenyellow;
    padding-left: 8px;
}

.copy{
    width: 100%;
    padding: 5px;
    background: #151a25;
    text-align: center;
    color: #bbbbbb;
}

@media(max-width:767px){
    .footer{
        padding: 30px 0px;
    }
    .footer-col{
        padding: 0 15px;
        margin-bottom: 30px;
    }
}

@media(max-width:574px){
    .footer{
        padding: 20px 0px;
    }
    .footer-col{
        width: 100%;
        padding: 0 15px;
    }
}