footer {
    background: #161616 !important;
    color: #fff;
    padding: 70px 0 20px;
    border-radius: 70px 70px 0 0;
}

#main-footer > .container {
    display: flex !important;
    text-align: left !important;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    max-width: 1250px;
}

.home footer .menu-btn, footer .menu-btn {
    position: relative;
    color: white;
    border-color: white;
    display: block !important;
}

.home footer .menu-btn:hover {
    background: white;
    border-color: white;
    color: #212121;
}

footer h3 {
    font-size: 78px;
    line-height: 1.1em;
    color: #fff;
    max-width: 820px;
}

footer h3 span {
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(50deg, #00e39c, #0087ec 25%, #ab39ef 50%, #ff00a7 75%, #ffb100 100%, #fbfafd);
    -webkit-background-clip: text;
    background-clip: text;
    animation: gradient-move 4s ease infinite;
    background-size: 150%;
}

@keyframes gradient-move {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.footer-mid, .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.footer-mid {
    border-top: 1px solid silver;
    padding-top: 50px;
    margin-top: 75px;
    margin-bottom: 5px;
}

.footer-mid a {
    color: #fff;
    font-size: 17px;
    font-weight: 600;
}

.socials {
    display: flex;
    gap: 15px;
}

.footer-bottom p {
    color: #fff;
    font-size: 14px;
    padding: 0;
}


@media (max-width: 676px) { 

footer {
    border-radius: 40px 40px 0 0;
}
}