.big-header {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: center;
  width: 100%;
  min-height: 20.625rem;
  padding: 4.375rem 1rem 2.5rem;
  color: var(--white);
  background-image: var(--banner-bol1);
  background-position: center center;
  background-size: cover;
}
.big-header.standard-light {
  height: 75vh;
}
.big-header.bol {
  height: 70vh;
  max-height: 43.75rem;
}
.big-header.bg-01 {
  background-image: var(--banner-bol1);
}
.big-header.bg-02 {
  background-image: var(--banner-bol2);
}
.big-header.bg-03 {
  background-image: var(--banner-bol3);
}
.big-header.bg-04 {
  background-image: var(--banner-bol4);
}
.big-header.bg-05 {
  background-image: var(--banner-bol5);
}
.big-header .filter {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  background-image: linear-gradient(-180deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.1));
}
.skewed {
  position: relative;
  z-index: 2;
}
.skewed::after {
  position: absolute;
  z-index: -1;
  top: 0;
  right: -8px;
  bottom: 0;
  width: 30px;
  content: "";
  transform: skew(-14deg);
  border: inherit;
  border-radius: inherit;
  background-color: inherit;
}
.badge {
  font-size: var(--sm);
  font-weight: var(--bold);
  margin-right: 0.75rem;
  padding: 0.25rem 0.5rem;
  vertical-align: middle;
  text-transform: uppercase;
  color: var(--badge-color);
  border-radius: var(--border-radius-md);
  background-color: var(--badge-bg);
}
.badge.badge-dark {
  color: var(--invert-color);
  background-color: var(--invert-bg);
}
.badge.badge-primary {
  color: var(--primary-contrast);
  background-color: var(--primary);
}
.badge.badge-lg {
  padding: 0.325rem 0.75rem;
}
.badge.badge-sm {
  font-size: var(--xs);
  padding: 0.125rem 0.25rem;
}
.badge.skewed {
  margin-right: 1.25rem;
  padding: 0.125rem 0.125rem 0.125rem 0.325rem;
}
*:not(.badge) + .badge {
  margin-left: 0.75rem;
}
.toasts {
  position: fixed;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
}

/* INITIAL LOADER */
.page-loader {
  display: flex;
  align-content: center;
  justify-content: center;
  min-height: 90vh;
}
.page-loader > * {
  margin: auto;
}