:root {
    --clr-smoke: #f5f7fa;
    --clr-black: hsl(0, 0%, 13%);
    --clr-orange: hsl(19, 100%, 50%);
    --clr-light-blue: hsl(211, 36%, 84%);

    --clr-orange-5: hsl(from var(--clr-orange) h s l /.05);
    --clr-orange-80: hsl(from var(--clr-orange) h s l /.80);

    --clr-black-50: hsl(from var(--clr-black) h s l /.5);
    --clr-black-80: hsl(from var(--clr-black) h s l /.80);
    --clr-black-20: hsl(from var(--clr-black) h s l /.20);
    --clr-black-5: hsl(from var(--clr-black) h s l /.05);

    --clr-light-blue-50: hsl(from var(--clr-light-blue) h s l /.5);

    --ff-clash: 'clash', sans-serif;
    --fltr-orange: brightness(0) saturate(100%) invert(34%) sepia(33%) saturate(7256%) hue-rotate(9deg) brightness(110%) contrast(106%);
    --fltr-white: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(2%) hue-rotate(103deg) brightness(105%) contrast(101%);
    --sz-xs: 0.813rem;
    --sz-sm: 1rem;
    --sz-md: 1.25rem;
    --sz-lg: 1.563rem;
    --sz-xl: 1.953rem;
    --sz-2xl: 2.438rem;
    --sz-3xl: 3.063rem;
    --sz-4xl: 3.828rem;

    --lh-30: 1.875rem;
    --lh-25: 1.563rem;

    --ls-2: 0.02rem;
    --l-space-full: .07rem;
    --l-space-half: .035rem;

    --shadow-s:
        inset 0 10px 200px #fff,
        0 1px 2px #dbe4f2,
        0 2px 4px #dbe4f2;

    --shadow-m:
        inset 0 1px 2px #,
        0 2px 4px #00000030,
        0 4px 8px #00000015;

    --shadow-l:
        inset 0 1px 2px #ffffff70,
        0 4px 6px #00000030,
        0 6px 10px #00000015;

    --border-light: 1px solid #dbe4f2;
}

@font-face {
    font-family: 'clash';
    src: url('../assets/fonts/ClashDisplay-Variable.ttf');
}

/* Setup */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
}

button {
    cursor: pointer;
}

a,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: var(--sz-sm);
    text-decoration: none;
    font-weight: 400;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--clr-smoke);
}

/* IMAGE */

.object-cover {
    object-fit: cover;
}

/* SHADOW */

.box-shadow-s {
    box-shadow: var(--shadow-s);
}

/* BORDER */

.border-light {
    border: var(--border-light);
}


/* TEXT STYLE*/

.clash {
    font-family: 'clash', sans-serif;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.card-title {
    font-family: 'clash';
    font-weight: 600;
    color: var(--clr-black);
    font-size: var(--sz-md);
    letter-spacing: var(--ls-2);
}

.text-orange {
    color: var(--clr-orange);
}

.text-white {
    color: white;
}

.page-title {
    font-family: 'clash';
    font-size: var(--sz-sm);
    color: var(--clr-black-80);
    font-weight: 500;
}

.text-emphasis {
    line-height: var(--lh-30);
    font-weight: 400;
    color: var(--clr-black-80);
    letter-spacing: .02rem;
    font-size: var(--sz-sm);
}

/* LINE HEIGHT */

.lh-25 {
    line-height: var(--lh-25);
}

.lh-30 {
    /* line-height: var(--lh-30); */
}

/* TEXT SIZE */

.text-xs {
    font-size: var(--sz-xs) !important;
}

.text-sm {
    font-size: var(--sz-sm);
}

.text-lg {
    font-size: var(--sz-lg);
}

.text-md {
    font-size: var(--sz-md);
}

.text-xl {
    font-size: var(--sz-xl);
}

.text-2xl {
    font-size: var(--sz-2xl);
}

.text-3xl {
    font-size: var(--sz-3xl);
}

.text-4xl {
    font-size: var(--sz-4xl);
}

.text-black {
    color: var(--clr-black);
}

.text-black-50 {
    color: var(--clr-black-50);
}

.text-black-80 {
    color: var(--clr-black-80);
}

/* LETTER SPACES */

.ls-2 {
    letter-spacing: var(--ls-2);
}

.l-space {
    letter-spacing: var(--l-space);
}

/* TEXT WEIGHT */
.fw-bold {
    font-weight: bold;
}

.fw-semi {
    font-weight: 600;
}

.fw-medium {
    font-weight: 500;
}

/* TEXT TRUNCATE */
.truncate {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

.truncate-1 {
    -webkit-line-clamp: 1;
}

.truncate-2 {
    -webkit-line-clamp: 2;
}

.truncate-3 {
    -webkit-line-clamp: 3;
}

.truncate-4 {
    -webkit-line-clamp: 4;
}

/* MARGINS */

.mt-1 {
    margin-top: .5rem;
}

.mt-2 {
    margin-top: 1rem;
}

.mt-3 {
    margin-top: 1.5rem;
}

.mt-4 {
    margin-top: 2rem;
}

.my-2 {
    margin: 1rem 0;
}

.my-3 {
    margin: 1.5rem 0;
}

.my-4 {
    margin: 2rem 0;
}

.mx-2 {
    margin: 0 1rem;
}

.ml-1 {
    margin-left: .5rem;
}

.mb-3 {
    margin-bottom: 1.75rem;
}

/* PADDINGS */

.p-1 {
    padding: .5rem;
}

.p-2 {
    padding: 1rem;
}

.p-3 {
    padding: 1.5rem;
}

.p-4 {
    padding: 2rem;
}

.p-5 {
    padding: 3rem;
}

.py-1 {
    padding-top: .5rem;
    padding-bottom: .5rem;
}

.py-2 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.py-3 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.py-4 {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.px-2 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
}

.px-3 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

/* GAPS */

.gap-1 {
    gap: .5rem;
}

.gap-2 {
    gap: 1rem;
}

.gap-3 {
    gap: 1.5rem;
}

.gap-4 {
    gap: 2rem;
}

.gap-5 {
    gap: 3rem;
}

/* BUTTON STYLE */
.btn-gradient-orange,
.btn-black,
.btn-orange,
.btn-light-orange,
.btn-light {
    padding: .65rem 1.5rem;
    border: none;
    display: block;
    font-family: var(--ff-clash);
    font-weight: 500;
    font-size: var(--sz-sm);
    white-space: nowrap;
    border-radius: 9999px;
    text-align: center;
    letter-spacing: var(--l-space-full);
}

.btn-light-orange {
    background-color: var(--clr-black-5);
    color: var(--clr-black);
}

.btn-gradient-orange {
    color: white;
    background-image: linear-gradient(180deg, var(--clr-orange), #fd560cad);
}

.btn-black {
    background-color: var(--clr-black);
    color: white;
}

.btn-orange {
    background-color: var(--clr-orange);
    color: white;
}


.btn-light {
    background-color: white;
    border: var(--border-light);
    color: var(--clr-black-80);
}

/* FILTER */
.filter-orange {
    filter: var(--fltr-orange);
}

.filter-white {
    filter: var(--fltr-white);
}

/* BACKGROUND */

.bg-white {
    background: white;
}

.bg-smoke {
    background: var(--clr-smoke) !important;
}

.bg-orange-5 {
    background: var(--clr-orange-5) !important;
}

.bg-orange-80 {
    background: var(--clr-orange-80) !important;
}

.bg-black {
    background: var(--clr-black) !important;
}

/* BORDER */

.rounded-xs {
    border-radius: .5rem !important;
}

.rounded-sm {
    border-radius: 1rem;
}

.rounded-md {
    border-radius: 2rem;
}

.rounded-circle {
    border-radius: 99px;
}

/* LAYOUT */

.flex {
    display: flex;
}

.grid {
    display: grid;
}

.none {
    display: none !important;
}

.shrink-0 {
    flex-shrink: 0;
}

.align-center {
    align-items: center;
}

.align-start {
    align-items: start;
}

.align-end {
    align-items: end;
}

.float-right {
    float: right;
}

.float-left {
    float: left;
}

.w-full {
    width: 100%;
}

.w-max-content {
    min-width: max-content;
}

.h-full {
    height: 100%;
}

.h-screen {
    height: 100vh;
}

.h-card {
    min-height: 14rem;
}

.overflow-hidden {
    overflow: hidden;
}

.overflow-x-auto {
    overflow-x: auto;
}

.relative {
    position: relative;
}

.block {
    display: inline-block;
}

.flex-wrap {
    flex-wrap: wrap;
}

.flex-col {
    display: flex;
    flex-direction: column;
}

.flex-row {
    flex-direction: row !important;
}

.justify-between {
    justify-content: space-between;
}

.justify-center {
    justify-content: center;
}

.justify-evenly {
    justify-content: space-evenly;
}