footer {
    position: relative !important;
    z-index: 1;
    margin-top: 50px;
}

#ujjan {
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    position: absolute;
    right: 30px;
    top: -72px;
    z-index: 0;
    padding: 0px 20px;
    border-radius: 5px;
    border: 1.5px solid #505050;
    background-color: #1e2126;
    display: flex;
    height: 40px;
    width: fit-content;
    align-items: center;
    overflow: hidden;
}

#ujjan::before {
    content: "";
    position: absolute;
    left: -150px;
    height: 300%;
    width: 30%;
    transform: rotate(45deg);
    background-color: white;
    opacity: 40%;
    animation-name: ujjan-shine-before;
    animation-duration: 5s;
    animation-iteration-count: infinite;
    animation-timing-function: ease;
    animation-delay: 5s;
}

#ujjan::after {
    content: "";
    position: absolute;
    left: -50px;
    height: 300%;
    width: 10%;
    transform: rotate(45deg);
    background-color: white;
    opacity: 50%;
    animation-name: ujjan-shine-after;
    animation-duration: 5s;
    animation-iteration-count: infinite;
    animation-timing-function: ease;
    animation-delay: 5s;
}

#ujjan:hover {
    box-shadow: 0px 0px 20px 5px rgba(252, 217, 184, 0.1);
    transform: scale(1.05);
    transition-duration: 0.3s;
    transition-timing-function: ease;
    transition-delay: 0.1s;
}

@keyframes ujjan-shine-before {
    0% {
        left: -150px;
    }

    20% {
        left: 300px;
    }

    40% {
        left: 300px;
    }

    60% {
        left: 300px;
    }

    80% {
        left: 300px;
    }

    100% {
        left: 300px;
    }
}

@keyframes ujjan-shine-after {
    0% {
        left: -50px;
    }

    20% {
        left: 400px;
    }

    40% {
        left: 400px;
    }

    60% {
        left: 400px;
    }

    80% {
        left: 400px;
    }

    100% {
        left: 400px;
    }
}

#ujjan img {
    height: 30px;
}

#ujjan h6 {
    color: white;
    margin-left: 5px;
    font-size: 14px;
    font-weight: 400;
}


@media screen and (max-width: 479px) {
    #ujjan {
        right: 50%;
        transform: translateX(50%) !important;
    }
}