:root {

    --site-max-width: 1364px;
    --container-padding: 24px;

    --font-heading: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    --font-body: "Segoe UI", system-ui, -apple-system, Roboto, "Helvetica Neue", Arial, sans-serif;

    --color-primary: #009BB4;
    --color-primary-hover: #009cb4ce;
    --colormuted: #ECEBEC;
    --color-text: #000000;

}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    height: 100%;
}

body {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    font-family: var(--font-body, "Segoe UI", system-ui, sans-serif);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--colormuted);
    overflow-x: hidden;
}

.pg-header {
    width: 100%;
    align-content: end;
    /* border: 1px solid red; */
    height: 514px;
    background-image: url("/assets/img/7e480fe583bfd39e2199d3f610fa75036abef35a.webp");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 0 10px;
}

.inner {
    max-width: var(--site-max-width);
    margin: auto;
    /* border: 1px solid red; */
}

.pg-header h1 {
    color: var(--colormuted);
    font-family: var(--font-heading);
    font-weight: 900;
    font-style: italic;
    font-size: 68px;
    letter-spacing: -2px;
    text-transform: uppercase;
    line-height: 48px;

}

.pg-header-para {
    width: 100%;
    align-content: center;
    /* border: 1px solid red; */
    height: 173px;
    padding: 0 10px;
}

.pg-para-inner {
    max-width: var(--site-max-width);
    /* border: 1px solid red; */
    margin: auto;
}

.pg-header-para p {
    color: var(--color-text);
    font-size: 16px;
    font-weight: 400;
    font-family: var(--font-body);
    width: 60%;
    margin-top: 14px;

}

/* card section  */
.main-card {
    width: 100%;
    align-content: end;
    padding: 0 10px;
}


.cards {

    max-width: var(--site-max-width);
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* grid-template-rows: repeat(3, auto);    */
    gap: 30px;
    width: 100%;
}

.card {
    background: #fff;
    /* flex: 0 0 439px; */
    /* flex-grow: 1; */
    /* flex-basis: min-content; */
    padding: 20px;
    padding-bottom: 30px;
}

.card span {
    display: inline-flex;
    width: 100%;
    /* border: 1px solid red; */
    justify-content: space-between;
    align-items: end;
    margin-top: 20px;
}

.card img {
    max-width: 100%;
    width: 100%;
    height: auto;
}

.card h3 {
    font-family: "Inter", sans-serif;
    font-weight: 900;
    font-style: italic;
    font-size: 29.26px;
    letter-spacing: -1px;
    text-transform: uppercase;
    line-height: 40px;
    margin: 20px 0 10px;
}

.card h4 {
    font-weight: 800;
    font-size: 17.81;
    font-style: italic;
    font-size: 17.81px;
    font-family: 'Inter';
    text-transform: uppercase;
    line-height: 27px;
    margin-bottom: 10px;
}

.card hr {
    border: none;
    border-top: 1px solid #000;
    margin: 10px 0 15px;
    width: 100%;
}

.card p {
    color: var(--color-text);
    font-size: 16px;
    font-weight: 400;
    font-family: var(--font-body);
}

.price {
    font-family: "Inter", sans-serif;
    font-weight: 900;
    font-style: italic;
    font-size: 40.26px;
    letter-spacing: -1px;
    line-height: 54px;

}

.discover-btn {
    display: inline-block;
    background-color: var(--color-primary);
    color: #fff;
    padding: 16px 30px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    font-family: var(--font-body);
    transition: background-color 0.3s ease;
}

.discover-btn:hover {
    background-color: var(--color-primary-hover);
}

.main-card .card-btm-para {
    max-width: var(--site-max-width);
    margin: 20px auto;
}

.main-card .card-btm-para p {
    color: var(--color-text);
    font-size: 16px;
    font-weight: 400;
    font-family: var(--font-body);
    width: 60%;
}

@media (max-width: 1024px) {
    .pg-header {height: 346px;}
    .cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .card {
        flex-grow: 1;
        flex-basis: min-content;
    }

    .pg-header-para p,
    .main-card .card-btm-para p {
        width: 100%;
    }

}

/* For small tablets or phablets (max-width 768px) */
@media (max-width: 768px) {
    .pg-header {height: 270px;}

    .cards {
        grid-template-columns: repeat(1, 1fr);
    }

    .pg-header-para p,
    .main-card .card-btm-para p {
        width: 100%;
    }

    .pg-header h1 {
        font-size: 62px;
    }

}

/* For small mobiles (max-width 480px) */
@media (max-width: 480px) {
    .pg-header {height: 270px;}

    .pg-header-para p,
    .main-card .card-btm-para p {
        width: 100%;
    }

    .cards {
        grid-template-columns: repeat(1, 1fr);
    }

    .pg-header h1 {
        font-size: 52px;
    }

    .main-card {
        margin-top: 100px;
    }

}
