h1 {
    font-size: var(--text-5xl);
    font-weight: 500;
    margin-bottom: calc(var(--spacing) * 4);
    line-height: calc(var(--spacing) * 20);
}

h2 {
    font-size: var(--text-4xl);
    font-weight: 700;
}

h3 {
    font-size: var(--text-2xl);
    font-weight: 400;
    margin-bottom: calc(var(--spacing) * 2);
}

h4 {
    font-size: var(--text-lg);
    font-weight: 600;
    letter-spacing: var(--tracking-tighter);
    margin-bottom: calc(var(--spacing) * 2);
}

h6 {
    font-size: var(--text-base);
    font-weight: 500;
    letter-spacing: var(--tracking-tighter);
    margin-bottom: calc(var(--spacing) * 4);
}

p {
    font-size: var(--text-lg);
    font-family: var(--secondary-font);
    text-align: justify;
}

.blog h1 {
    font-size: var(--text-5xl);
}

.blog h2 {
    font-size: var(--text-4xl);
}

.blog h3 {
    font-size: var(--text-2xl);
}

.blog h2,
.blog h3 {
    color: var(--secondary-color);
    margin: 20px 0;
}

.blog ol>li {
    font-family: var(--secondary-font);
    font-size: var(--text-base);
    text-align: justify;
}

@media (min-width: 768px) {
    h1 {
        font-size: var(--text-7xl);
    }

    .col-2-gap {
        gap: calc(var(--spacing) * 8);
        align-items: center;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    h2 {
        font-size: var(--text-6xl);
        font-weight: 600;
    }

    h3 {
        font-size: var(--text-xl);
        letter-spacing: var(--tracking-tighter);
        font-weight: 600;
    }

    h4 {
        font-size: var(--text-xl);
    }

    h5 {
        font-size: var(--text-lg);
    }
}

@media (min-width: 1024px) {
    h1 {
        font-size: var(--text-7xl);
        line-height: 1.2;
    }

    h2 {
        font-size: var(--text-5xl);
    }

    h3 {
        font-size: var(--text-2xl);
    }

    h4 {
        font-size: var(--text-xl);
        letter-spacing: var;
    }

    h5 {
        font-size: var(--text-xl);
    }

    p {
        font-size: var(--text-base);
    }

}

@media (min-width: 1350px) {
    h1 {
        font-size: var(--text-6xl);
    }

    h2 {
        font-size: var(--text-4xl);
    }

    h3 {
        font-size: var(--text-2xl);
    }

    h4 {
        font-size: var(--text-xl);
    }

    h5 {
        font-size: var(--text-lg);
    }

    h6 {
        font-size: var(--text-lg);
    }

    p {
        font-size: var(--text-lg);
    }

    .hero-text-only h1 {

        font-size: var(--text-4xl);
        line-height: 1.2;

    }

}

@media (min-width: 1550px) {

    h1 {
        font-size: var(--text-7xl);
        line-height: 1.2;
    }

    h2 {
        font-size: var(--text-5xl);
    }

    h3 {
        font-size: var(--text-3xl);
    }

    h4 {
        font-size: var(--text-xl);
    }

    h5 {
        font-size: var(--text-lg);
    }

    h6 {
        font-size: var(--text-lg);
    }

    p {
        font-size: var(--text-lg);
    }

    /* .blog ol>li 
    {
        font-size: var(--text-base);
        text-align: justify;
    } */


    .hero-text-only h1 {
        font-size: var(--text-5xl) !important;
        font-weight: 600 !important;
    }
}