* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.site-headers,
.site-footers {
    --primary-color: #60a5fa;
    --secondary-color: #2563eb;
    --font-primary: Inter;
    --white: #fff;
    --black: #111827;
    --para-white: #d1d5db;
    --para: #6b7280;
    --gradient-text: linear-gradient(to right, #2563eb, #1e40af);
}

body {
    font-family: 'Inter',
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        'Segoe UI',
        sans-serif;
}

.site-headers .text-blue-400,
.site-footers .text-blue-400 {
    --tw-text-opacity: 1;
    color: rgb(96 165 250 / var(--tw-text-opacity, 1));
}

@media (min-width:1400px) {

    .site-headers .container,
    .site-headers .container-lg,
    .site-headers .container-md,
    .site-headers .container-sm,
    .site-headers .container-xl,
    .site-headers .container-xxl,

    .site-footers .container,
    .site-footers .container-lg,
    .site-footers .container-md,
    .site-footers .container-sm,
    .site-footers .container-xl,
    .site-footers .container-xxl {
        max-width: 1310px;
    }
}

.site-headers h1,
.site-headers .h1,
.site-footers h1,
.site-footers .h1 {
    font-family: var(--font-primary);
    font-size: 60px;
    font-weight: 700;
    line-height: 1;
}

.site-headers h2,
.site-headers .h2,
.site-footers h2,
.site-footers .h2 {
    font-size: 36px;
    line-height: 40px;
    font-weight: 700;
    font-family: var(--font-primary);
}

.site-headers .h2-52,
.site-footers .h2-52 {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.25;
    font-family: var(--font-primary);
}

.site-headers h5,
.site-headers .h5,
.site-footers h5,
.site-footers .h5 {
    font-size: 20px;
    line-height: 28px;
    font-weight: 700;
    font-family: var(--font-primary);
}

.site-headers h6,
.site-headers .h6,
.site-footers h6,
.site-footers .h6 {
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
    font-family: var(--font-primary);
}

.site-headers p,
.site-footers p,
.site-headers .p,
.site-footers .p {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.625;
}

.site-headers .p-sm,
.site-footers .p-sm {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.25rem;
}

.site-headers .span-badge,
.site-footers .span-badge {
    display: inline-block;
    background: rgba(59, 130, 246, 0.2);
    color: var(--primary-color);
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.site-headers .btn-primary,
.site-footers .btn-primary {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    background: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    color: var(--white) !important;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition-property: all;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: .3s;
    transform: translateY(0);
    box-shadow: none;
}

.site-headers .btn-primary:hover,
.site-footers .btn-primary:hover {
    background-color: rgb(29 78 216);
    transform: translateY(-0.125rem);
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1),
        0 4px 6px -4px rgb(0 0 0 / 0.1);
}

.site-headers .btn-primary svg,
.site-footers .btn-primary svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: var(--white);
    stroke-width: 2;
}

/* responsiveness */
/* ==========================
   Responsive
========================== */

@media (max-width: 1024px) {

    .site-headers h1,
    .site-headers .h1,
    .site-footers h1,
    .site-footers .h1 {
        font-size: 48px;
    }

    .site-headers .h2-52,
    .site-footers .h2-52 {
        font-size: 42px;
    }

    .site-headers h2,
    .site-headers .h2,
    .site-footers h2,
    .site-footers .h2 {
        font-size: 32px;
        line-height: 38px;
    }

    .site-headers h6,
    .site-headers .h6,
    .site-footers h6,
    .site-footers .h6 {
        font-size: 15px;
        line-height: 22px;
    }

    .site-headers p,
    .site-headers .p,
    .site-footers p,
    .site-footers .p {
        font-size: 17px;
    }

    .site-headers .p-sm,
    .site-footers .p-sm {
        font-size: 13px;
    }

    .site-headers .btn-primary,
    .site-footers .btn-primary {
        font-size: 15px;
    }
}

@media (max-width: 767px) {

    .site-headers h1,
    .site-headers .h1,
    .site-footers h1,
    .site-footers .h1 {
        font-size: 38px;
    }

    .site-headers .h2-52,
    .site-footers .h2-52 {
        font-size: 32px;
    }

    .site-headers h2,
    .site-headers .h2,
    .site-footers h2,
    .site-footers .h2 {
        font-size: 28px;
        line-height: 34px;
    }

    .site-headers h6,
    .site-headers .h6,
    .site-footers h6,
    .site-footers .h6 {
        font-size: 14px;
        line-height: 21px;
    }

    .site-headers p,
    .site-headers .p,
    .site-footers p,
    .site-footers .p {
        font-size: 16px;
    }

    .site-headers .p-sm,
    .site-footers .p-sm {
        font-size: 13px;
    }

    .site-headers .btn-primary,
    .site-footers .btn-primary {
        font-size: 14px;
    }
}

@media (max-width: 567px) {

    .site-headers h1,
    .site-headers .h1,
    .site-footers h1,
    .site-footers .h1 {
        font-size: 30px;
    }

    .site-headers .h2-52,
    .site-footers .h2-52 {
        font-size: 26px;
    }

    .site-headers h2,
    .site-headers .h2,
    .site-footers h2,
    .site-footers .h2 {
        font-size: 24px;
        line-height: 30px;
    }

    .site-headers h6,
    .site-headers .h6,
    .site-footers h6,
    .site-footers .h6 {
        font-size: 13px;
        line-height: 20px;
    }

    .site-headers p,
    .site-headers .p,
    .site-footers p,
    .site-footers .p {
        font-size: 15px;
    }

    .site-headers .p-sm,
    .site-footers .p-sm {
        font-size: 12px;
    }

    .site-headers .btn-primary,
    .site-footers .btn-primary {
        font-size: 14px;
    }

    .site-headers .span-badge,
    .site-footers .span-badge {
        font-size: 11px;
        padding: 7px 14px;
    }
}