:root {
    --hover: #ffea00;
    --footer-color: #ffbb00;
}

footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

footer .col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20px;
}

footer .col a {
    transition: all 0.3s ease-out 0s;
    display: inline-block;
    position: relative;
    margin-bottom: 15px;
}

footer .col a:after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 1px;
    bottom: -3px;
    left: 0;
    background-color: var(--footer-color);
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}

footer .col a:hover {
    color: var(--footer-color);
}

footer .col a:hover:after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

footer .logo-col .logo {
    height: 25px;
    margin-bottom: 30px;
}

footer h4 {
    font-size: 14px;
    padding-bottom: 20px;
}

footer p {
    font-size: 13px;
    margin: 0 0 8px 0;
}

footer a {
    font-size: 13px;
    text-decoration: none;
    color: #fff;
    margin-bottom: 10px;
}

footer .logo-col {
    width: 350px;
    line-height: 20px;
}

footer .follow {
    margin-top: 20px;
}

footer .follow h4 span,
footer .follow h4 span i {
    color: var(--footer-color);
}

footer .follow i {
    color: #767676;
    padding-right: 4px;
    cursor: pointer;
}

footer .install .row img {
    border: 1px solid var(--footer-color);
    border-radius: 6px;
}

footer .install img {
    margin: 10px 0 15px 0;
}

footer .follow i:hover,
footer a:hover {
    color: #ffffff;
}

footer .copyright {
    width: 100%;
    text-align: center;
}

footer .copyright p span {
    color: var(--footer-color);
    font-weight: 700;
}