* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    overflow-x: hidden;
}

header {
    height: 70px;
}


nav {
    height: 70px;
    width: 100%;
    background-color: black;
    position: fixed;
    z-index: 1000;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: start;
    padding: 0px 50px;

}

nav .logo {
    font-size: 30px;
    color: #ca3969;
    font-weight: bold;
    padding: 0px 70px;
    font-family: "Anton SC", sans-serif;
    letter-spacing: 3px;

}

nav ul li {
    margin: 0 5px;
    width: auto;
}


nav ul {
    width: auto;
    display: flex;
    list-style: none;
    /* background-color: red; */
    justify-content: space-between;

}

/* 
nav ul li{
    font-size: 30px;
} */
nav ul li a {
    color: #ca3969;
    font-weight: bold;
    text-decoration: none;
    /* font-size: 0px; */
    letter-spacing: 1px;
    font-size: auto;
    padding: 15px 20px 15px 20px;
}

nav ul li a:hover {
    color: #89133d;
    background-color: white;
    border-radius: 20px;
    font-weight: bold;
}


nav .menu_bttn {
    color: white;
    cursor: pointer;
    font-size: 20px;
    display: none;
}

#click {
    display: none;
}

.about_usbg {
    height: 60vh;
    width: 100%;
    background-color: #ca3969;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 50px;
    font-family: "Anton SC", sans-serif;
    font-weight: bold;
}

.products_container {
    height: auto;
    width: 100%;

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

.products {
    height: auto;
    width: 90%;
    /* background-color: rebeccapurple; */
    padding: 10px 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;

    gap: 10vh;
}

.productrow1 {
    height: auto;
    width: 100%;
    /* background-color: yellow; */
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    gap: 3vh;
    flex-wrap: wrap;

}



.productitem {
    width: 30%;
    height: 100vh;
    background-color: gainsboro;
    display: flex;
    flex-direction: column;
    align-items: start;
    padding: 1.5% 2%;
    justify-content: space-evenly;


}

.productitem:hover {
    color: white;
    background-color: #89133d;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.5);
    transition: 0.2s ease-in;

}

.productitem img {
    height: 25vh;
    width: 95%;
}

.productitem .title {
    /* background-color: red; */
    width: 70%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-weight: bolder;
    font-size: 17pt;
    align-items: start;
}

.productitem .description {
    height: auto;
    width: auto;
    /* background-color: red; */
    overflow: none;
    display: flex;
    flex-direction: column;
    align-items: start;
    text-align: left;
}




footer {
    background-color: #333333;
    justify-content: space-between;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
}

.footer_elements {
    /* background-color: red; */
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    text-align: center;
    color: lightgrey;
}

.footer_element1 img {
    height: 75px;
    width: 150px;
}

.footer_element1 {
    height: auto;
    width: 300px;
    /* background-color: red; */
    align-items: start;
    /* text-align: center; */
    text-align:justify;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-size: 12px;
    padding: 10px;
    text-decoration: none;
    color: white;
}


.footer_element1 .text {
    font-size: 20px;
    font-weight: bold;
    /* background-color: yellow; */
    /* text-align: justify */
    height: 10vh;
    width: 80px;
    margin-bottom: 10px;
}

.footer_element2 {
    height: 30vh;
    width: 80px;
    /* background-color: yellow; */
    justify-content: space-evenly;
    display: flex;
    flex-direction: column;
    align-items: start;
    text-align: justify;

}
.footer_element1 .text1{
    height: 2vh;
    margin-bottom: 2px;
}
.footer_element1 .contactdetails{
    height: auto;
    width:auto;
    margin-bottom: 10px;
}


.footer_element2 a {
    text-decoration: none;
    color: white;
    font-size: 13px;
    /* font-weight: bold; */
    text-align: justify;
    margin-bottom: 10px;
}

@media(max-width:940px) {
    nav {
        background-color: black;
        /* width: 100%; */
        justify-content: space-around;
    }

    nav .logo {
        padding: 0px 0px;
    }

    nav .menu_bttn {
        display: block;


    }

    #click:checked~.menu_bttn :before {
        content: "\f00d";
        height: 10px;
        display: block;

    }


    nav ul {
        position: fixed;
        left: -100%;
        top: 70px;
        background-color: #111;
        height: 100vh;
        width: 100%;
        display: block;
        text-align: center;
        transition: all 0.4s;
    }

    nav ul li {
        margin: 40px 0;
    }

    #click:checked~ul {
        left: -0%;
    }


    nav ul li a {
        color: white;
        display: block;

    }

    nav ul li a:hover,
    nav ul li a.active {
        color: #ca3969;
    }

    .about_usbg {
        height: 40vh;
        width: 100%;
        background-color: #ca3969;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 25px;
        font-family: "Anton SC", sans-serif;
    }



    .products_container {
        height: auto;
        width: 100%;

        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
    }

    .products {
        height: auto;
        width: 90%;
        /* background-color: rebeccapurple; */
        padding: 10px 10px;
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        gap: 3vh;
    }

    .productrow1 {
        height: auto;
        width: 100%;
        /* background-color: yellow; */
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        gap: 3vh;

    }

    

    .productitem {
        width: 90%;
        height: auto;
        background-color: gainsboro;
        display: flex;
        flex-direction: column;
        align-items: start;
        padding: 10% 10%;
        justify-content: space-evenly;


    }

    .productitem:hover {
        color: white;
        background-color: #89133d;
        box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.5);
        transition: 0.2s ease-in;

    }

    .productitem img {
        height: 25vh;
        width: 95%;
    }

    .productitem .title {
        /* background-color: red; */
        width: 70%;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        font-weight: bolder;
        font-size: 17pt;
        align-items: start;
    }

    .productitem .description {
        height: auto;
        width: auto;
        /* background-color: red; */
        overflow: none;
        display: flex;
        flex-direction: column;
        align-items: start;
        text-align: left;
    }

    footer {
        background-color: #333333;
        width: 100%;
        height: 130vh;

    }

    .footer_elements {

        width: 100%;
        height: 130vh;
        display: flex;
        flex-direction: column;
        /* background-color: red;     */
        justify-content: center;
        color: lightgrey;
    }

    .footer_element1 img {
        height: 50px;
        width: 80px;
    }

    .footer_element1 {
        height: 30vh;
        width: 89%;
        padding: 5% 4%;
        /* background-color: green; */
        align-items: start;
        text-align: left;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        font-size: 10px;

        text-decoration: none;
        color: white;

    }


    .footer_element1 .text {
        font: 30px;
    }

}



@media (min-width:630px )and (max-width:1104px ){

    .products_container {
        height: auto;
        width: 100%;

        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
    }

    .products {
        height: auto;
        width: 100%;
        /* background-color: rebeccapurple; */
        padding: 10px 10px;
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        gap: 3vh;
    }

    .productrow1 {
        height: auto;
        width: 100%;
        /* background-color: yellow; */
        display: flex;
        flex-direction: row;
        flex-wrap: wrap ;
        justify-content: space-evenly;
        gap: 3vh;

    }

    

    .productitem {
        width: 320px;
        height: 520px;
        background-color: gainsboro;
        display: flex;
        flex-direction: column;
        align-items: start;
        padding: 5% 3%;
        justify-content: space-evenly;


    }

    .productitem:hover {
        color: white;
        background-color: #89133d;
        box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.5);
        transition: 0.2s ease-in;

    }

    .productitem img {
        height: 25vh;
        width: 95%;
    }

    .productitem .title {
        /* background-color: red; */
        width: 70%;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        font-weight: bolder;
        font-size: 17pt;
        align-items: start;
    }

    .productitem .description {
        height: auto;
        width: auto;
        /* background-color: red; */
        overflow: none;
        display: flex;
        flex-direction: column;
        align-items: start;
        text-align: left;
    }


}