a {
  color: rgba(var(--bs-link-color-rgb),var(--bs-link-opacity,1));
  text-decoration: underline;
}

a:hover {
  --bs-link-color-rgb: var(--bs-link-hover-color-rgb);
}

*, ::after, ::before {
  box-sizing: border-box;
}

.d-flex {
  display: flex!important;
}

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

.align-items-center {
  align-items: center!important;
}

.bi::before, [class*=" bi-"]::before, [class^=bi-]::before {
  display: inline-block;
  font-family: bootstrap-icons!important;
  font-style: normal;
  font-weight: 400!important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -.125em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.bi-arrow-up-short::before, .fa-ticket:before {
  content: "\f145";
}

a {
  color: rgba(var(--bs-link-color-rgb),var(--bs-link-opacity,1));
  color: var(--accent-color);
  text-decoration: none;
  transition: .3s;
}

a:hover {
  --bs-link-color-rgb: var(--bs-link-hover-color-rgb);
  color: color-mix(in srgb,var(--accent-color),transparent 25%);
  text-decoration: none;
}

.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: .4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb,var(--accent-color),transparent 20%);
  color: var(--contrast-color);
}

.scrolled .scroll-top {
  visibility: visible;
  opacity: 1;
}

