/* Global */

section {
  scroll-margin-top: 100px;
}

::selection {
  background-color: #b734b4;
  color: snow;
}

.link-arrow {
  margin-left: 8px;
  margin-bottom: 1px;
}

/* Logo securitum */

.logo-securitum {
  min-width: 140px;
}

@media (min-width: 768px) {
  .logo-securitum {
    min-width: 175px;
  }
}

/* Custom bullet */

.bullet-custom .bullet-item {
  display: flex;
  gap: 20px;
  margin-bottom: 16px;
  align-items: flex-start;
}

.bullet-custom .bullet-item::before {
  content: '';
  display: block;
  width: 2px;
  align-self: stretch;
  background: var(--bs-primary);
  flex-shrink: 0;
  margin-top: 4px;
}

/* Headings */

.typ-szkolen-heading {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--bs-gray-200);
  padding: 1rem;
}

.typ-szkolen-heading::before {
  color: var(--bs-primary);
  content: "_";
  display: inline-block;
  font-weight: 700;
  opacity: 1;
  animation: cursorBlink 1s steps(1, end) infinite;
}

@keyframes cursorBlink {
  0%, 49% {
    opacity: 1;
  }
  50%, 100% {
    opacity: 0;
  }
}

/* Karta szkolenia */

@media (max-width: 576px) {
  .course-img-card {
    display: none;
  }
}

/* Kategoria szkolen */

.badge-kategoria-szkolen {
  margin: 0px 6px;
}

.kategoria-szkolen {
  margin: 0px 12px;
}

/* Opis szkolenia */

.parametr-szkolenia-tytul {
  color: gray;
  margin-right: 12px;
}

.parametr-szkolenia-wartość {
  margin-right: 12px;
}

.trener-dane {
  margin-right: 12px;
  color: var(--bs-primary);
}

.dla-kogo-szkolenie-badge span {
  font-family: 'IBM Plex Sans';
  text-transform: uppercase;
  font-weight: 300;
  font-size: x-small;
  border: 1px gray solid;
  border-radius: 4px;
  padding: 4px 8px;
}

/* Modal */

.modal {
  --bs-modal-header-border-width: 0;
  --bs-modal-footer-border-width: 0;
}

