.footer {

    display: flex;
    flex-direction: column;
    width: 100%;
    background: linear-gradient(150.27deg, #ba63003e 27%, #e28f3181 51.32%, #e9a24b4f 73.7%);
    padding: 30px 150px 10px;
    gap: 30px;
    font-family: "Poppins";

}

.footer .footer-meta-info {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    gap: 20px;
}

.footer .footer-meta-copyright {

    display: flex;
    width: 100%;
    height: 50px;

}

.footer .footer-meta-copyright .copyboard {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: rgb(0, 0, 0);
    width: 100%;

}

.footer .footer-meta-copyright .copyboard a {

    display: flex;
    align-items: center;
    text-decoration: none;
    color: rgb(0, 0, 0);

}

.footer .footer-meta-copyright .copyboard a img {

    width: 100%;
    height: 50px;
    object-fit: cover;
}

.footer .footer-meta-copyright .copyboard .footer-logo {
    display: flex;
    flex: 1;
}

.footer .footer-meta-copyright .copyboard .footer-copyright-title {
    display: flex;
    font-size: 0.825rem;

}

.footer .footer-meta-copyright .copyboard .footer-copyright-title a {
    text-decoration: none;
    color: inherit;
}

.footer .footer-meta-info .sitemap,
.footer .footer-meta-info .comm,
.footer .footer-meta-info .social {

    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    width: 100%;
}

.footer .footer-meta-info .sitemap h5,
.footer .footer-meta-info .comm h5,
.footer .footer-meta-info .social h5 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    font-family: "Poppins";
    font-weight: 400;
    font-size: 1.4rem;
    color: rgb(0, 0, 0);
}

.footer .footer-meta-info .sitemap h5::after,
.footer .footer-meta-info .comm h5::after,
.footer .footer-meta-info .social h5::after {

    content: '';
    height: 1px;
    background: linear-gradient(90deg, #010C34 0%, #890095 100%);
    width: 80%;
    margin: 10px 0;
    animation: movetoleft 2s linear;
}

@keyframes movetoleft {

    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }

}

.footer .footer-meta-info .sitemap ul,
.footer .footer-meta-info .comm ul {
    display: flex;
    flex-direction: column;
    width: 100%;

}

.footer .footer-meta-info .sitemap ul li,
.footer .footer-meta-info .comm ul li {
    margin-bottom: 12px;
}

.footer .footer-meta-info .sitemap ul li a,
.footer .footer-meta-info .comm ul li a {
    width: 100%;
    font-weight: 300;
    font-size: 0.9rem;
    text-decoration: none;
    color: rgb(0, 0, 0);

}

.footer .footer-meta-info .sitemap ul li a:hover,
.footer .footer-meta-info .comm ul li a:hover {

    color: #252121d8;
}

.footer .footer-meta-info .social .social-icons {

    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}

.footer .footer-meta-info .social .social-icons a i {

    font-size: 1.6rem;
    color: #000000;
}

@media screen and (max-width:990px) {

    .footer {

        padding: 10px 80px 10px;
    }

}

@media screen and (max-width:780px) {

    .footer {

        padding: 10px 10px 10px;
    }

}

@media screen and (max-width:640px) {

    .footer {
        width: 100%;
        min-height: 700px;
        padding: 10px 50px 20px;

    }

    .footer .footer-meta-info {
        display: flex;
        align-items: flex-start;
        flex-wrap: wrap;
        justify-content: space-between;
        width: 100%;
        gap: 20px;
    }

    .footer .footer-meta-copyright .copyboard {

        flex-wrap: wrap;

    }

    .footer .footer-meta-copyright .copyboard .footer-copyright-title {
        width: 100%;
        height: 100%;
        margin-top: 20px;
        line-height: 20px;
    }

    .footer .footer-meta-info .sitemap h5::after,
    .footer .footer-meta-info .comm h5::after,
    .footer .footer-meta-info .social h5::after {

        width: 100%;
        animation: movetoleft 2s linear;

    }

}