.footer{
    background-color: #ffffff;
    position: relative;
    z-index: 2;
    padding-top: 70px;
    .fotter_main{
      background-color: #f0f0f0;
      box-shadow: 0 1px 1px 0 rgba(240,240,240,0.1) inset;
      .footer_wrapper{
        padding: 80px 0 100px 0;
        border-bottom: 1px solid #c3c3c394;
        .footer_wrap{
            .footer_logo{
                img{
                    max-height: 90px;
                    width:auto;
                    object-fit: contain;
                }
                padding-bottom: 12px;
            }
            p{
                font-size: 14px;
                font-weight: 400;
                color: #555555;
                line-height: 20px;
            }
            h4{
                font-size: 15px;
                font-weight: 500;
                color: #333;
            }
            ul{
               padding-left: 16px;
                li{
                    list-style:disc;
                    padding-bottom: 5px;
                    font-size: 14px;
                    color: #333;
                   a{
                    &:hover{
                        color: $primaryColor;
                    }
                   }
                }
            }
            .social_links{
                display: flex;
                i{
                    font-size: 17px;
                    color: #505050;
                    height: 30px;
                    width: 30px;
                    border: 1px solid #c3c3c39e;
                    border-radius: 5px;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    margin-right: 5px;
                    cursor: pointer;
                    &:hover{
                        color: #000;
                        border: 1px solid #333;
                    }
                }
            }
            .qr_img{
                display: flex;
                // justify-content: center;
                padding-top: 20px;
                img{
                    height: 100px;
                    width: 100px;
                    object-fit: contain;
                }
            }
            .product_list{
                padding-left: 0px;
                li{
                    list-style: none;
                }
            }
        }
      }
      .footer_bottom{
        padding: 20px 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        span{
            font-size: 13px;
            font-weight: 400;
            color: #656565;
        }
        ul{
            li{
                display: inline-block;
                margin-left: 10px;
                a{
                    font-size: 13px;
                    color: #333;
                    cursor: pointer;
                    &:hover{
                        color: $primaryColor;
                    }
                    i{
                        font-size: 10px;
                        margin-right: 2px;
                    }
                }
            }
        }
      }
    }
}

