.home-footer {
    height: 15vh;
    width: 100vw;
    padding: 0.8vh;
    background-color: #282c34;
    color: #f5f5f5;
    text-align: center;
    font-size: 1.2vw !important;
    position: fixed;
    bottom: 0px;
}

.home-footer .footer-bottom p,
.home-footer .footer-bottom a {
    font-size: 0.8vw !important;
}

footer {
    background-color: #282c34;
    color: #f5f5f5;
    padding-top: 15px;
    padding-bottom: 10px;
    text-align: center;
    font-size: 14px !important;
}

.footer-section {
    margin-top: 5px;
    margin-bottom: 25px;
}

.footer-section h3 {
    font-size: 30px !important;
    font-weight: 600;
    color: #61dafb;
    margin-top: 0px;
}

.social-links {
    margin: 15px 0;
}

.social-links a,
.contact-links a {
    color: #f5f5f5;
    text-decoration: none;
    margin: 0 15px;
    transition: color 0.3s ease;
}

.social-links a:hover,
.contact-links a:hover {
    color: #61dafb;
}

.social-links a:hover i.fab {
    animation: reverseAnimation 0.5s ease;
}

@keyframes reverseAnimation {
    0% {
        transform: scaleX(1);
    }

    50% {
        transform: scaleX(-1);
    }

    100% {
        transform: scaleX(1);
    }
}

i.fab {
    font-size: 16px !important;
}

.contact-links a {
    display: flex;
    align-items: center;
    font-size: 16px !important;
    margin: 15px 0;
}

.contact-links a i {
    margin-right: 8px;
    font-size: 16px !important;
}

.footer-bottom p {
    font-size: 12px !important;
    color: #a9a9a9 !important;
    margin: 2px 0;
}

.footer-bottom a {
    font-size: 12px !important;
    color: #61dafb;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

.footer-bottom::before {
    content: "";
    display: block;
    border-top: 1px solid #888;
    margin-bottom: 15px;
}

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

.footer-columns>div:first-child {
    flex: 0 0 60%;
}

.footer-columns>div:last-child {
    flex: 0 0 40%;
}

.footer-columns.sponsor-logos {
    display: flex;
    justify-content: center;
    gap: 15px;
    align-items: center;
}

.footer-columns.contact-links {
    display: flex;
    flex-direction: column;
    align-items: left;
}

@media screen and (max-width: 768px) {
    .footer-columns {
        flex-direction: column;
    }

    .footer-columns>div:first-child {
        flex: 0 0 100%;
    }

    .footer-columns>div:last-child {
        flex: 0 0 100%;
    }

    .social-links a,
    .contact-links a {
        margin: 0 6px;
    }

    .sponsor-logos img {
        margin: 10px 15px;
    }

    .contact-links a {
        margin: 20px 20px;
    }

    .home-footer {
        height: 20vh;
    }
}

.footer-imgcontainer {
    width: 45vw;
    margin-left: 100px;
    margin-top: 30px;
    overflow: hidden;
    position: relative;
}

.footer-imgcontainer .image-wrapper {
    display: flex;
    animation: footermove 20s linear infinite;
}

.footer-imgcontainer .image-wrapper img {
    height: 70px;
    margin: 20px 40px;
    width: auto;
    margin-right: 10px;
}

@keyframes footermove {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-777px);
    }
}

@media (max-width: 768px) {
    .footer-imgcontainer {
        width: 80vw;
        margin-top: 20px;
        margin: auto;
    }

    .footer-imgcontainer .image-wrapper img {
        height: 60px;
        margin: 15px 30px;
        margin-right: 10px;
    }
}

@media (max-width: 500px) {
    .footer-imgcontainer .image-wrapper img {
        height: 50px;
    }

    .footer-section h3 {
        font-size: 24px !important;
        font-weight: 600;
        margin-top: 0px;
    }

    .contact-links a {
        font-size: 14px !important;
    }

    .contact-links a i {
        font-size: 14px !important;
    }

    @keyframes footermove {
        from {
            transform: translateX(0);
        }

        to {
            transform: translateX(-570px);
        }
    }
}