/* Font Styling*/

@import url('https://fonts.googleapis.com/css2?family=Montserrat&dispklay=swap');

/* css default gormat setting*/

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat' , sans-serif;
    scroll-behavior: smooth;
}

.bg-light-gray{
    background-color: rgb(241, 240, 240);
}

.section_title h1{
    text-decoration: underline;
}

/* for Cart logo hover effect */
.cart {
    text-decoration: none;
    list-style: none;
}

.cart :hover{
    text-decoration: none;
    list-style: none;
}

.bg_cart_1{
    background-color: #8EC5FC ;
    background-image : linear-gradient(62deg, #8EC5FC 0% , #E0C3FC 100%);
}

.list-group-item{
    background-color: inherit !important;
}


/* for checkout page */

.bg_checkout_1{
    background-color: #8EC5FC;
    background-image: linear-gradient(62deg, #8EC5FC 0%, #E0C3FC 100%);
}

 /* for product layout design */

 .single_product{
    background-color: rgb(241, 240, 240);
 }

 .product_img{
    position: relative;
 }

 .product_img .new_product{
    position: absolute;
    top: 5%;
    left: 5%;
 }

 .contact_form{
    background-color: #8EC5FC;
    background-image: linear-gradient(62deg, #8EC5FC 0%, #E0C3FC 100%);
 }

 /* for services section background gradient */

 .feature{
    background: rgb(0, 123,230);
    background: linear-gradient(0deg, rgba(0, 121, 230, 1) 0%, rgba(0, 250, 255,1) 90%);
 }

 /* for footer section background gradient */

 /* .footer_section{
    background-color: #0093E9;
    background-image: linear-gradient(110deg, #0093E9 19%, #8000C7 100%);
 } */

 /* for footer links */
 
 .footer_links ul, li{
    list-style: none;

 }