@each $fontsMap, $value in $fontsMap {
  .font-#{$fontsMap} {
    font-family: #{$value};
  }
}

.fw-extralight {
  font-weight: 100;
}

.fw-light {
  font-weight: 300;
}

.fw-normal {
  font-weight: 400;
}

.fw-medium {
  font-weight: 500;
}

.fw-semibold {
  font-weight: 600;
}

.fw-bold {
  font-weight: 700;
}

.fw-extrabold {
  font-weight: 800;
}

.fs-md {
  font-size: 18px;
}

.fs-xs {
  font-size: 14px;
}
.fs-40 {
  font-size: 40px;
}

@include lg {
  .fs-40 {
    font-size: 34px;
  }
}

@include md {
  .fs-40 {
    font-size: 30px;
    &.mt-n3 {
      margin-top: -0.6rem;
    }
    &.mt-n2 {
      margin-top: -0.2rem;
    }
  }
}