/* Footer */
footer {
    color: white;
    background-color: #191919;
}

footer a {
    text-decoration: none;
    color: #767676;
    font-weight: bold;
}

footer a:hover {
    color: #419EFF;
}

#footer-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 80px;
}

.footer-heading {
    margin: 0;
    position: relative;
    box-sizing: border-box;
    font-size: 20px;
    font-weight: 600;
    padding-bottom: 16px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 1px;
    background-color: var(--primary-color);
}

.footer-list {
    margin: 0;
    margin-top: 20px;
    padding: 0;
    list-style: none;
}

.footer-list-item {
    color: #a8a8a8;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 8px;
    line-height: 1.8em;
}

.footer-list-item a {
    text-decoration: none;
    color: white;
}

.footer-list-item a:hover {
    color: var(--primary-color);
}

#footer-bottom {
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

#copyright {
    padding-top: 20px;
    padding-bottom: 24px;
    display: inline-block;
    color: #767676;
}

#created {
    padding-top: 24px;
    padding-bottom: 20px;
    display: inline-block;
    color: #767676;
    float: right;
}

/* Tablets */
@media screen and (max-width:1200px) and (min-width:767px) {
    #footer-wrapper {
        padding-top: 40px;
    }

    .footer-heading {
        margin-top: 25px;
        text-align: center;
    }

    .footer-heading::after {
        left: 50%;
        transform: translate(-50%, 0);
    }

    .footer-list {
        text-align: center;
    }

    #footer-bottom {
        margin-left: 25px;
        margin-right: 25px;
    }
}

/* Mobile-phones */
@media screen and (max-width:767px) {
    .footer-heading {
        text-align: center;
    }

    .footer-heading::after {
        left: 50%;
        transform: translate(-50%, 0);
    }

    .footer-column {
        margin-bottom: 40px;
    }

    .footer-list-item {
        text-align: center;
    }

    #footer-bottom {
        padding-left: 25px;
        padding-right: 25px;
    }

    #copyright {
        display: block;
        width: 100%;
        text-align: center;
        padding-bottom: 0;
        margin: 0;
    }

    #created {
        display: block;
        width: 100%;
        text-align: center;
        float: none;
        margin: 0;
    }
}
