@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

* {
    font-family: "Poppins", sans-serif;
    margin: 0;
    padding: 0;
}

body {
    max-width: 1440px;
    margin: 0 auto;
}

.inter-font {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

/* Shared Styles  */

.flex {
    display: flex;
}

.primary-color {
    color: #3A3A3A;
}

.secondary-color {
    color: #18191F;
}

.accent-color {
    color: rgba(0, 0, 0, 0.87);
}

.gray {
    color: #3A3A3A;
}


.header-container,
.product,
.featured {
    margin: 0 120px;
}

.btn-primary {
    background-color: #E02C6D;
    color: white;
    font-size: 1rem;
    font-weight: 700;
    padding: 10px 24px;
    border: none;
    border-radius: 41px;

}

span {
    margin-right: 5px;
}


/* Header section styles  */

/* navbar styles  */

.navbar {
    justify-content: space-between;
    margin: 85px 120px 0px;
    /* background-color: #E02C6D; */
}

.nav-list {
    gap: 34px;
}

.navbar ul li {
    list-style: none;

}

.navbar ul li a {
    text-decoration: none;
}

.nav-title {
    font-size: 1.5rem;
    font-weight: 700;
}

.nav-item {
    font-size: 1rem;
    font-weight: 600;
}

/* Header  */

.header-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 100px;
    align-items: center;
    /* background-color: #E02C6D */
}

.header-info {
    max-width: 580px;
}

.header-title {
    font-size: 3.25rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.header-description {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.header-image-container {
    width: 100%;
    margin-top: 50px;
    margin-left: 30px;
    /* background-color: aqua; */
}

.circle-bg {
    position: absolute;
    z-index: 1;
    /* background-color: bisque; */
}

.camera-image {
    position: relative;
    z-index: 2;
    top: 20px;
}



/* Sponsor Section Styles  */

.sponsor-container {
    width: 1110px;
    margin: 170px auto 110px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    /* grid-template-columns: repeat(7, 1fr); */
    gap: 60px;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
    padding: 35px 0;
    text-align: center;
    /* background-color: #E02C6D; */
}



/* Product section styles  */
.product {
    max-width: 1048px;
    margin-bottom: 100px;
    /* background-color: #E02C6D; */
}

.product-card-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;

}

.product-title {
    text-align: center;
    font-size: 1.75rem;
    width: 600;
    margin-bottom: 60px;
}


.product-card {
    width: 300px;
    background-color: rgb(255, 255, 255);
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 0px 40px 0 rgba(0, 0, 0, 0.15);
}

.product-card-title {
    font-size: 1.75rem;
    font-weight: 500;
    color: rgba(24, 25, 31, 1);
    margin-top: 16px;
}

.product-card-price {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.product-rate {
    gap: 4px;
    height: 16px;
    align-items: center;
    margin-bottom: 10px;
}

.product-rate .rate {
    margin-left: 10px;
    font-size: 1rem;
    font-weight: 600;
}

.product-details {
    font-weight: 700;
    margin-bottom: 4px;
}

/* Featured Section style  */

.featured {
    /* background-color: #E02C6D; */
    display: flex;
    gap: 30px;
    align-items: center;
    margin-bottom: 100px;
}

.feature-image img {
    /* width: 100%;
    height: 100%; */
    display: block;
}

.feature-title {
    font-size: 2.35rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #0A0826;
}

.feature-description {
    font-weight: 600;
    color: #6C6C6C;
    margin-bottom: 20px;
    max-width: 500px;
}

footer {
    max-width: 1440px;
    text-align: center;
    background-color: #0A0826;
}

.footer-container {
    padding: 50px 0;
}

.footer-container h2 {
    color: #FFFFFF;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-container p {
    color: #FFFFFF;
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 3px;
}


.icon-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.icon {
    width: 24px;
    height: 24px;
    background-color: #e8e6fc5b;
    padding: 5px;
    border-radius: 50%;

}

.icon-color {
    color: #FFFFFF;
    text-align: center;
    margin-left: 4px;
}

.youtube {
    margin: 0;
}







/* Media Query  */

@media screen and (max-width:576px) {
    .navbar {
        flex-direction: column;
        margin: 30px 80px 0px;
        /* justify-content: center; */
    }

    .nav-list {
        display: none;
    }

    .header-container {
        grid-template-columns: repeat(1, 1fr);
        margin: 0 20px;
        text-align: center;

    }

    .header-info {
        order: 1;
    }

    .header-image-container {
        margin: 50px 0px 0px;
        width: 100%;
        order: -2;
    }


    .circle-bg {
        width: 80%;
        left: 10%;
    }

    .camera-image {
        width: 80%;
    }

    .sponsor-container {
        width: 100%;
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        /* padding-left: 20px; */
        margin-top: 50px;
    }

    .product {
        width: auto;
    }

    .product-card-container {
        grid-template-columns: repeat(1, 1fr);
        justify-content: center;
    }

    .featured {
        flex-direction: column-reverse;
        margin: 0 20px 50px;
    }

}



/* Medium Device  */

@media screen and (min-width: 576px) and (max-width: 992px) {
    .navbar {
        flex-direction: column;
        margin: 30px;
        text-align: center;
    }

    .navbar ul {
        justify-content: center;
        margin-top: 20px;
    }

    .header-container {
        grid-template-columns: repeat(1, 1fr);
        margin: 0 20px;
        text-align: center;

    }

    .header-info {
        text-align: center;
        margin: 0 auto;
    }

    .header-info {
        order: 1;
    }

    .header-image-container {
        margin: 50px 0px 0px;
        width: 100%;
        order: -2;
    }


    .sponsor-container {
        width: auto;
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
        padding-left: 40px;
        margin-top: 50px;
    }

    .product-card-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .featured {
        /* flex-direction: column-reverse; */
        margin: 0 20px 50px;
    }

    .feature-title,
    .feature-description {
        margin-bottom: 5px;
    }
}