/*** Satoshi - Font Weights ***/
/*
font-family: 'Satoshi', sans-serif;
Light - 300
Regular - 400
Medium - 500
Bold - 700
Black - 900
 */
@import url("satoshi/satoshi.css"); /* Using an internal url */

/*** aesthet-nova - Font Weights ***/
/*
Regular - 400
Medium - 500
 */

/*** Font Declarations ***/

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

p, body {
    font-family: "aesthet-nova", serif;
    font-size: 16px;
    line-height: 22px;
}

p, ul, ol {
    margin-bottom: 16px;
    color: #7f7f7f;
}

p.small,
div.small > p {
    font-size: 14px;
    line-height: 21px;
}

p.large,
div.large > p {
    font-size: 18px;
    line-height: 28px;
}


b, strong {
    color: #040404;
    font-weight: 600; /* Bold */
}

a {
    text-decoration: underline;
}

a.button {
    text-decoration: none;
}




/*h1*/
h1,
.h1style {
    font-size: 62px;
    line-height: 80px;
    font-weight: 700; /* bold */
    margin-bottom: 30px;
    font-family: 'Satoshi', sans-serif;
}


/* h1.alt (large) */
h1.alt,
.h1style.alt {
    font-size: 80px;
    line-height: 104px;
    font-weight: 700; /* bold */
    margin-bottom: 30px;
    font-family: 'Satoshi', sans-serif;
}


/*h2*/
h2,
.h2style {
    font-size: 48px;
    line-height: 62px;
    font-weight: 700;  /* bold */
    margin-bottom: 30px;
    font-family: 'Satoshi', sans-serif;
}


/*h3*/
h3,
.h3style {
    font-size: 40px;
    line-height: 52px;
    font-weight: 700;  /* bold */
    margin-bottom: 30px;
    font-family: 'Satoshi', sans-serif;
}


/*h4*/
h4,
.h4style {
    font-size: 32px;
    line-height: 41px;
    font-weight: 700;  /* bold */
    margin-bottom: 20px;
    font-family: 'Satoshi', sans-serif;
}


/*h5*/
h5,
.h5style {
    font-size: 25px;
    line-height: 32px;
    font-weight: 500;  /* medium */
    margin-bottom: 15px;
    font-family: 'Satoshi', sans-serif;
}


/*h6*/
h6,
.h6style {
    font-size: 20px;
    line-height: 26px;
    font-weight: 400;  /* regular */
    margin-bottom: 15px;
    font-family: "aesthet-nova", serif;
}

/* accent text */
p.accent-text {
    text-transform: uppercase;
    color: var(--black);
    font-size: 14px;
    line-height: 22px;
    font-family: satoshi, sans-serif;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

p.sub-heading {
    text-transform: uppercase;
    font-size: 20px;
    line-height: 22px;
    color: var(--black);
    margin-bottom: 10px;
    letter-spacing: 2px;
}


/*** Laptop - Large Tablet ***/

@media(max-width: 1399.98px) {

    p, body {
        font-size: 16px;
        line-height: 22px;
    }

    /*h1*/
    h1,
    .h1style {
        font-size: 48px;
        line-height: 62px;
        margin-bottom: 30px;
    }

    /* h1.alt (large) */
    h1.alt,
    .h1style.alt {
        font-size: 62px;
        line-height: 80px;
        font-weight: 700; /* bold */
        margin-bottom: 30px;
    }

    /*h2*/
    h2,
    .h2style {
        font-size: 40px;
        line-height: 52px;
        margin-bottom: 20px;
    }

    /*h3*/
    h3,
    .h3style {
        font-size: 32px;
        line-height: 41px;
        margin-bottom: 20px;
    }

    /*h4*/
    h4,
    .h4style {
        font-size: 25px;
        line-height: 32px;
        margin-bottom: 20px;
    }

    /*h5*/
    h5,
    .h5style {
        font-size: 20px;
        line-height: 28px;
        margin-bottom: 15px;
    }

    /*h6*/
    h6,
    .h6style {
        font-size: 18px;
        line-height: 26px;
        margin-bottom: 15px;
    }

}




/*** Mobile ***/
@media(max-width: 575px) {

    p, body {
        font-size: 16px;
        line-height: 24px;
    }

    /*h1*/
    h1,
    .h1style {
        font-size: 42px;
        line-height: 50px;
        margin-bottom: 20px;
    }

    /* h1.alt (large) */
    h1.alt,
    .h1style.alt {
        font-size: 48px;
        line-height: 56px;
        margin-bottom: 20px;
    }

    /*h2*/
    h2,
    .h2style {
        font-size: 30px;
        line-height: 36px;
        margin-bottom: 15px;
    }

    /*h3*/
    h3,
    .h3style {
        font-size: 24px;
        line-height: 32px;
        margin-bottom: 15px;
    }

    /*h4*/
    h4,
    .h4style {
        font-size: 20px;
        line-height: 28px;
        margin-bottom: 15px;
    }

    /*h5*/
    h5,
    .h5style {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 15px;
    }

    /*h6*/
    h6,
    .h6style {
        font-size: 17px;
        line-height: 24px;
        margin-bottom: 15px;
    }

}


