.header_main{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 3;
    .header_top{
        background-color: #294A8D;
        .header_top_wrapper{
            height: 40px;
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            .text_one{
                font-size: 15px;
                font-weight: 500;
                color: $white;
                font-family: 'SolaimanLipi', sans-serif;
            }
            ul{
                li{
                    display: inline-block;
                    font-size: 15px;
                    color: $white;
                    font-weight: 400;
                    padding: 0 10px;
                }
            }
            .icon_list{
                i{
                    font-size: 20px;
                    color: $white;
                    margin-left: 10px;
                }
            }
        }
    }
    
    .header{
        background-color: $white;
        box-shadow: 0 1px 1px 1px rgba(0,0,0,.129) ;
       .header_wrapper{
              height: 70px;
              display: flex;
              align-items: center;
              justify-content: space-between;
             .logo{
                height: 40px;
                width: auto;
                display: flex;
                align-items: center;
                justify-content: center;
                img{
                    height: 100%;
                    width: 100%;
                    object-fit: cover;
                }
             }
             ul{
                li{
                    display: inline-block;
                    padding-left: 14px;
                    a{
                        font-size: 16px;
                        font-weight: 500;
                        color: #070707;
                        &:hover{
                            color: $primaryColor;
                        }
                    }
                }
             }
       }
    }
}

