html {
  font-family: $primary-font;
  color: $primary;
  font-size: 62.5%;

  -webkit-font-smoothing: antialiased;

  // @media (min-width: $K2Large) {
  //   font-size: 0.52vw;
  // }

}

strong,
b {
  font-weight: 600;
}

em,
i {
  font-style: italic;
}

mark {
  background-color: transparent;
  color: $secondary;
}

a {
  transition: .2s all;
  color: inherit
}

h1,
.h1 {
  font-family: $secondary-font;
  @include adaptiveProperty("font-size", 52, 34);
  position: relative;
  font-weight: 400;
  line-height: 1;

  @media(min-width: $tabletSmallP1) {
    line-height: 1.2;
  }
}

h2,
.h2 {
  font-family: $secondary-font;
  @include adaptiveProperty("font-size", 48, 32);
  position: relative;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.3px;

  @media(min-width: $tabletSmallP1) {
    letter-spacing: -0.4px;
  }
}

h3,
.h3 {
  font-family: $secondary-font;
  @include adaptiveProperty("font-size", 34, 26);
  position: relative;
  font-weight: 400;
  line-height: 1;

  @media(min-width: $tabletSmallP1) {
    line-height: 1.2;
  }
}

h4,
.h4 {
  font-family: $secondary-font;
  @include adaptiveProperty("font-size", 32, 26);
  position: relative;
  font-weight: 400;
  line-height: 1;

  @media(min-width: $tabletSmallP1) {
    line-height: 1.3;
  }
}

h5,
.h5 {
  font-family: $secondary-font;
  @include adaptiveProperty("font-size", 24, 20);
  position: relative;
  font-weight: 400;
  line-height: 1.3;

}

h6,
.h6 {
  font-family: $secondary-font;
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 400;
}




p,
.p1,
li {
  @include adaptiveProperty('font-size', 16, 14);
  line-height: 1.5;
}


h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 1.25rem;
}

p,
li,
ul,
ol {
  margin-top: 1.25rem;
}

h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
li,
p {
  &:first-child {
    margin-top: 0;
  }

  &:last-child {
    margin-bottom: 0;
  }
}


table {
  border: 1px solid #DDDDDD;
  max-width: 100rem;
  width: 100%;

  th {
    text-align: left;
    @extend .p1;
    font-weight: 700;
    margin-top: 1.25rem;
    text-transform: uppercase;
  }

  td {
    border: 1px solid #DDDDDD;
    color: #404040;
    @extend .p1;
    margin-top: 1.25rem;
    width: 42%;

    &:last-child {
      width: 58%;
    }


  }
}

ul,
ol {
  list-style: disc;
  margin: 0;
  padding-left: 1rem;

  @media(min-width: $tabletP1) {
    margin-top: 1.25rem;
  }
}


ol {
  list-style-type: decimal;

}


.reset-list {
  list-style-type: none;
  padding: unset;
  margin: unset;

  li {
    padding: unset;
    margin: unset;
    line-height: 1;

    &:after {
      display: none;
      width: unset;
      height: unset;
      position: unset;
      top: unset;
      left: unset;
      background-color: unset;
    }
  }
}