/* opacuidad de 0.9*/
.gl-opacity-9{
    opacity: 0.9;   
}

.gl-opacity-7{
    opacity: 0.7;   
}

.title-style{
    color: #1d2441;
    font-weight: 600;
}

.text-color-negro{
    color: #000;
}



.text-center {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.img-responsive {
    max-width: 5%;
    height: auto;
    display: initial;
}

.img-responsive-movil {
    max-width: 20%;
    height: auto;
    display: initial;
}

.rotate {
    animation: rotation 1s infinite linear;
}

@keyframes rotation {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(359deg);
    }
}