/* font families *//* @value fg-acme: 'Acme', sans-serif; *//* @value quicksand: 'Quicksand', sans-serif; *//* background *//* highlight colors *//* theme colors */
/* utility classes for use */
/* colors */
.text-primary {
  color: #201A23;
}
.text-primary-b {
  color: rgba(45, 45, 36);
}
.text-secondary {
  color: #631D76;
}
.text-secondary-b {
  color: #A43DA4;
}
/* container */
.container {
  width: 100%;
  height: auto;
  padding: 0 10px;
  margin: 10px;
}
.container.fluid {
  width: 90%;
  margin: 0 auto;
}
/* flex */
.flex {
  display: flex;
  flex-flow: row wrap;
}
.flex.flex-column {
  flex-flow: column wrap;
}
.flex.align-items-center {
  align-items: center;
}
.flex.justify-content-center {
  justify-content: center;
}
.flex.justify-content-evenly {
  justify-content: space-evenly;
}
/* figures */
.figure {
  width: 100%;
  height: auto;
  overflow: hidden;
  margin: 2px;
  padding: 2px;

  max-width: 235px;
}
.figure img {
  width: 100%;
  height: auto;

  max-height: 200px;
}
/* width */
.w-100 {
  width: 100% !important;
}
.w-90 {
  width: 90% !important;
}
.w-80 {
  width: 80% !important;
}
.w-70 {
  width: 70% !important;
}
.w-60 {
  width: 60% !important;
}
.w-50 {
  width: 50% !important;
}
.w-40 {
  width: 40% !important;
}
.w-30 {
  width: 30% !important;
}
/* hidden */
.visually-hidden {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
/* text */
.text-center {
  text-align: center;
}
/* margin */
.m-auto {
  margin: 0 auto;
}
