#logo h3 {
    font-size: 60pt;
    font-weight: 400;
    text-align: left;
    background: linear-gradient(90deg, transparent, #90112e, transparent);
    animation: gradient-shine 20s linear infinite;
    /* Apply the animation */
    /* background-clip:text;
    color: transparent; */
}

/* Define the animation keyframes */
@keyframes gradient-shine {
    0% {
        background-position: 100vw center;
    }

    100% {
        background-position: -100vw center;
    }
}

@media only screen and (max-width: 1280px) {
    #logo {
        grid-row: 4;
        grid-column: 1/-1;
        width: auto;
        align-items: center;
    }

    #logo h3 {
        font-size: 30pt;
    }

    .scr1-contacts {

        grid-row: 18;
    }
}