/* Fonts */

/* primary font families ----------------------------------*/

.title {
    font-family: 'Roboto Condenced', sans-serif;
    font-size: 4.209rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    padding: 0;
    color: var(--primary);
    line-height: 1.1;
    padding-right: 42%;
}

.titleSub {
    font-family: roboto, sans-serif;
    color: var(--dark);
    font-size: 1.1rem;
    padding-right: 50%;
    font-weight: 700;
}

h1, h2, h3{
    font-family: "Crimson Pro", serif;
}

p,
a,
button,
h4,
h5 {
    font-family: roboto, sans-serif;
}

h1 {
    font-size: 3.157rem;
    font-weight: 600;
    margin-top: 0;
    line-height: 1.3;
}
h2, h3, h4, h5 {
    margin: 2.369rem 0 1.38rem;
    line-height: 1.3;
}
h2 {
    font-size: 2.369rem;
    font-weight: 600;
}
h3 {
    font-size: 1.777rem;
    font-weight: 500;
}
h4 {
    font-size: 1.333rem;
    font-weight: 700;
}

h5 {
    font-size: 1.333rem;
    font-weight: 700;
    margin: 0;
    padding: 0;
}

p { 
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 1rem;
    line-height: 1.75;
}

a,
button {
    text-decoration: underline;
    cursor: pointer;
    color: var(--dark);
}

a,
button,
.btn,
.btnText {
    font-size: 1.138rem;
    font-weight: 700;
}


.link {
    font-size: 1.333rem;
    font-weight: 700;
    color: var(--dark);
}
.link:hover {
    color: var(--alt1);
}

/* font styling ----------------------------------- */
.textSmall {
    font-size: 0.9rem;
    font-weight: 200;
}

.textHeavy {
    font-weight: 700;
}

.removeHead {
    margin-top: 300px;
}

/* misc */

mark {
    background-color: var(--primary);
    color: var(--light);
    text-indent: -40px;
    padding-left: 1rem;
    padding-right: 1rem;
}

::selection {
    color: var(--primary);
    background-color:rgba(48, 48, 48, 0.096);
}

.title,
h1,
h2,
h3,
h4,
h5,
p,
a,
button,
.sideLine {
    z-index: 100;
    margin-top: 0;
    padding-top: 0;
}

.lineHeight {
    line-height: 1;
}





/* Bonus fonts */
.btn,
.navLink {
    font-family: roboto, sans-serif;
    font-weight: 600;
}

.navLink,
.navContactBtn {
    font-size: 1.2rem;
}

.btnPrimary,
.btnSecondary {
    font-size: 1.138rem;

}

.CTA-header {
    font-family: Roboto Condenced, sans-serif;
    font-size: 3.369rem;
    font-weight: 700;
    margin: 0;
    padding: 0;
    line-height: 1.3;
}


/* responsive ----------------------------------------------------
------------------------------------------------ */
/* Tablet landscape - down */
@media (max-width: 1024px) { 
    .title {
        padding-right: 0;
    }
    .titleSub {
        padding-right: 10rem;
    }
}

/* Phone-only */
@media (max-width: 599px) { 
    .title {
        font-size: 3.157rem;
    }
    h1,
    h2 {
        line-height: 1;
    }
    
    .titleSub {
        padding-right: 0;
    }
}

/* Tablet ONLY*/
@media (min-width: 600px) and (max-width: 1024px) { 
    
}

/* Desktop small ONLY */
@media (min-width: 1025px) and (max-width: 1799px) {
            
}

/* Desktop mid */
@media (min-width: 1800px) { 
    
}