
.slider_wrapper
{
   width: 100%;
   height: 100%;
   position: relative;
}

.slide
{
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: none;
    transition: .5s;
}

.product_details_container .slide:hover
{
    transform: scale(1.2);
}
.slide img
{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main_desc .slide img
{
    animation: zoom 5s ease;
}
@keyframes zoom
{
    0% {transform:scale(1)}
    100% {transform:scale(1.2)}
}

.next_wrap, .prev_wrap
{
    position: absolute;
    top: 0;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 10px;
    z-index: 20;
}

.prev_wrap
{
    left: 0; 
}

.next_wrap
{
    right: 0; 
}
.next, .prev
{
    background-color: darkblue;
    color: white;
    border: darkblue;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2;
    opacity: .5;
}


.next:hover, .prev:hover
{
    opacity: 1;
}

.next:focus, .prev:focus
{
    border: 1px solid blue;
}

.next span, .prev span
{
    font-size: 25px;
}

.next
{
    border-radius: 0 5px 5px 0;
}

.prev
{
    border-radius: 5px 0 0 5px;
}


*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html
{
    scroll-behavior: smooth;
}










/*==========================NAV BAR STYLES ==========================*/
.nav_bar
{
    padding: 0 50px;
    background-color: var(--main_color);
    display: flex;
    position: sticky;
    top: 0;
    z-index: 300;
}

.phone_icon
{
    color: var(--highlight_color);
}

.category_menu_container
{
    background-color: var(--highlight_color2);
    flex-basis: 300px;
    display: flex;
    align-items: center;
    padding: 8px 20px;
    cursor: pointer;
    position: relative;

}


.category_content
{
    flex: 1;
    display: flex;
    align-items: center;
}


.category_content span
{
    margin-right: 5px;
}

.category_menu_container span
{
    color: var(--main_color);
}

.nav_icon_container
{
    flex: 1;
    display: flex;
    justify-content: flex-end;
    padding: 8px 0 8px 20px;
    align-items: center;
    
}


.nav_icon_container span
{
    color: var(--highlight_color2);;
}


.nav_icon_container a:not(:last-child)
{
   margin-right: 20px;
}

.nav_icon
{
    display: flex;
    align-items: center;
}

.nav_icon_container a
{
   display: flex;
   position: relative;
}

.close_btn
{
    padding: 10px 20px;
    border: 1px solid var(--color_shade1);
}


.item_container
{
   /* border: 2px solid var(--highlight_color2);*/
    background-color: var(--highlight_color2);
    color: var(--color_shade1);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: none;
    justify-content: center;
    align-items: center;
    overflow: hidden;
   /*margin-left: 5px;*/
   position: absolute;
   top: -12px;
   left: 18px;
}



.category_list_container
{
    position: absolute;
    left: 0;
    top: 64px;
    width: 100%;
    background-color: var(--main_color);
    display: none;
}

.category_list
{
    list-style-type: none;
    position: relative;

}

.category_list:not(:last-child)
{
    border-bottom: 1px solid var(--color_shade3);
}

.category_list a
{
    padding: 10px 20px;
    display: block;
    color: var(--color_shade2);

}


.category_list a:hover, .category_list a:focus
{
    
    color: var(--highlight_color);
    font-weight: bold;


}

.category_submenu
{
    position: absolute;
    top: 0;
    left: 300px;
    width: 300px;
    background-color: var(--main_color);
    z-index: 201;
    display: none;

}

.category_submenu_list
{
    list-style: none;

}



.slider_container
{
    flex: 2;
    height: 0;
    position: relative;
    padding-bottom: 33.3%;
    overflow: hidden;
}

.slider_container img
{
    width: 100%;
    height: 100%;
    object-fit: cover;
    
}

.slider_inner_container
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.advert_container
{
    /*flex-basis: 400px;*/
    flex: 1;
    margin-left: 20px;
    height: 0;
    position: relative;
    padding-bottom: 33.3%;
}

.advert_inner_container
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden; 
    display: flex;
    flex-direction: column;
}

.advert_content
{
    width: 100%;
    overflow: hidden;
    height: 100%;
    position: relative;
}

.advert_content img
{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.advert_content:not(:last-child)
{
    margin-bottom: 20px;
}

.overlay_container
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    opacity: .3;
}

.content_container
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 20px;
}

.product_title
{
    color: white;
    font-size: 30px;
    margin-bottom: 20px;
    text-align: center;
    font-family: "Archivo", sans-serif;
    font-weight: 500;
    font-style: normal;
    line-height: 24px;
}

.product_desc
{
    color: white;
    margin-bottom: 20px;
    text-align: center;
    font-size: 30px;
    max-width: 400px;
    font-family: "Archivo", sans-serif;
    font-weight: 500;
    font-style: normal;
    line-height: 34px;

}


.advert_content .product_title
{
    font-size: 20px;
    margin-bottom: 10px;
}

.advert_content .close_btn
{
    padding: 8px 16px;
    border: 1px solid var(--color_shade1);
    background: 0 0;
}


.advert_content .close_btn:hover
{
    background-color: var(--highlight_color);
}





/*==========================RESPONSIVE MEDIA QUERY=============================*/

@media only screen and (max-width: 1339px)
{
    .service_desc
    {
        grid-template-columns: repeat(auto-fill, minmax(20em, 1fr));
    }

}

@media only screen and (max-width: 1332px)
{
        .product_details_tittle_container
        {
            padding-bottom: 55%;
           
        }

}

@media only screen and (max-width: 1209px)
{
    .column_wrapper
    {
        grid-template-columns: 1fr;
    }

    .column_inner_container:last-child
    {
        max-width: 400px;
    }

    .checkout_wrap
    {
        grid-template-columns: 2fr 1fr;
        width: 500px;
        overflow: auto;
    }
    .cart_wrapper
    {
        
        max-height: 500px;
        overflow: auto;
    }    


}


@media only screen and (max-width: 1150px)
{
    .product_details_title
    {
        font-size: 25px;
    }

}


@media only screen and (max-width: 1108px)
{
        .product_details_tittle_container
        {
            padding-bottom: 58%;
            
        }

        .category_content_container, .service_desc 
        {
            grid-template-columns: repeat(auto-fill, minmax(30em, 1fr));
        }

        .product_details_title_container
        {
            padding-bottom: 58%
        }

}




@media only screen and (max-width: 1121px)
{
    .advert_box h1
    {
        font-size: 24px;
    }

    .advert_box h1
    {
        font-size: 16px;
    }

    .advert_box button
    {
        padding: 8px 12px;

    }


}


@media only screen and (max-width: 1099px)
{
    .service_desc
    {
        grid-template-columns: repeat(auto-fill, minmax(15em, 1fr));
    }



}

@media only screen and (max-width: 953px)
{

    .cart_buy_btn 
    {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        padding: 10px 50px;
        background-color: var(--color_shade1);
        z-index: 300;
    }    
     .product_details_content
     {
        flex-direction: column;
     }

     .product_details_tittle_container
     {
        margin-left: 0;
       position: static;
       padding-bottom: 0;
     }

     .product_details_tittle_content
     {
        position: static;
        width: 100%;
     }

    .details_inner_content
    {
        overflow: visible;
    }

    .product_spec
    {
        max-height: initial;
        overflow: visible;
    }

    
}

@media only screen and (max-width: 921px)
{
        .service_desc
    {
        grid-template-columns: repeat(auto-fill, minmax(20em, 1fr));
    }

}

@media only screen and (max-width: 900px)
{
    .product_desc
    {
        width: 70%;
    }

}

@media only screen and (max-width: 850px)
{
    .main_desc
    {
        flex-direction: column;
    }

        .advert_inner_container
    {
        
        flex-direction: row;

    }

    .advert_container
    {
        
        margin-left: 0;
        
    }

    

        .slider_container
    {
        
        padding-bottom: 50%;
        margin-bottom: 20px;

    }

    .advert_content:not(:last-child)
    {
        margin-right: 20px;
    }


}



@media only screen and (max-width:759px) 
{
    .category_content_container, .service_desc 
    {
    grid-template-columns: repeat(auto-fill, minmax(15em, 1fr));
    }

    .nav_icon_container .close_btn, .nav_icon_container .open_btn
    {
        display: none;
    }

    .btn_responsive
    {
        display: block;
        margin-bottom: 10px;
    }

    
}

@media only screen and (max-width: 700px)
{
        .search_remove
    {
        border: none;
        padding: 10px;
        background-color: var(--color_shade1);
        color: var(--main_color);
        text-transform: uppercase;
        letter-spacing: 1.2px;
        display: block;
        

    }
    
    .cart_buy_btn
    {
        padding: 10px;
    }

        .main_desc, .service_desc, .categories_container, .product_container,  
        .product_container, .advert_section, .product_details_container, .columns_container
    {
        padding: 10px;
    }


        .product_title
    {
        font-size: 22px;
        
    }

    .product_desc
    {
        font-size: 14px;
        
    }

    .slide .close_btn
    {
        padding: 10px 16px;
    }
    

    .nav_bar
    {
        padding: 0 35px 0 10px;
    }

    .product_list_box
    {
        flex-basis: 100px;
        height: 100px;
    }

    .related_product_container 
    {
        padding: 20px 0 0 0;
    }

    .related_product_container h2
    {
        margin-left: 20px;
    }

    .product_scroll_content
    {
        padding: 20px;
    }

    .category_heading
    {
        padding: 20px 20px 0 20px;
    }

    .category_wrapper .product_column_heading
    {
        padding: 0 20px;
    }

    .advert_section 
    {
        flex-direction: column;
    }


    .advert_box_container:not(:last-child)
    {
        margin-right: 0;
    }
    .advert_box_container:last-child 
    {
        margin-top: 20px;
    }
    .advert_box_container 
    {
        padding-bottom: 45%;
    }

    .contact_container 
    {
        flex: 1;
        justify-content: flex-end;
    }

    .top_bar
    {
        padding: 10px;
    }

    .category_list_container 
    {
        top: 60px!important;
    }


    .search_container 
    {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        padding: 20px 0;
        background: var(--color_shade2);
        display: none;
    }

    .nav_icon_container .search_icon 
    {
        display: block;
    }



}

@media only screen and (max-width: 675px)
    {

        .checkout_wrap
    {
        grid-template-columns: 1fr;
        width: 350px;
        overflow: auto;
    }
        .footer_coloumn .logo_container
        {
            display: flex;
            justify-content: center;
            width: 100%;
        }

        .footer_coloumn .logo_container a
        {
            
            flex-basis: 80px;
        }

        .first_footer_p
        {
            text-align: center;
        }

        .column_wrapper.checkout_wrap 
        {
            grid-template-columns: 1fr;
        }

    }

/*@media only screen and (max-width: 650px)
    {
        .advert_section
        {
            flex-direction: column;
        }

        .advert_box_container:not(:last-child)

        {
            margin-right: 0;
        }

        .advert_box_container:last-child

        {
            margin-top: 20px;
        }

        .advert_box_container
        {
            padding-bottom: 45%;
        }


    }
*/

@media only screen and (max-width: 600px)
{
        .footer2
        {
            flex-direction: column;
            align-items: center;
        }

        .copyright_container
        {
            margin-bottom: 20px;
        }

        .product_call_to_action
        {
            flex-direction: column;
        }

        .product_call_to_action button
        {
            width: 100%;
            justify-content: center;
        }

        .add_to_cart_container
        {
            margin-left: 0;
            margin-top: 10px;
        }

        .view_details_container
        {
            margin-right: 0;
        }

        .product_content
        {
           /* grid-template-columns: repeat(auto-fill, minmax(12, 1fr));*/
           grid-template-columns: repeat(2, 1fr);
           grid-gap: 10px;

        }

        .product_list_box 
        {
            flex-basis: 50px;
            height: 50px;
        }


        .product_details_image_box 
        {
            padding-bottom: 80%;
        }


}


@media only screen and (max-width:590px) 
{
    .category_content_container, .service_desc 
    {
    grid-template-columns: 1fr;
    }
    
}



@media only screen and (max-width: 540px)
{
    .advert_inner_container
    {
        
        flex-direction: column;

    }

    .reg_log_link 
    {
        display: none!important;
    }


    .category_menu_container .category_dropdown, .category_content span:last-child
    {
        display: none;
    }

        .category_menu_container
    {
        
        flex-basis: 0;
        position: static;

    }

    .category_submenu
    {
        position: relative;
        width: 100%;
        background-color: var(--color_shade2);
        left: 0;
        

    }

    
    .nav_icon_container 
    {
        padding: 12px 0 12px 20px;
    }

    .product_name
    {
        font-size: 14px;
    }

    .advert_container
    {
        padding-bottom: 100%;
    }

        .category_list_container 
    {
        top: 55px!important;
    }


    .sign_login_container
    {
        display: flex;
        padding: 10px;
    }
    

    .category_menu_container
    {
        flex-basis: 0px;
        position: static;
    }

    .advert_container 
    {
        padding-bottom: 100%;
    }


}



@media only screen and (max-width: 425px)
{
        .summery_container
    {
        min-width: 0;
    }

     .advert_box_container
    {
        padding-bottom: 55%;
    }
    .product_title
    {
        font-size: 20px;
        margin-bottom: 10px
        
    }
    



    .product_desc
    {
        font-size: 12px;
        
    }

    .slide .close_btn
    {
        padding: 8px 12px;
    }

    .slider_container
    {
        
        padding-bottom: 60%;

    }


    .product_list_box
    {
        flex-basis: 80px;
        height: 80px;
    }

}
    

