.text-intro-founder {
  font-family: 'Open Sans';
  font-size: larger;
  color: var(--primary);
}

@media (min-width: 992px) {
  .text-lg-start {
    text-align: start !important;
  }
}

.text-large {
  font-size: large;
}

@media (min-width: 992px) {
  .heading-intro-mainview {
    font-size: 55px;
  }
}

@media (min-width: 768px) and (max-width: 992px) {
  .heading-intro-mainview {
    font-size: 50px;
  }
}

.text-intro-pages {
  font-family: 'Open Sans';
}

/* Per la visualizzazione di testi "troncati" */

.truncate-popover {
  position: relative;
  max-width: 200px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: pointer;
}

.truncate-popover:hover::after {
  content: attr(data-fulltext);
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 6px 10px;
  border-radius: 4px;
  white-space: normal;
  max-width: 300px;
  z-index: 10;
  font-size: 14px;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.3);
}

.text-small {
  font-size: 0.75em;
}

.text-truncate {
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}

.text-black {
  color: black;
}

