:root {
  /* --accent: #1762a7; */
  --black: #000;
  --dark: #2f303a;
  --light-black: #26262e;
  --accent: #45c36d;
  --accent-hover: #2180d8;
  --white: #fff;
  --gray: #3b3e460d;
  --blue: #3856b0;
  --red: #b038a0;
  --purple: #3a38b0;
}

.grid {
  display: grid;
}

.flex {
  display: flex;
}

.flex-column {
  flex-direction: column;
}

.space-between {
  justify-content: space-between;
}

.main-center {
  justify-content: center;
}

.cross-center {
  align-items: center;
}

.main-start {
  justify-content: flex-start;
}

.main-end {
  justify-content: flex-end;
}

.align-end {
  align-items: flex-end;
}

.align-start {
  align-items: flex-start;
}

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

.wrap {
  flex-wrap: wrap;
}

.gap-_3 {
  gap: 0.3rem;
}

.gap-_5 {
  gap: 0.5rem;
}

.gap-_8 {
  gap: 0.8rem;
}

.gap-1 {
  gap: 1rem;
}

.gap-1_4 {
  gap: 1.4rem;
}

.gap-1_5 {
  gap: 1.5rem;
}

.gap-1_7 {
  gap: 1.7rem;
}

.gap-1_8 {
  gap: 1.8rem;
}

.gap-2 {
  gap: 2rem;
}

.gap-3 {
  gap: 3rem;
}

.fs-_8 {
  font-size: 0.8rem;
}

.fs-1 {
  font-size: 1rem;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.w-1 {
  width: 1rem;
}

.w-1_1 {
  width: 1.1rem;
}

.w-1_2 {
  width: 1.2rem;
}

.w-1_3 {
  width: 1.3rem;
}

.w-1_4 {
  width: 1.4rem;
}

.w-1_5 {
  width: 1.5rem;
}

.tac {
  text-align: center;
}

.p-20 {
  padding: 30px;
}

.sticky {
  position: sticky;
  top: 0;
  z-index: 1;
}

.bold {
  font-weight: bold;
}

.none {
  display: none;
}

.cap {
  text-transform: capitalize;
}

.m-0 {
  margin: 0 !important;
}
