.header_main{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 3;
    .header_top{
        background-color: #000;
        padding: 15px 0;
        .header_top_wrapper{
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            .header_left{
                display: flex;
                align-items: center;
                .icon_list{
                    ul{
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        li{
                            a{
                                i{
                                    background-color: #1877F2;
                                    height: 30px;
                                    width: 30px;
                                    border-radius: 50%;
                                    margin-left: 10px;
                                    display: flex;
                                    justify-content: center;
                                    align-items: center;
                                    color: $white;
                                    font-size: 18px;
                                }
                            }
                            
                        }
                    }
                
            }
            h2{
                font-size: 18px;
                color: #fff;
                margin-bottom: 0;
            }
        }
            .header_right{
                ul{
                    li{
                        display: inline-block;
                        color: #fff;
                        font-size: 15px;
                        padding-left: 20px;
                        i{
                            margin-right: 3px;
                        }
                    }
                }
            }
        }
    }
}

.header{
    background-color: $white;
    overflow: hidden;
    box-shadow: 0 1px 1px 1px rgba(0,0,0,.129) ;
   .header_wrapper{
          padding: 12px 0;
          display: flex;
          align-items: center;
          justify-content: space-between;
          .headerlogo_left{
         .logo{
            height: 40px;
            width: auto;
            display: flex;
            align-items: center;
            justify-content: center;
            img{
                height: 100%;
                width: 100%;
                object-fit: contain;
            }
            h2{
                margin-bottom: 0;
                color: $secondColor;
                margin-left: 10px;
                font-size: 40px;
            }
         }
        }
        .header_right{
            display: flex;
            align-items: center;
            .nav_list{
                ul{
                    li{
                        display: inline-block;
                        padding: 0 10px;
                        a{
                            font-size: 16px;
                            font-weight: 500;
                            color: #333;
                        }
                    }
                }
            }
            .call_btn{
                padding: 3px 20px;
                background-color: #FD9904;
                border-radius: 6px;
                margin-left: 25px;
                h5{
                    font-size: 12px;
                    font-weight: 400;
                    line-height: 20px;
                    color: $white;
                }
                h6{
                    font-size: 14px;
                   font-weight: 500;  
                   line-height: 8px; 
                   color: $white;            
                 }
            }
        }
    }
}