/*=========================================
SAMVET DESIGN SYSTEM
TYPOGRAPHY
=========================================*/

/* Heading */

h1{
font-size:72px;
font-weight:800;
line-height:1.1;
}

h2{
font-size:56px;
font-weight:700;
line-height:1.2;
}

h3{
font-size:40px;
font-weight:700;
line-height:1.3;
}

h4{
font-size:30px;
font-weight:600;
line-height:1.3;
}

h5{
font-size:24px;
font-weight:600;
line-height:1.4;
}

h6{
font-size:20px;
font-weight:600;
line-height:1.4;
}

/* Paragraph */

p{
font-size:18px;
line-height:1.8;
color:var(--text-light);
}

/* Text Sizes */

.text-xl{
font-size:24px;
}

.text-lg{
font-size:20px;
}

.text-md{
font-size:18px;
}

.text-sm{
font-size:16px;
}

.text-xs{
font-size:14px;
}

/* Font Weight */

.fw-400{font-weight:400;}
.fw-500{font-weight:500;}
.fw-600{font-weight:600;}
.fw-700{font-weight:700;}
.fw-800{font-weight:800;}

/* Text Colors */

.text-primary{
color:var(--primary);
}

.text-secondary{
color:var(--secondary);
}

.text-accent{
color:var(--accent);
}

.text-muted{
color:var(--text-muted);
}

.text-white{
color:var(--text);
}