/* fonts */
:root {
  --primary-ff: 'Poppins', sans-serif;
  --secondary-ff: "Roboto", sans-serif;
  --fs-11: 11px;
  --fs-12: 12px;
  --fs-13: 13px;
  --fs-14: 14px;
  --fs-15: 15px;
  --fs-16: 16px;
  --fs-18: 18px;
  --fs-20: 20px;
  --fs-21: 21px;
  --fs-22: 22px;
  --fs-24: 24px;
  --fs-25: 25px;
  --fs-30: 30px;
  --fs-32: 32px;
  --fs-34: 34px;
  --fs-36: 36px;
  --fs-40: 40px;
  --fs-46: 46px;
  --fs-48: 48px;
  --fs-50: 50px;
  --fs-64: 64px;
  --fs-70: 70px;
  --fs-72: 72px;
  --fs-153: 153px;
}

body {
  font-family: var(--primary-ff);
}

.text-fs-0 {
  font-size: 0;
}

.text-fs-11 {
  font-size: var(--fs-11);
}

.text-fs-12 {
  font-size: var(--fs-12);
}

.text-fs-13 {
  font-size: var(--fs-13);
}

.text-fs-14 {
  font-size: var(--fs-14);
}

.text-fs-16 {
  font-size: var(--fs-16);
}

.text-fs-18 {
  font-size: var(--fs-18);
}

.text-fs-20 {
  font-size: var(--fs-20);
}

.text-fs-21 {
  font-size: var(--fs-21);
}

.text-fs-24 {
  font-size: var(--fs-24);
}

.text-fs-25 {
  font-size: var(--fs-25);
}

.text-fs-30 {
  font-size: var(--fs-30);
}

.text-fs-32 {
  font-size: var(--fs-32);
}

.text-fs-34 {
  font-size: var(--fs-34);
}

.text-fs-36 {
  font-size: var(--fs-36);
}

.text-fs-40 {
  font-size: var(--fs-40);
}

.text-fs-48 {
  font-size: var(--fs-48);
}

.text-fs-50 {
  font-size: var(--fs-50);
}

.text-fs-64 {
  font-size: var(--fs-64);
}

.text-fs-70 {
  font-size: var(--fs-70);
}

.text-fs-72 {
  font-size: var(--fs-72);
}

/* fontweight */

:root {
  --fw-thin: 100;
  --fw-extra-light: 200;
  --fw-light: 300;
  --fw-normal: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-extra-bold: 800;
  --fw-black: 900;
}

body {
  font-weight: var(--fw-normal);
}

.fw-thin {
  font-weight: var(--fw-thin);
}

.fw-extra-light {
  font-weight: var(--fw-extra-light);
}

.fw-light {
  font-weight: var(--fw-light);
}

.fw-normal {
  font-weight: var(--fw-normal);
}

.fw-medium {
  font-weight: var(--fw-medium);
}

.fw-semibold {
  font-weight: var(--fw-semibold);
}

.fw-bold {
  font-weight: var(--fw-bold);
}

.fw-extra-bold {
  font-weight: var(--fw-extra-bold);
}

.fw-black {
  font-weight: var(--fw-black);
}

/* line height */

.lh-1 {
  --text-lh: 1;
  line-height: 1;
}

.lh-1_166 {
  --text-lh: 1.166;
  line-height: 1;
}

.lh-1_25 {
  --text-lh: 1.25;
  line-height: 1.25;
}

.lh-1_2857 {
  --text-lh: 1.2857;
  line-height: 1.2857;
}

.lh-1_33 {
  --text-lh: 1.33333;
  line-height: 1.33333;
}

.lh-1_43 {
  --text-lh: 1.43;
  line-height: 1.43;
}

.lh-1_5 {
  --text-lh: 1.5;
  line-height: 1.5;
}

.lh-1_625 {
  --text-lh: 1.625;
  line-height: 1.625;
}

.lh-1_75 {
  --text-lh: 1.75;
  line-height: 1.75;
}

.lh-2 {
  --text-lh: 2;
  line-height: 2;
}
