.hidden {
  display: none !important;
}

.block {
  display: block;
}

.flex {
  display: flex;
}

.inline-flex {
  display: inline-flex;
}

.gap-2 {
  gap: 0.5rem;
}

.justify-between {
  justify-content: space-between;
}

.justify-center {
  justify-content: center;
}

.w-full {
  width: 100%;
}

.uppercase {
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .sm\:hidden {
    display: none !important;
  }

  .sm\:block {
    display: block !important;
  }

  .sm\:justify-content-center {
    justify-content: center;
  }
}

@media (min-width: 992px) {
  .md\:hidden {
    display: none !important;
  }

  .md\:justify-between {
    justify-content: space-between;
  }
}

.quoted::before {
  content: open-quote;
}

.quoted::after {
  content: close-quote;
}

.invert {
  filter: invert(1);
}
