.footer {
    font-family: 'SupercellFont', Arial, sans-serif;
    background: #000;
    color: #fff;
    padding: 30px 10vw 0;
    min-height: 200px;
    z-index: 1000;
    position: relative;
}

@media(min-width: 576px) {
    .footer {
        height: 20vh;
    }
}

.footer a {
    color: #fff;
    font-size: 0.85rem;
    text-decoration: none;
    transition: opacity 0.2s;
}

.footer a:hover {
    opacity: 0.7;
}

.links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 28px;
    padding-bottom: 28px;
}

.links-wrapper {
    display: flex;
    flex-direction: row;
}

.links-wrapper a {
    margin-left: 12px;
    margin-bottom: 0;
    text-align: center;
}

.links img {
    height: auto;
    width: auto;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 28px;
    border-top: 1px solid #262626;
    flex-direction: column;
}

@media(min-width: 576px) {
    .footer-bottom {
        flex-direction: row;
    }
}

.bottom-links {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.bottom-links > * {
    padding-bottom: 20px;
}

@media(min-width: 576px) {
    .bottom-links {
        flex-direction: row;
    }

    .bottom-links > * {
        padding-bottom: 0;
    }
}

.bottom-links a {
    color: gray;
    margin-left: 20px;
}

.bottom-links a:first-of-type,
.links a:first-of-type,
.social a:first-of-type {
    margin-left: 0;
}

.bottom-links a:last-of-type,
.links a:last-of-type,
.social a:last-of-type {
    margin-right: 12px;
}

.social {
    display: flex;
    padding-bottom: 28px;
    gap: 15px;
}

@media(min-width: 576px) {
    .social {
        padding-bottom: 0;
    }
}

.social a {
    opacity: 0.5;
    margin: 0 8px;
    transition: opacity 0.2s;
}

.social a:hover {
    opacity: 1;
}

@media(min-width: 576px) {
    .social a {
        margin: 0 12px;
    }
}

.social svg {
    width: 25px;
    height: 25px;
    fill: #fff;
}

@media (max-width: 768px) {
    .footer {
        padding: 20px 5vw;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .links-wrapper {
        flex-direction: flex;
        gap: 15px;
    }
    
    .links {
     padding-top: 10px;
    }
}