@media (max-width: 2600px) and (min-width: 1024px) {
    .d-hide {
        display: none;
    }
}


@media (max-width: 1023px) and (min-width: 1px) {
    .m-hide {
        display: none;
    }
}

#load_e99d2ea6f276c5f1a06d {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 1mm;
    background-color: lightgray;
    z-index: 9999;
}

#load_e99d2ea6f276c5f1a06d::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--load_e99d2ea6f276c5f1a06d, #000000);
    animation: loading-animation 2s linear infinite;
}

@keyframes loading-animation {
    0% {
        left: -100%;
        width: 100%;
    }
    100% {
        left: 100%;
        width: 100%;
    }
}

[x-cloak] { display: none !important; }

@keyframes reveal {
    from {
      color: #A9A9A9;
    }
    to {
      color: #000000;
    }
}

.animate-letter {
    animation: reveal 1s infinite alternate;
}