@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --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: var(--font-primary);
}

.text-blue-400 {
    --tw-text-opacity: 1;
    color: rgb(96 165 250 / var(--tw-text-opacity, 1));
}

img {
    width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
}

a {
    text-decoration: none;
}

a:focus,
a:visited {
    outline: unset;
}

ul,
ul li,
ol li {
    list-style: none;
}

@media (min-width: 1400px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1310px;
    }
}

h1,
.h1 {
    font-family: var(--font-primary);
    font-size: 60px;
    font-weight: 700;
    line-height: 1;
}

h2,
.h2 {
    font-size: 36px;
    line-height: 40px;
    font-weight: 700;
    font-family: var(--font-primary);
}

.h2-52 {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.25;
    font-family: var(--font-primary);
}

h5,
.h5 {
    font-size: 20px;
    line-height: 28px;
    font-weight: 700;
    font-family: var(--font-primary);
}


h6,
.h6 {
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
    font-family: var(--font-primary);
}

p,
.p {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.625;
}

.p-sm {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.25rem;
}

.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;
}


/* Primary Button */

.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;
}

.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);
}

.btn-primary svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: var(--white);
    stroke-width: 2;
}

/* responsiveness */
@media (max-width: 1024px) {

    h1,
    .h1 {
        font-size: 48px;
    }

    .h2-52 {
        font-size: 42px;
    }

    h2,
    .h2 {
        font-size: 32px;
        line-height: 38px;
    }

    h6,
    .h6 {
        font-size: 15px;
        line-height: 22px;
    }

    p {
        font-size: 17px;
    }

    .p-sm {
        font-size: 13px;
    }

    .btn-primary {
        font-size: 15px;
    }

}

@media (max-width: 767px) {

    h1,
    .h1 {
        font-size: 38px;
    }

    .h2-52 {
        font-size: 32px;
    }


    h2,
    .h2 {
        font-size: 28px;
        line-height: 34px;
    }

    h6,
    .h6 {
        font-size: 14px;
        line-height: 21px;
    }

    p {
        font-size: 16px;
    }

    .p-sm {
        font-size: 13px;
    }

    .btn-primary {
        font-size: 14px;
    }
}


@media (max-width: 567px) {

    h1,
    .h1 {
        font-size: 30px;
    }

    .h2-52 {
        font-size: 26px;
    }


    h2,
    .h2 {
        font-size: 24px;
        line-height: 30px;
    }

    h6,
    .h6 {
        font-size: 13px;
        line-height: 20px;
    }

    p {
        font-size: 15px;
    }

    .p-sm {
        font-size: 12px;
    }

    .btn-primary {
        font-size: 14px;
    }

    .span-badge {
        font-size: 11px;
        padding: 7px 14px;
    }

}