/*// Glow Border Animation //*/

.animated-border-box, .animated-border-box-glow {
/*    max-height: 300px;
    max-width: 650px;*/
    height: 100%;
    width: 100%;
    position: relative;
    overflow: hidden;
    z-index: 0;
    /* Border Radius */
    border-radius: 50px;
    border: 2px solid yellow;
}

.animated-border-box-glow {
    overflow: hidden;
    /* Glow Blur */
    filter: blur(20px);
}

    .animated-border-box:before, .animated-border-box-glow:before {
        content: '';
        z-index: -2;
        text-align: center;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) rotate(0deg);
        position: absolute;
        width: 99999px;
        height: 99999px;
        background-repeat: no-repeat;
        background-position: 0 0;
        /*border color, change middle color*/
        background-image: conic-gradient(rgba(0,0,0,0), yellow, rgba(0,0,0,0) 25%);
        /* change speed here */
        animation: rotate 10s linear infinite;
    }

.animated-border-box:after {
    content: '';
    position: absolute;
    z-index: -1;
    /* border width */
    left: 10px;
    top: 10px;
    /* double the px from the border width left */
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    /*bg color*/
    background: transparent;
    /*box border radius*/
    border-radius: 10px;
}

@keyframes rotate {
    100% {
        transform: translate(-50%, -50%) rotate(1turn);
    }
}

/*// Border Animation END//*/



/*// Ignore This //*/
body {
    margin: 0px;
}

.center-box {
    /*height: 100vh;*/
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
}




/*Footer_Design */ /*/For Spot Lisght Sliding_____________*/

.footer {
    position: fixed;
    font-size: 12px;
    padding-top: 10px;
    padding-right: 10px;
    padding-left: 10px;
    left: 0;
    bottom: 0;
    width: 100%;
    /*background-color: rgb(75, 75, 75);*/
    /*   background-color: rgba(25, 134, 141, 1);*/
    background-color: rgba(25, 134, 141, 1);
    color: white;
    /*text-align: right;*/
}

    .footer::before {
        content: '';
        position: absolute;
        top: 0;
        left: -75%;
        width: 50%;
        height: 100%;
        /*background: linear-gradient( 120deg, rgba(255, 255, 255, 0) 0%, rgba(249, 193, 6, 0.96) 50%, rgba(255, 255, 255, 0) 100% );*/
        background: linear-gradient( 120deg, rgba(255, 255, 255, 0) 0%, rgb(255, 216, 0) 50%, rgba(255, 255, 255, 0) 100% );
        transform: skewX(-20deg);
        animation: lightSweep 7s infinite;
    }

@keyframes lightSweep {
    0% {
        left: -75%;
    }

    100% {
        left: 125%;
    }
}