footer {
    background: #071c07;
}

.inteGateLogo {
    max-height: 50px;
    margin-right: 20px;
}

.bkgColor {
    /*background-color: #0e380e;
    background: linear-gradient(100deg, #0e380e 0%, #0c965d 33%, #071c07 66%, #0e380e 99%);*/
    animation: bkgGradient infinite 10s;

    font-weight: bold;
    background-size: 400%;
    animation: bkgGradient 15s ease-in-out infinite;
}

@keyframes bkgGradient {
    0% {
        background-color: #0e380e;
        background-position: 100% 50%;
    }

    33% {
        background-color: #0c965d;
        background-position: 66% 50%;
    }

    /*42% {
        background-color: #0e380e;
        background-position: 42% 50%;
    }

    50% {
        background-color: #0e380e;
        background-position: 50% 50%;
    }*/

    66% {
        background-color: #071c07;
        background-position: 33% 50%;
    }

    100% {
        background-color: #0e380e;
        background-position: 0 50%;
    }
}

.text-left {
    text-align: left;
}

.bkgExcitement {
    animation: bkgTextGradient infinite 5s;

    font-weight: bold;
    background-size: 400%;
    animation: bkgTextGradient 7.5s ease-in-out infinite;
}

@keyframes bkgTextGradient {
    0% {
        background-color: #0e380e;
        background-position: 100% 50%;
        color: #ffffff;
    }

    33% {
        background-color: #0c965d;
        background-position: 66% 50%;
        color: #000000;
    }

    /*42% {
        background-color: #0e380e;
        background-position: 42% 50%;
    }

    50% {
        background-color: #0e380e;
        background-position: 50% 50%;
    }*/

    66% {
        background-color: #071c07;
        background-position: 33% 50%;
        color: #ffffff;
    }

    100% {
        background-color: #0e380e;
        background-position: 0 50%;
        color: #ffffff;
    }
}