.mt-1 {
  margin-top: 1rem;
}

.mb-1 {
  margin-bottom: 1rem;
}

.ms-1 {
  margin-left: 1rem;
}

.me-1 {
  margin-right: 1rem;
}

.mt-2 {
  margin-top: 2rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.ms-2 {
  margin-left: 2rem;
}

.me-2 {
  margin-right: 2rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.w-fit {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.text-uppercase {
  text-transform: uppercase;
}

.flex-fill {
  flex: 1 1 auto;
}

@media(max-width: 991px) {
  .wrap-991 {
    flex-wrap: wrap;
  }
}

.gap-1 {
  gap: 0.25rem;
}

.h-100 {
  height: 100%;
}

.w-100 {
  width: 100%;
}

.fls-0 {
  flex-shrink: 0;
}

.d-block {
  display: block;
}

.grayscalled {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
}

@media(max-width: 991px) {
  .only-pc {
    display: none!important;
  }
}

@media(min-width: 992px) {
  .only-mobile {
    display: none!important;
  }
}

.text-400 {
  font-weight: 400;
}

.text-start {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-end {
  text-align: end;
}

.text-uppercase {
  text-transform: uppercase;
}

.pt-0 {
  padding-top: 0;
}

.pb-0 {
  padding-bottom: 0;
}

.py-0 {
  padding-top: 0;
  padding-bottom: 0;
}

.pt-1 {
  padding-top: 1rem;
}

.rotate-45 {
  rotate: 45deg;
}