:root {
  --primary-color: #3e3e3e; /* black */
  --secondary-color: #e27513; /* deep orange*/
  --third-color: #ed8323; /* orange */
}

.section_subtitle {
  font-family: "Oswald", sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: var(--first-color);
  line-height: 0.75;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}
.section_title {
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  color: var(--third-color);
  margin-top: 10px;
  letter-spacing: 2px;
}

/* formate */
.justify-end {
  justify-content: flex-end;
}
.justify-center {
  justify-content: flex-center;
}
.flex-items-end {
  align-items: flex-end;
}
/* display */
.hidden {
  display: none;
}
.flex {
  display: flex;
}
.block {
  display: block;
}
.flex-wrap {
  flex-wrap: wrap;
}
.flex-col {
  flex-direction: column;
}
.w-full {
  width: 100%;
}
/* gap 10px */
.g-0 {
  gap: 0px;
}
.g-1 {
  gap: 10px;
}
.g-2 {
  gap: 20px;
}
.g-3 {
  gap: 30px;
}
.g-4 {
  gap: 40px;
}
.g-5 {
  gap: 50px;
}
/* font-size 3.5x */
.fs-1 {
  font-size: 3.5px;
}
.fs-2 {
  font-size: 7px;
}
.fs-3 {
  font-size: 10.5px;
}
.fs-4 {
  font-size: 14px;
}
.fs-5 {
  font-size: 17.5px;
}
.fs-6 {
  font-size: 21px;
}
.fs-7 {
  font-size: 24.5px;
}
.fs-8 {
  font-size: 28px;
}
.fs-9 {
  font-size: 31.5px;
}
.fs-10 {
  font-size: 35px;
}
/* font-weight 100x */
.fw-1 {
  font-weight: 100;
}
.fw-2 {
  font-weight: 200;
}
.fw-3 {
  font-weight: 300;
}
.fw-4 {
  font-weight: 400;
}
.fw-5 {
  font-weight: 500;
}
.fw-6 {
  font-weight: 600;
}
.fw-7 {
  font-weight: 700;
}
.fw-8 {
  font-weight: 800;
}
.fw-9 {
  font-weight: 900;
}
.fw-10 {
  font-weight: 1000;
}
/* line-heigh .25x */
.lh-0 {
  line-height: 0;
}
.lh-1 {
  line-height: 0.25;
}
.lh-2 {
  line-height: 0.5;
}
.lh-3 {
  line-height: 0.75;
}
.lh-4 {
  line-height: 1;
}
.lh-5 {
  line-height: 1.25;
}
.lh-6 {
  line-height: 1.5;
}
.lh-7 {
  line-height: 1.75;
}
.lh-8 {
  line-height: 2;
}
/* font-family */
.ff-mon {
  font-family: Montserrat;
}
.ff-nos {
  font-family: Noto Sans;
}
/* color */
.c-1 {
  color: var(--primary-color);
}
.c-2 {
  color: var(--secondary-color);
}
/* letter-spacing 1x*/
.ls-0 {
  letter-spacing: 0;
}
.ls-1 {
  letter-spacing: 1px;
}
.ls-2 {
  letter-spacing: 2px;
}
.ls-3 {
  letter-spacing: 3px;
}
/* text-transform */
.tt-no {
  text-transform: none;
}
.tt-up {
  text-transform: uppercase;
}
.tt-low {
  text-transform: lowercase;
}
.tt-cap {
  text-transform: capitalize;
}
/* padding .25rem */
.pd-0 {
  padding: 0rem;
}
.pd-1 {
  padding: 0.25rem;
}
.pd-2 {
  padding: 0.5rem;
}
.pd-3 {
  padding: 0.75rem;
}
.pd-4 {
  padding: 1rem;
}
/* padding-left .25rem */
.pd-l-0 {
  padding-left: 0rem;
}
.pd-l-1 {
  padding-left: 0.25rem;
}
.pd-l-2 {
  padding-left: 0.5rem;
}
.pd-l-3 {
  padding-left: 0.75rem;
}
.pd-l-4 {
  padding-left: 1rem;
}
/* padding-right .25rem */
.pd-r-0 {
  padding-right: 0rem;
}
.pd-r-1 {
  padding-right: 0.25rem;
}
.pd-r-2 {
  padding-right: 0.5rem;
}
.pd-r-3 {
  padding-right: 0.75rem;
}
.pd-r-4 {
  padding-right: 1rem;
}
.blur-5 {
  filter: blur(5px);
}