/* CSS Document */
.text-base-color, .btn-link.text-base-color {color:#e82d27;}
.btn.btn-dark-gray {
    background-color: #e82d27;
    color: var(--white);
}
.video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}
.text-dark-rosso, .btn-link.text-dark-rosso, a.text-dark-rosso-hover:hover {
  color: #e82d27;
}
/* Nascondo di default */
.only-mobile {
    display: none;
}

/* Mostro solo su mobile (fino a 767px) */
@media (max-width: 991px) {
    .only-mobile {
        display: block;
    }
}
