/* Font family link */

@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');

* {
    font-family: Poppins;
}

/* Common styles */

.container {
    width: 1240px;
    margin: 0 auto;
}

/* Navber section Styles */

.navbar {
    display: flex;
    justify-content: space-between;
}

.nav_items,
ul {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav_items i {
    padding: 10px;
    font-size: 1.25rem;
    color: rgb(58, 58, 58);

}

.nav_items i:hover {
    color: rgb(224, 44, 109);
}

ul {
    list-style: none;
    margin-right: 10px;
}

ul a {
    text-decoration: none;
    color: rgb(58, 58, 58);
    padding: 10px 15px;

}

ul a:hover {
    background: rgb(224, 44, 109);
    padding: 10px 15px;
    border-radius: 10px;
    color: white;
}

/* Hero section Styles */


/* Left Sight */
.hero_section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 70px;
}

.left_sight {
    max-width: 580px;
}

.left_sight h1 {
    font-size: 3.2rem;
    color: rgb(58, 58, 58);

}

.left_sight p {
    color: rgb(58, 58, 58);
    max-width: 500px;
}

button {
    width: 196px;
    height: 44px;
    border-radius: 41px;
    background: rgb(224, 44, 109);
    color: white;
    border: none;
}

button:hover {
    background: rgb(192, 32, 90);
    font-size: 14px;

}

.right_sight {
    background-image: url("../images/Circle\ design.svg");

}



/* Sponsors Section Styles */

.sponsors_logo {
    display: flex;
    justify-content: space-evenly;
    margin-top: 150px;
    border-top: 1px solid rgb(244, 240, 240);
    border-bottom: 1px solid rgb(244, 240, 240);
    padding: 20px 0;

}

/* product cards styles */

.product_cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-items: center;


}

.card_1 {
    width: 350px;
    border: 1px solid whitesmoke;
    border-radius: 10px;
    padding: 20px 5px;
    border-radius: 5px;
    box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.15);
    background: rgb(255, 255, 255);
    margin-top: 50px;

}

.product_container h1 {
    text-align: center;
    color: rgb(58, 58, 58);
    margin-top: 100px;
}

.product_cards h2 {
    color: rgb(24, 25, 31);
    font-family: Poppins;
    font-size: 28px;
    font-weight: 500;
}

.price_tripod {
    color: rgba(0, 0, 0, 0.87);
    font-family: Inter;
    font-size: 24px;
    font-weight: 400;
}

.card_1 p {
    width: 196px;
    color: rgb(120, 120, 133);
    font-family: Inter;
    font-size: 14px;
    font-weight: 700;
}

.card_1 div {
    width: 320px;
    border-radius: 10px;
    margin: 0 auto;

}

.card_1 img {
    width: 100%;
}

.star_icon i {
    color: orange;
}

.ratting_point {
    color: rgb(120, 120, 133);
    margin-left: 10px;
}


/* feature product section Styles */

.feature_product {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 150px;

}

.left_sight_feature img {
    display: block;
}

.right_sight_feature p {
    max-width: 600px;
    color: rgb(108, 108, 108);
    font-size: 1rem;
    font-weight: 700;
}



/* Footer section Styles */

.footer_section {
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgb(10, 8, 38);
    margin-top: 100px;
}

.footer {
    height: 200px;
    max-width: 300px;
    text-align: center;
}

.footer h1 {
    color: rgb(255, 255, 255);
    font-family: Poppins;
    font-size: 24px;
    font-weight: 700;
}

.footer span {
    color: rgb(217, 219, 225);
}

.social_website {
    display: flex;
    justify-content: center;
    gap: 25px;

}

.social_icon_background {
    width: 32px;
    height: 32px;
    padding: 5px;
    background: rgba(234, 234, 239, 0.079);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 15px;
}

.social_icon_background i {
    padding: 10px;
    color: white;

}



/* Mobile responsive */

@media screen and (max-width:576px) {

    .container {
        max-width: 90%;
        margin: 0 auto;
    }

    .left_sight h1 {
        font-size: 2rem;

    }

    /* navbar section */
    .navbar,
    .hero_section,
    .feature_product,
    .footer_section {
        flex-direction: column;

    }

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

    .nav_items {
        width: 100%;
    }

    .nav_items ul {
        width: 100%;
        margin-right: 0px;
        padding: 0px;
        text-align: center;
        justify-content: space-between;
    }

    ul a {
        padding: 0px;

    }

    .nav_items i {
        display: none;
    }

    /* hero section */
    .right_sight img {
        max-width: 300px;
    }

    .left_sight {
        order: 2;
    }

    .right_sight {
        background-image: url(/images/Circle\ design.svg);
        background-size: cover;
        order: 1;
    }


    /* Sponsorship section */

    .sponsors_logo {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        margin: 50px auto;
        border: none;
        padding: 0px;
        gap: 10px;

    }

    .sponsors_logo img {
        width: 80px;
        height: 50px;
        margin-bottom: 30px;
    }

    /* Product card */


    .product_cards {
        grid-template-columns: 1fr;
    }

    /* Feature product */

    .feature_product {
        margin-top: 100px;
    }

    /* Footer section */

    .footer {
        height: 200px;
        max-width: 300px;
        text-align: center;
    }

}