/* Navigation Container css */
*{
    margin:0;
    padding:0;
}

.nav_container {
    height:93px;  
    background-color:#92BEB5;  
    display:flex; 
    justify-content:space-between;
    align-items:center;
    box-shadow:(0px 4px 4px rgba(0, 0, 0, 0.25));
}

.nav_list { 
    margin-right:10px;
}

.nav_tabitems {
    list-style: none;
    margin:0%;
    padding:0%;
    height:100%;
    justify-content: space-around;
    display:flex;
    padding-top:25px;
    line-height:30px;
    font-size:20px;
    text-align:center;
    display: none;
}

.logo_countainer{
    display:flex;
    align-items:center;
    padding:0px 0px 0px 10px;
}

.bar_menu{
    height:45px;
    width:50px;
}

.nav_cart{
    width:45px;
    height:25px;
}

.site_logo{
    width:90px;
    height:90px;
    padding-top:4px;
    filter: drop-shadow(2px 4px 4px rgba( 0, 0, 0, 0.25));
}

/* reponsive css for nav (media quaries) */
@media screen and (min-width:800px) {
    .nav_tabitems{
         display:flex;
    }

    .bar_menu{
         display:none;
    }   

    .nav_list{
         width:48%;
         height:80%;
    }
}

/* cat banner  */

.cat_banner_image_container {
    width:50%;
    position:absolute;
    left:50%;
    height:455px;
}

.cat_banner_container img{
    width:100%;
    height:100%;
    object-fit:cover;
    right:0;

}

.cat_banner_container {
    position:relative;
    height:455px;
}

.cat_banner_content{
    width:50%;
    position:absolute;
    top:16%;
    right:50%;
    padding:0.50px;
    text-align:center;
    color: #92BEB5;
}

.cat_content_backround{
    background-color: #526673;
    width: 100%;
    height: 455px;
    object-fit: cover;
}

.cat_banner_heading{
    padding-top: 10%;
    margin-left: 10px;
    margin-right: 10px;
}

.cat_header{
    padding-top: 5%;
}

/* reponsive css for dog banner (media quaries) */
@media screen and (max-width: 900px) {
    .cat_banner_image_container{
        width:100%;
        position:unset;
        background-color:rgba(231, 215, 206, 0.7);
        height: 295px;
    }

    .cat_banner_content{
        width:100%;
        position:unset;
        padding-top:10px;
    }

    .cat_header{
        padding-top:1%;
    }


    .cat_banner_heading{
        padding-bottom:10px;
    }

    .cat_content_backround{
        width:100%;
        height:55%;
    }

    .cat_banner_heading{
        padding-top: 2%;
    }
    
}


/* cat product cards */
.cat_card_container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(248px,1fr));
    gap: 40px;
    padding: 15px;
}

.cat_card_child1{
    height: 50%;
    object-fit: cover;
}

.cat_card_child2{
    height: 50%;
    object-fit: cover;
}

.cat_card_child3{
    height: 50%;
    object-fit: cover;
}

.cat_card_title{
    text-align: center;
    padding-top: 90px;
    padding-bottom: 2px;    
}

.cat_card_header{
    margin-bottom: 5%;
    color: #92BEB5;
}

.cat_treatpic{
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: 5px 5px 4px rgba(0, 0, 0, 0.25); 
    border-radius: 150px;
}

.cat_accespic{
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: 5px 5px 4px rgba(0, 0, 0, 0.25);  
    border-radius: 150px;
 
}

.cat_toypic{
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: 5px 5px 4px rgba(0, 0, 0, 0.25); 
    border-radius: 150px;
}


.cat_treat_button{
    position: absolute;
    width:30%;
    height:60px;
    margin-top: 3%;
    background-color: #526673;
    border-radius:20px;
    box-shadow:0px 4px 4px rgba(0, 0, 0, 0.25);
 }

 .cat_treat_text{
    padding-top:20px;
    color: #92BEB5;
    text-align:center;
}

.cat_acces_button{
    position: absolute;
    width:30%;
    height:60px;
    margin-top: 3%;
    background-color: #526673;
    border-radius:20px;
    box-shadow:0px 4px 4px rgba(0, 0, 0, 0.25);
 }

 .cat_acces_text{
    padding-top:20px;
    color: #92BEB5;
    text-align:center;
}

.cat_toy_button{
    position: absolute;
    width:30%;
    height:60px;
    margin-top: 3%;
    background-color: #526673;
    border-radius:20px;
    box-shadow:0px 4px 4px rgba(0, 0, 0, 0.25);
 }

 .cat_toy_text{
    padding-top:20px;
    color: #92BEB5;
    text-align:center;
}

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

    .cat_card_container{
        padding: 10px;
        row-gap: 240px;
        padding-bottom: 50%;
    }

    .cat_card_child1{
        width: 100%;
        height: 100%;
    }

    .cat_card_child2{
        width: 100%;
        height: 100%;
    }

    .cat_card_child3{
        width: 100%;
        height: 100%;
    }

}


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

    .cat_treat_button{
        width: 45%;
    }

    .cat_acces_button{
        width: 45%;
    }

    .cat_toy_button{
        width: 45%;
    }
}

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

    .cat_treat_button{
        width: 100%;
    }

    .cat_acces_button{
        width: 100%;
    }

    .cat_toy_button{
        width: 100%;
    }
}

/* cat treats products */

.cat_treat_title{
    color: #92BEB5;
    text-align: center;
    padding-top: 20px;
}

.cat_treat_1{
    text-align:center;
    margin: 0;
    padding: 10px;
}

.cat_treat_2{
    text-align: center;
    margin: 0;
    padding: 9px;
}

.cat_treat_3{
    text-align: center;
    margin: 0;
    padding: 10px;
}

.cat_treat_4{
    text-align: center;
    margin: 0;
    padding: 10px;
}

.cat_treat_products{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    align-items: center;
    margin: 50px,0;
}

.cat_treat_content1{
    width: 20%;
    margin: 15px;
    box-sizing: border-box;
    float: left;
    text-align: left;
    border-radius:20px ;
    cursor: pointer;
    box-shadow: 0,14px,28px rgba( 0,0,0,0,22);
    transition: .4s;
    background: #eeeeee;
}

.cat_treat_content1:hover{
    box-shadow: 0,3px,6px rgb(0,0,0,0 16),
    0,3px,6px rgba(0,0,0,0,23);
    transform: translate(0px,-8px);
}


.cat_treat_content2{
    width: 20%;
    margin: 15px;
    box-sizing: border-box;
    float: left;
    text-align: left;
    border-radius:20px ;
    cursor: pointer;
    box-shadow: 0,14px,28px rgba rgba( 0,0,0,0,22);
    transition: .4s;
    background: #eeeeee;
}

.cat_treat_content2:hover{
    box-shadow: 0,3px,6px rgb(0,0,0,0 16),
    0,3px,6px rgba(0,0,0,0,23);
    transform: translate(0px,-8px);
}

.cat_treat_content3{
    width: 20%;
    margin: 15px;
    box-sizing: border-box;
    float: left;
    text-align: left;
    border-radius:20px ;
    cursor: pointer;
    box-shadow: 0,14px,28px rgba( 0,0,0,0,22);
    transition: .4s;
    background: #eeeeee;
}

.cat_treat_content3:hover{
    box-shadow: 0,3px,6px rgb(0,0,0,0 16),
    0,3px,6px rgba(0,0,0,0,23);
    transform: translate(0px,-8px);
}

.cat_treat_content4{
    width: 20%;
    margin: 15px;
    box-sizing: border-box;
    float: left;
    text-align: left;
    border-radius:20px ;
    cursor: pointer;
    box-shadow: 0,14px,28px rgba( 0,0,0,0,22);
    transition: .4s;
    background: #eeeeee;
}

.cat_treat_content4:hover{
    box-shadow: 0,3px,6px rgb(0,0,0,0 16),
    0,3px,6px rgba(0,0,0,0,23);
    transform: translate(0px,-8px);
}

.cat_treat_pic1{
    width: 100%;
    height: 200px;
    border-radius:20px;
    text-align: center;
    margin: 0 auto;
    display:block;
}

.cat_treat_pic2{
    width: 100%;
    height: 200px;
    border-radius:20px;
    text-align: center;
    margin: 0 auto;
    display:block;
}

.cat_treat_pic3{
    width: 100%;
    height: 200px;
    border-radius:20px;
    text-align: center;
    margin: 0 auto;
    display:block;
}

.cat_treat_pic4{
    width: 100%;
    height: 200px;
    border-radius:20px;
    text-align: center;
    margin: 0 auto;
    display:block;
}

.cat_treat_p1{
    font-size: 15px;
    text-align: center;
    margin: 0; 
    padding-top: 10px;
    padding-bottom: 10px;
}

.cat_treat_p2{
    font-size: 15px;
    text-align: center;
    margin: 0; 
    padding-top: 10px;
    padding-bottom: 10px;
}
.cat_treat_p3{
    font-size: 15px;
    text-align: center;
    margin: 0; 
    padding-top: 10px;
    padding-bottom: 10px;
}

.cat_treat_p4{
    font-size: 15px;
    text-align: center;
    margin: 0; 
    padding-top: 10px;
    padding-bottom: 10px;
}

@media  (max-width:930px) {
    .cat_treat_content1{
        width: 40%;
    }

    .cat_treat_content2{
        width: 40%;
    }

    .cat_treat_content3{
        width: 40%;
    }
    .cat_treat_content4{
        width: 40%;
    }
}

@media  (max-width:680px) {
    .cat_treat_content1{
        width: 100%;
    }

    .cat_treat_content2{
        width: 100%;
    }

    .cat_treat_content3{
        width: 100%;
    }
    .cat_treat_content4{
        width: 100%;
    }

}

/* cat accessorie products */

.cat_acces_title{
    color: #92BEB5;
    text-align: center;
    padding-top: 80px;
}

.cat_acces_1{
    text-align:center;
    margin: 0;
    padding: 10px;
}

.cat_acces_2{
    text-align: center;
    margin: 0;
    padding: 10px;
}

.cat_acces_3{
    text-align: center;
    margin: 0;
    padding: 10px;
}

.cat_acces_4{
    text-align: center;
    margin: 0;
    padding: 10px;
}

.cat_acces_products{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    align-items: center;
    margin: 50px,0;
}

.cat_acces_content1{
    width: 20%;
    margin: 15px;
    box-sizing: border-box;
    float: left;
    text-align: left;
    border-radius:20px ;
    cursor: pointer;
    box-shadow: 0,14px,28px rgba( 0,0,0,0,22);
    transition: .4s;
    background: #eeeeee;
}

.cat_acces_content1:hover{
    box-shadow: 0,3px,6px rgb(0,0,0,0 16),
    0,3px,6px rgba(0,0,0,0,23);
    transform: translate(0px,-8px);
}


.cat_acces_content2{
    width: 20%;
    margin: 15px;
    box-sizing: border-box;
    float: left;
    text-align: left;
    border-radius:20px ;
    cursor: pointer;
    box-shadow: 0,14px,28px rgba rgba( 0,0,0,0,22);
    transition: .4s;
    background: #eeeeee;
}

.cat_acces_content2:hover{
    box-shadow: 0,3px,6px rgb(0,0,0,0 16),
    0,3px,6px rgba(0,0,0,0,23);
    transform: translate(0px,-8px);
}

.cat_acces_content3{
    width: 20%;
    margin: 15px;
    box-sizing: border-box;
    float: left;
    text-align: left;
    border-radius:20px ;
    cursor: pointer;
    box-shadow: 0,14px,28px rgba( 0,0,0,0,22);
    transition: .4s;
    background: #eeeeee;
}

.cat_acces_content3:hover{
    box-shadow: 0,3px,6px rgb(0,0,0,0 16),
    0,3px,6px rgba(0,0,0,0,23);
    transform: translate(0px,-8px);
}

.cat_acces_content4{
    width: 20%;
    margin: 15px;
    box-sizing: border-box;
    float: left;
    text-align: left;
    border-radius:20px ;
    cursor: pointer;
    box-shadow: 0,14px,28px rgba( 0,0,0,0,22);
    transition: .4s;
    background: #eeeeee;
}

.cat_acces_content4:hover{
    box-shadow: 0,3px,6px rgb(0,0,0,0 16),
    0,3px,6px rgba(0,0,0,0,23);
    transform: translate(0px,-8px);
}

.cat_acces_pic1{
    width: 100%;
    height: 200px;
    border-radius:20px;
    text-align: center;
    margin: 0 auto;
    display:block;
}

.cat_acces_pic2{
    width: 100%;
    height: 200px;
    border-radius:20px;
    text-align: center;
    margin: 0 auto;
    display:block;
}

.cat_acces_pic3{
    width: 100%;
    height: 200px;
    border-radius:20px;
    text-align: center;
    margin: 0 auto;
    display:block;
}

.cat_acces_pic4{
    width: 100%;
    height: 200px;
    border-radius:20px;
    text-align: center;
    margin: 0 auto;
    display:block;
}

.cat_acces_p1{
    font-size: 15px;
    text-align: center;
    margin: 0; 
    padding-top: 10px;
    padding-bottom: 10px;
}

.cat_acces_p2{
    font-size: 15px;
    text-align: center;
    margin: 0; 
    padding-top: 10px;
    padding-bottom: 10px;
}
.cat_acces_p3{
    font-size: 15px;
    text-align: center;
    margin: 0; 
    padding-top: 10px;
    padding-bottom: 10px;
}

.cat_acces_p4{
    font-size: 15px;
    text-align: center;
    margin: 0; 
    padding-top: 10px;
    padding-bottom: 10px;
}

@media  (max-width:930px) {
    .cat_acces_content1{
        width: 40%;
    }

    .cat_acces_content2{
        width: 40%;
    }

    .cat_acces_content3{
        width: 40%;
    }
    .cat_acces_content4{
        width: 40%;
    }
}

@media  (max-width:680px) {
    .cat_acces_content1{
        width: 100%;
    }

    .cat_acces_content2{
        width: 100%;
    }

    .cat_acces_content3{
        width: 100%;
    }
    .cat_acces_content4{
        width: 100%;
    }
}    

/* cat toy products */

.cat_toy_title{
    color: #92BEB5;
    text-align: center;
    padding-top: 80px;
}

.cat_toy_1{
    text-align:center;
    margin: 0;
    padding: 10px;
}

.cat_toy_2{
    text-align: center;
    margin: 0;
    padding: 10px;
}

.cat_toy_3{
    text-align: center;
    margin: 0;
    padding: 10px;
}

.cat_toy_4{
    text-align: center;
    margin: 0;
    padding: 10px;
}

.cat_toy_products{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    align-items: center;
    margin: 50px,0;
}

.cat_toy_content1{
    width: 20%;
    margin: 15px;
    box-sizing: border-box;
    float: left;
    text-align: left;
    border-radius:20px ;
    cursor: pointer;
    box-shadow: 0,14px,28px rgba( 0,0,0,0,22);
    transition: .4s;
    background: #eeeeee;
}

.cat_toy_content1:hover{
    box-shadow: 0,3px,6px rgb(0,0,0,0 16),
    0,3px,6px rgba(0,0,0,0,23);
    transform: translate(0px,-8px);
}


.cat_toy_content2{
    width: 20%;
    margin: 15px;
    box-sizing: border-box;
    float: left;
    text-align: left;
    border-radius:20px ;
    cursor: pointer;
    box-shadow: 0,14px,28px rgba rgba( 0,0,0,0,22);
    transition: .4s;
    background: #eeeeee;
}

.cat_toy_content2:hover{
    box-shadow: 0,3px,6px rgb(0,0,0,0 16),
    0,3px,6px rgba(0,0,0,0,23);
    transform: translate(0px,-8px);
}

.cat_toy_content3{
    width: 20%;
    margin: 15px;
    box-sizing: border-box;
    float: left;
    text-align: left;
    border-radius:20px ;
    cursor: pointer;
    box-shadow: 0,14px,28px rgba( 0,0,0,0,22);
    transition: .4s;
    background: #eeeeee;
}

.cat_toy_content3:hover{
    box-shadow: 0,3px,6px rgb(0,0,0,0 16),
    0,3px,6px rgba(0,0,0,0,23);
    transform: translate(0px,-8px);
}

.cat_toy_content4{
    width: 20%;
    margin: 15px;
    box-sizing: border-box;
    float: left;
    text-align: left;
    border-radius:20px ;
    cursor: pointer;
    box-shadow: 0,14px,28px rgba( 0,0,0,0,22);
    transition: .4s;
    background: #eeeeee;
}

.cat_toy_content4:hover{
    box-shadow: 0,3px,6px rgb(0,0,0,0 16),
    0,3px,6px rgba(0,0,0,0,23);
    transform: translate(0px,-8px);
}

.cat_toy_pic1{
    width: 100%;
    height: 200px;
    border-radius:20px;
    text-align: center;
    margin: 0 auto;
    display:block;
}

.cat_toy_pic2{
    width: 100%;
    height: 200px;
    border-radius:20px;
    text-align: center;
    margin: 0 auto;
    display:block;
}

.cat_toy_pic3{
    width: 100%;
    height: 200px;
    border-radius:20px;
    text-align: center;
    margin: 0 auto;
    display:block;
}

.cat_toy_pic4{
    width: 100%;
    height: 200px;
    border-radius:20px;
    text-align: center;
    margin: 0 auto;
    display:block;
}

.cat_toy_p1{
    font-size: 15px;
    text-align: center;
    margin: 0; 
    padding-top: 10px;
    padding-bottom: 10px;
}

.cat_toy_p2{
    font-size: 15px;
    text-align: center;
    margin: 0; 
    padding-top: 10px;
    padding-bottom: 10px;
}
.cat_toy_p3{
    font-size: 15px;
    text-align: center;
    margin: 0; 
    padding-top: 10px;
    padding-bottom: 10px;
}

.cat_toy_p4{
    font-size: 15px;
    text-align: center;
    margin: 0; 
    padding-top: 10px;
    padding-bottom: 10px;
}

@media  (max-width:930px) {
    .cat_toy_content1{
        width: 40%;
    }

    .cat_toy_content2{
        width: 40%;
    }

    .cat_toy_content3{
        width: 40%;
    }
    .cat_toy_content4{
        width: 40%;
    }
}

@media  (max-width:680px) {
    .cat_toy_content1{
        width:100%;
    }

    .cat_toy_content2{
        width: 100%;
    }

    .cat_toy_content3{
        width: 100%;
    }
    .cat_toy_content4{
        width: 100%;
    }
} 

/* footer css */
.footer_container{
    height: 80vh;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
    gap: 20px;
    align-items: center;
    padding: 0,20px,0,20px;
    background-color: #92BEB5;
}

.footer_child{
    height: 70%;
}

.logo_image{
    width: 30%;
    padding-left: 35%;
}

.facebook_logo{
    width: 30px;
}

.instagram_logo{
    width: 40px ;
}

.footer_list{
    list-style: none;
}

.footer_list1{
    list-style: none;
}

.footer_header{
    display: flex;
    justify-content: center;
    color: #E7D7CE;
    margin-bottom: 20px

}
.footer_header2{
    display: flex;
    justify-content: center;
    color: #E7D7CE;
    margin-bottom: 20px
}
.footer_header3{
    display: flex;
    justify-content: center;
    color: #E7D7CE;
    margin-bottom: 20px
}

.footer_list1 li {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.footer_list li {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.social_icons{
    display: flex;
    justify-content: space-evenly;
    padding-top: 10%;
}

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

    .footer_container{
        height: 110vh;
        padding: 0%;
        gap: 5px;

    }

    .child_container{
        width: 100%;
        height: 100%;
    }
    
}