%heading{
    font-family: "Montserrat",Helvetica,Arial,sans-serif;
    font-weight: bold;
    margin: 15px 0;
    display: block;
}

h1, .heading-1{
    @extend %heading;
    font-size: 48px;
}

h2, .heading-2{
    @extend %heading;
    font-size: 34px;
}

h3, .heading-3{
    @extend %heading;
    font-size: 28px;
}

h4, .heading-4{
    @extend %heading;
    font-size: 24px;
}

h5, .heading-5{
    @extend %heading;
    font-size: 20px;
}

h6, .heading-6{
    @extend %heading;
    font-size: 18px;
}

h7, .heading-7{
    @extend %heading;
    font-size: 16px;
}

h8, .heading-8{
    @extend %heading;
    font-size: 18px;
    font-weight: normal;
}

h9, .heading-9{
    @extend %heading;
    font-size: 16px;
    font-weight: normal;
}

p, .body-1{
    font-size: 16px;
}

.body-2{
    font-size: 14px;
}

.body-3{
    font-size: 12px;
}

.italic{
    font-style: italic;
}

.bold{
    font-weight: bold;
}

blockquote, .blockquote{
    padding-left: 10px;
    border-left: 1px solid $grey;
    line-height: 28px;
}

.blockquote__quote{
    position: relative;
    border: none;
    margin-left: 110px;
    padding-left: 20px;

    &:before{
        font-weight: 900;
        font-family: 'Font Awesome 5 Free';
        font-size: 48px;
        content: "\f10d";
        width: 110px;
        position: absolute;
        top: calc(50% - 55px);
        right: 100%;
        background: #079dad;
        color: white;
        border-radius: 50%;
        line-height: 110px;
        text-align: center;
    }
}

a, .link{
    color: var(--tisc-primary);
    text-decoration: none;

    &:hover{
        color: var(--tisc-primary-darken);
        text-decoration: underline;
    }
}

.dark-theme a, .dark-theme .link{
   color: color('blue', 4);
   &:hover{
      color: color('blue', 2);
   }
}

.list__unordered, .list__ordered, .sub-list{
    li {
        margin: 5px 0;
    }
}

.list__unordered, .list__ordered, .list__unordered--lg {
    margin: 15px 0;;
}

.list__unordered {
    &--lg {
        li:before {
            font-size: .8rem;
            content: "\f111";
            line-height: 2.4rem;
            padding-right: 10px;
            font-family: 'Font Awesome 5 Free';
            font-weight: 900;
            color: #106673;
        }
    }

    li {
        position: relative;

        &:before {
            font-size: .5rem;
            content: "\f111";
            line-height: 1rem;
            padding-right: 10px;
            font-family: 'Font Awesome 5 Free';
            font-weight: 900;
            position: relative;
            bottom: .2rem;
        }
    }
}

.list__ordered {
    padding-left: 20px;
}

.sub-list {
    padding: 0 0 0 1rem;

    li:before {
        font-weight: 500;
    }
}