.header{
    .top{
        background-color: $white;
        .header_top{
            padding: 15px 20px 10px 20px;
            display: flex;
            justify-content: space-between;
            .top_left{
               .logo{
                   img{
                       width: 100px;
                       height: 90px;
                   }
               }
            }
            .top_right{
                display: flex;
                align-items: center;
                .info{
                    ul{
                    
                        li{
                            display: inline-block;
                            padding: 0 20px;
                            font-size: 15px;
                            color: $text;
                            i{
                                font-size: 20px;
                                padding-right: 3px;
                                color: $primaryColor;
                            }
                        }
                        .left-border{
                            border-right: 1px solid $text;
                        }
                    } 
                }
                .icon{
                    ul{
                        li{
                            display: inline-block;
                            padding-left: 10px;
                            a{
                                i{
                                    font-size: 25px;
                                    height: 40px;
                                    width: 40px;
                                    border: 1px solid $primaryColor;
                                    border-radius: 7px;
                                    text-align: center;
                                    line-height: 38px;
                                    color: $primaryColor;
                                }
                                .fb{
                                    color:#4267B2;
                                    border: 1px solid #4267B2;
                                }
                                .tw{
                                    color:#00ACEE;
                                    border: 1px solid #00ACEE ;
                                }
                                .lk{
                                    color:#0072bA;
                                    border: 1px solid #0072bA;
                                }
                            }
                        }
                    }
                }
            }
        }
    }
.NavBarHeader{
    background-color: #313743;
    .navItems{
        position: relative;
        .navbar{
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
            .navbar_left{
                .searchBar{
                    width: 400px;
                    z-index: 2;
                    position: relative;
                    .searchIcon{
                        i{
                            width: 50px;
                            height: 100%;
                            color: $white;
                            font-size: 24px;
                            position: absolute;
                            line-height: 45px;
                            text-align: center;
                            right: 0;
                            top: 50%;
                            transform: translateY(-50%);
                            background-color: $primaryColor;
                            border-radius: 5px;
                            cursor: pointer;
                            &:hover{
                                background-color: #da343a;
                            }
                        }
                    }
             .form_control {
                        display: block;
                        width: 100%;
                        height: 45px;
                        font-size: 15px;
                        color: #1d1c1c;
                        padding: 22px;
                        background-color: #fff; 
                        background-clip: padding-box;
                        border: 1px solid #cfcfcf;
                        border-radius: 5px;
                        transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
                        -webkit-transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
                        -moz-transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
                        -ms-transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
                        -o-transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
                        -webkit-border-radius: 5px;
                        -moz-border-radius: 5px;
                        -ms-border-radius: 5px;
                        -o-border-radius: 5px;
                        z-index: -1;
                        &:focus{
                            outline: 0;
                        }
                        &::placeholder{
                            font-size: 15px;
                            color: #6d6b6be1;
                            font-weight: 400;
                        }
                    }
                }
                }
            .navbar_middle{
                a{
                    font-size: 18px;
                    color: $white;
                    font-weight: 500;
                    i{
                        font-size: 20px;
                        padding: 0 5px;
                    }
                }
            }
            .navbar_right{
                ul{
                    li{
                        padding-left:  30px; 
                        cursor: pointer;
                        position: relative;
                        display: inline-block;
                        &:hover a{
                           width: 100%;
                        }  
                        &:hover .sub_down{
                            top: 50px;
                            opacity: 1 !important;
                            margin-top: 0;
                            visibility: visible;
                            padding: 10px 10px 10px 10px;
                        }
            
                        a{
                            font-size: 16px;
                            font-weight: 500;
                            color: $white; 
                            .droppper{
                                font-size: 16px;
                            }
                            &:hover{
                                color: $primaryColor;
                            }
                        }
                        .sub_down{
                            background-color: $white;
                            border-radius: 10px;
                            padding: 10px 10px 10px 10px;
                            box-shadow: 1px 1.732px 20px 0px rgba(0,0,0,0.3);   
                            -webkit-transition: all 0.3s ease-in-out;
                            transition: all 0.3s ease-in-out;
                            position: absolute;
                            visibility: hidden;
                            display: block;
                            width: 250px; 
                            border: none !important;
                            opacity: 0;
                            top: 70px;
                            left: 0;
                            padding: 0;
                            z-index: 999;
                          li{
                               padding: 10px 10px;
                               width: 100%;
                               &:hover{
                                   background-color: $primaryColor;
                                   width: 100%;
                               } 
                               &:hover a{
                                color: $white ; 
                            } 
                              a{
                                font-size: 17px;
                                font-weight: 400;
                                color: black;
                              }
                     }
                    } 
                      .contact{
                          padding: 10px 20px;
                          background-color: $primaryColor;
                          border-radius: 7px;
                          -webkit-border-radius: 7px;
                          -moz-border-radius: 7px;
                          -ms-border-radius: 7px;
                          -o-border-radius: 7px;
                          color: #f3f3f3 !important;
    }
                  }
              }
        
            }
            }
    }
}
}