.header_main{
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     z-index: 3;
    .header_top{
        padding: 8px 0;
        background-color: $primaryColor;
        .header_top_left{
            ul{
                li{
                    display: inline-block;
                    font-size: 15px;
                    color: $white;
                    padding-right: 12px;
                }
            }
        }
        .header_top_right{
            ul{
                text-align: end;
                li{
                    display: inline-block;
                    margin-left: 15px;
                    a{
                        i{
                            font-size: 18px;
                            color: $primaryColor;
                            height: 33px;
                            width: 33px;
                            border-radius: 4px;
                            background-color: $white;
                            text-align: center;
                            line-height: 33px;
                        }
                    }
                }
            }
        }
    }
    .header{
        z-index: 3;
        .header_content{
             display: flex;
             align-items: center;
             justify-content: space-between;
             height: 80px;
            .logo{
                h5{
                    font-size: 26px;
                    font-weight: 500;
                    color: $white;
                }
            }   
            .nav_item{ 
                ul{
                    li{
                        display: inline-block;
                        padding-left: 20px;
                        a{
                           font-size: 16px;
                           color: $white;
                           font-weight: 400;
                           text-transform: uppercase;
                           &:hover{
                            color: $primaryColor;
                           }
                        }
                    }
                }
            }
        }
    }
    .headerNewClass{
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 4;
        background-color: $white;
        box-shadow: 1px 0.532px 1px 1px rgba(41, 41, 41, 0.1);
        .header_content{
            height: 70px;
           .logo{
               h5{
                   color: $black;
               }
           }   
           .nav_item{ 
               ul{
                   li{
                       a{
                          color: $black;
                       }
                   }
               }
           }
       }
    }
}