.mobile_header{
    box-shadow: 0 0 2px rgba(0,0,0,.1);  
    background-color: $white;
    z-index: 10;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 8px 0;
    .headerTop_wrapper {
         display: flex;
         align-items: center;
         justify-content: space-between;
     .headerTop_left{
        .left_text{
            font-size: 13px;
            color: $text;
            font-weight: 500;
            line-height: 20px;
          }
     }
     .logo{
        height: 45px;
        width: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        img{
            max-height: 100%;
            max-width: 100%;
        }
     }
     .headerTop_right{
        text-align: end;
        i{
            font-size: 26px;
            color: #4b4b4b;
        }
      }
    }
}


.offcanvas-start {
    top: 0;
    left: 0;
    width: 300px;
    border-right: 1px solid rgba(0,0,0,.2);
    transform: translateX(-100%);
}

.offcanvas-header{
    .offcanvas-title{
        height: 48px;
        width: auto;
        img{
            max-height: 100%;
            max-width: 100%;
        }
    }
}
.offcanvas-body{
    position: relative;
    .mobile_nav{
        .nav_item{
            font-size: 16px;
            font-weight: 500;
            color: #1f1f1f;
            padding: 8px 0;
            border-bottom: 1px solid #c3c3c385;
            &:last-child{
              border-bottom: 1px solid  transparent;
            }
            a{
                font-size: 16px;
                font-weight: 500;
                color: #1f1f1f;  
            }
            i{
                font-size: 14px;
                color: #585858;
                margin-left: 25px;
            }
            &:hover{
                color: $primaryColor;
            }
            ul{
                padding-left: 20px;
                padding-top: 6px;
                li{
                    padding: 4px 6px;
                   a{
                    font-size: 15px;
                    color: #474747;
                    font-size: 400;
                    &:hover{
                        color: $primaryColor;
                    }
                   }
                }
            }
        }
    }
    .mob_contact_btn{
        display: flex;
        justify-content: center;
        margin-top: 30px;
        .contact_btn{
            font-size: 15px;
            font-weight: 500;
            color: #585858;
            border: 2px solid #1476f788;
            border-radius: 35px;
            padding: 6px 30px;
        }
    } 
    .offcan_footer{
        width: 100%;
        position: absolute;
        bottom: 10px;
        left: 0;
        .social_icon_list{
            padding-bottom: 10px;
            ul{
                text-align: center;
               li{
                   display: inline-block;
                   a{
                    i{
                      font-size: 18px;
                      height: 30px;
                      width: 30px;
                      border-radius: 6px;
                      border: 1px solid #1475F7;
                      display: flex;
                      justify-content: center;
                      align-items: center;
                      margin-right:6px ;
                    }
                    .fb{
                      color: #3b5998;
                      border: 1px solid #3b5998;
                    }
                    .tr{
                      color: #00acee;
                      border: 1px solid #00acee;
                    }
                    .ins{
                      color: #4c68d7;
                      border: 1px solid #4c68d7;
                    }
                    .youtb{
                      color: #CD201F;
                      border: 1px solid #CD201F;
                    }
                  }
               }
            }
         }
        .mob_copyright{
            text-align: center;
            font-size: 13px;
            width: 100%;
        }
    }
}

.menu-visiable{
    display: block;
  }

  .menu-hidden{
    display: none !important;
  }