@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Righteous&display=swap');
@import url(header.css);
@import url(main.css);
@import url(footer.css);

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'DM sans', sans-serif;
}

:root {
    --max-width: 1440px;

    /* Color */
    --primary-color: #0e0e0e;
    --secondary-color: #3690DB;
    --text-color: #0e0e0e;
    --accent-color: #3690DB;
    --color-one: #1E5AB5;
    --color-two: #fff;
    --color-three: #000000;

    /* Font family */
    --headings-font: 'Righteous', sans-serif;
}


.flex {
    display: flex;
    justify-content: center;
    align-items: center;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--headings-font);
    font-weight: 500;
}

h2.full {
    width: 100%;
    background: var(--color-one);
    color: var(--color-two);
    text-align: center;
    padding: 10px;
    font-size: 45px;
    border-radius: 30px 0 30px 0;
}

p {
    font-size: 18px;
}

a {
    text-decoration: none;
}

.cta {
    color: var(--color-two);
    background: var(--accent-color);
    font-size: 18px;
    font-weight: 500;
    font-family: var(--headings-font);
    padding: 10px 20px;
    border-radius: 50px;
    transition: all 0.3s;
}

.cta:hover {
    background: var(--color-one);
    color: var(--color-two);
    transform: translateY(-5px);
}

.cta-white {
    color: var(--accent-color);
    background: var(--color-two);
}

.cta-white:hover {
    color: var(--color-two);
    background: var(--accent-color);
}

@media (max-width: 1440px) {
    :root {
        --max-width: 100%;
    }
}



/* Product Card */

.productCard {
    display: flex;
    flex-direction: column;
    padding: 10px;
    border-radius: 20px;
    border: 1px solid #00000018;
    background: var(--color-two);
    box-shadow: 0 0 10px #00000018;
    width: 100%;
    transition: all 0.3s ;
}

.productCard .prdImage {
    /* background: var(--secondary-color); */
    /* border-radius: 20px; */
    border-bottom: 1px solid #0000001c;
}
.productCard img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    padding: 10px;
}

.productCard .prdInfo {
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: center;
    justify-content: center;
    padding: 15px 15px 10px;
    position: relative;
    text-align: center;
}
.productCard .prdInfo small {
    color: var(--secondary-color);
    border-radius: 50px;;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
    font-weight: 500;
    font-family: var(--headings-font);
}

.productCard .prdInfo h3 {
    font-size: 25px;
    height: 33px;
    overflow: hidden;
}

.productCard .prdInfo .price {
    font-size: 20px;
    font-weight: 500;
    font-family: var(--headings-font);
    color: var(--secondary-color);
    margin-bottom: 10px;
}


/* Product Card */