/* MAIN */
    .type-editor h1, .type-editor h2, .type-editor h3, .type-editor h4, .type-editor h5, .type-editor p, .type-editor ul, .type-editor ol {
        max-width: 46rem;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .type-editor a {
        color: var(--color__fill-1);
        font-weight: 700;
        text-decoration: none;
    }
    .type-editor a:hover {
        color: var(--color__black);
        transition: all 0.32s;
    }

    .type-editor .--max-width {
        max-width: 46rem;
        width: 100%;
    }

    .type-editor > *:first-child {
        margin-top: 0px;
    }

/*Headign*/

    h1, .h1 {
        font-size: 3.3rem;
        line-height: 5rem;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: .25rem;
    }
    h1 {
    }

    h2, .h2 {
        font-size: 3rem;
        line-height: 3.5rem;
        font-weight: 600;
        text-transform: uppercase;
    }
    h2 {
 margin-bottom: 2rem;
 }

    h3, .h3 {
        font-size: 2rem;
        line-height: 2.5rem;
        font-weight: 600;
    }
    h3 {
        color: var(--color__text-1);
    }

    h4, .h4 {
        font-size: 1.5rem;
        line-height: 2rem;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: .125rem;
    }
    h4 {
        color: var(--color__text-1);
    }

    h5, .h5 {
        font-size: 1.25rem;
        line-height: 1.75rem;
        font-weight: 600;
    }
    h5 {
        color: var(--color__text-1);
    }


    h1 b, .h1 b, h2 b, .h2 b, h3 b, .h3 b, h4 b, .h4 b, h5 b, .h5 b {
        font-weight: font-weight;
    }

    .type-editor h1, .type-editor .h1 {
        margin-top: 4rem;
        margin-bottom: 3rem;
    }

    .type-editor h2, .type-editor .h2 {
        margin-top: 4.5rem;
        margin-bottom: 1.5rem;
    }

    .type-editor h3, .type-editor .h3 {
        margin-top: 3rem;
        margin-bottom: 1.5rem;
    }

    .type-editor h4, .type-editor .h4 {
        margin-top: 3rem;
        margin-bottom: 1.5rem;
    }

    .type-editor h5, .type-editor .h5 {
        margin-top: 1.75rem;
        margin-bottom: 1.25rem;
    }


/*Paragraphs*/

    p {
        margin: 1.5rem 0px;
    }

    p b {
        font-weight: 700;
    }

    .p.--xl, p.--xl{
        font-size: 1.25rem;
        line-height: 1.75rem;
    }

    p.--xl{
        color:  var(--color__text-1);
    }

    .p.--l, p.--l{
        font-size:  1.125rem;
        line-height: 1.5rem;
    }

    p.--l{
        color:  var(--color__text-1);
    }

    p, .--p {
        font-size: 1rem;
        line-height: 1.5rem;
    }
    p {
        color: var(--color__text-1);
    }

    .p.--m, p.--m{
        font-size: 0.875rem;
        line-height: 1.25rem;
    }

    p.--m{
        color: var(--color__text-1);
    }

    .p.--s, p.--s{
        font-size: 0.75rem;
        line-height: 1rem;
    }

    p.--s{
        color: var(--color__text-2);
    }

    .p.--xs, p.--xs{
        font-size: 0.75rem;
        line-height: 1rem;
    }

    p.--xs {
        color: var(--color__text-2);
    }

    .type-editor p:first-child, .type-editor li:first-child {
        margin-top: 0px;
    }

    .type-editor p:last-child, .type-editor li:last-child {
        margin-bottom: 0px;
    }





/*Bulleted*/

    .type-editor ol {
        padding-left:  1rem;
    }

    .type-editor ol li {
        font-size: 1rem;
        line-height: 1.25rem;
        margin: 0.5rem 0rem;
        color: var(--color__text-1);
        position: relative;
        padding-left: 1rem;
        list-style-type: decimal;
    }

    .type-editor ul {}

    .type-editor ul li {
        font-size: 1rem;
        line-height: 1.25rem;
        margin: 0.5rem 0rem;
        color: var(--color__text-1);
        position:  relative;
        padding-left:  2rem;
    }

    .type-editor ul li:after {
        content:  "";
        width:  0.5rem;
        height:  0.5rem;
        background-color: var(--color__fill-1);
        position:  absolute;
        left:  0rem;
        top: 6px;
        border-radius:  0.5rem;
        background-size: 0.75rem;
    }

    .type-editor ul.--check li:after {
        width: 1.5rem;
        height: 1.5rem;
        border-radius: 1.5rem;
        background-image: url(../img/element__check--white.svg);
        background-repeat: no-repeat;
        background-position: center 0.2rem;
        top: -.15rem;
        background-size: 1rem;
    }

    .type-editor ul.--check li {
        margin: 1rem 0px;
        padding-left: 2.5rem;
    }


/*table */

    .type-editor  .r-table {
        width: 100%;
        margin: 48px auto;
        margin-bottom: 24px;
    }

    .type-editor  .r-table table {
        border-spacing: 0px;
    }

    .type-editor  .r-table table tr {
        font-size: 1rem;
        transition: all .24s ease;
    }

    .type-editor  .r-table table tr td {}

    .type-editor  .r-table table th {
        text-align: left;
    }


    .type-editor  table {
        border:1px solid #dedede;width: 100%;
    }

    .type-editor  table tr th {
        font-weight: 700;
        background: var(--color__fill-1);
        color: var(--color__white);
        border-right: 1px solid rgba(0, 0, 0, 0.12);
        border-bottom: 1px solid rgba(0, 0, 0, 0.12);
        padding: 1.5rem 1rem;
    }

    .type-editor  table tr td {
        border-right: 1px solid rgba(0, 0, 0, 0.12);
        border-bottom: 1px solid rgba(0, 0, 0, 0.12);
        padding: 1.5rem;
    }

    .type-editor  .r-table table .--center {
        text-align: center;
    }

    .type-editor  table tr:nth-child(2n-1) {
        background-color: var(--color__gray-1);
    }

    .type-editor  .r-table {
        max-width: 100%;
        margin: 3rem auto;
        margin-bottom: 1.5rem;

    }

    .type-editor  table tr:last-child td {
        border-bottom: 0px;
    }

    .type-editor  table tr td:last-child {
        border-right: 0px;
    }

    .type-editor  table tr:hover {
        background-color: var(--color__gray-2);
        box-shadow: inset 0.4rem 0px 0px 0px var(--color__fill-1);
    }

    .type-editor  table tr th:last-child {
        border-right: none;
    }

    .type-editor  p:first-child {
        margin-top: 0px;
    }

    .type-editor  p:last-child {
        margin-bottom: 0px;
    }

/* blockquote */

    .type-editor blockquote {
        background-color: var(--color__fill-4);
        padding: 3rem 3rem;
        position: relative;
        border-left: 6px solid var(--color__fill-1);
        padding-left: 3.5rem;
        background-repeat: no-repeat;
        background-position: calc(100% - 3.5rem) calc(100% - 3rem);
        margin-left: auto;
        margin-right: auto;
        margin: 2.5rem auto;
    }
    .type-editor blockquote p {
        max-width: 100%;
        margin: 0px !important;
    }

    .type-editor blockquote.--citation {
        background-color: var(--color__fill-4);
        border-left: 0px;
        text-align: center;
        padding-top: 5rem;
        margin-top: 5rem;
    }

    .type-editor blockquote.--citation:after {
        content: "";
        width: 5rem;
        height: 5rem;
        position: absolute;
        left: calc(50% - 2.5rem);
        display: flex;
        justify-content: center;
        align-items: center;
        top: -2.5rem;
        background-color: var(--color__fill-4);
        border: 8px solid white;
        border-radius: 5rem;
        background-size: 1.6875rem auto;
        background-image: url(../img/element__citation.svg);
        background-repeat: no-repeat;
        background-position: center;
    }


/*steps*/


    .steps {
        margin: 3rem auto;
    }

    .steps__step {
        margin: 0px auto;
        width: 100%;
        align-items: stretch;
    }

    .steps__numb {
        width: 3.5rem;
        position: relative;
    }

    .steps__numb div {
        width: 3.5rem;
        height: 3.5rem;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 3.5rem;
        background-color: var(--color__fill-1);
        color: white;
        font-size: 1.5rem;
        z-index: 2;
        position: relative;
        font-weight: 700;
    }

    .steps__numb:after {
        content: "";
        width: 0.25rem;
        height: calc(100% - 0.0rem);
        position: absolute;
        left: 1.625rem;
        top: 3.5px;
        z-index: 0;
        background-color: var(--color__fill-1);
    }

    .steps__desc {
        flex: 1;
        padding-left: 2.5rem;
        padding-bottom: 1.5rem;
    }

    .steps__desc h2:first-child, .steps__desc h3:first-child, .steps__desc h4:first-child, .steps__desc h5:first-child, p:first-child {
        margin-top: 0.75rem !important;
    }

    .steps__step:last-child .steps__numb:after {
        display: none;
    }

    .steps__desc:last-child {
        padding-bottom: 0px;
    }





/*MEDIA*/
    @media screen and (max-width: 640px) {

    }

    @media screen and (max-width: 768px) {



    }

    @media screen and (max-width: 991px) {

        .p.--xl, p.--xl {
            font-size: 1.25rem;
            line-height: 1.75rem;
        }

        h1, .h1 {
            font-size: 3rem;
            line-height: 3.5rem;
        }

        h2, .h2 {
            font-size: 2.5rem;
            line-height: 3rem;
        }

        h3, .h3 {
            font-size: 2rem;
            line-height: 2.5rem;
        }

        h4, .h4 {
            font-size: 1.75rem;
            line-height: 2.25rem;
        }


        .type-editor  .r-table {
            overflow-x: scroll;
        }
        .type-editor  table {
            border: 1px solid #dedede;
            width: 100%;
            min-width: 64rem;
        }

        .type-editor blockquote {
            padding: 2rem;
        }

        .type-editor blockquote.--citation:after {
            width: 4rem;
            height: 4rem;
            top: -2rem;
            left: calc(50% - 2rem);
        }

    }

    @media screen and (max-width: 1024px) {


    }
    @media screen and (max-width: 1199px) {

    }

    @media screen and (max-width: 1359px) {

    }

    @media screen and (max-width: 1366px) {

    }

    @media screen and (max-width: 1440px) {

    }

    @media screen and (max-width: 1680px) {

    }
