.header_main{
    .header_top{
        .header_top_wrapper{
            padding: 8px 0;
            width: 100%;
            display: flex;
            justify-content: flex-end;
            align-items: center;
            .text_one{
                font-size: 15px;
                font-weight: 500;
                color: $white;
            }
            ul{
                li{
                    display: inline-block;
                    font-size: 15px;
                    color: #353434d3;
                    font-weight: 400;
                    padding: 0 10px; 
                    border-right: 1px solid #c3c3c3c9;
                    &:last-child{
                     border-right: 1px solid transparent;
                    }
                }
            }
            .icon_list{
                ul{
                    display: flex;
                    justify-content: flex-end;
                    align-items: center;
                    li{
                        height: 35px;
                        width: 35px;
                        background-color: #3b5998;
                        margin-left: 8px;
                        border-radius: 50%;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        a{
                            line-height: 0px;
                            i{
                                font-size: 18px;
                                color: #fff;
                            }
                        }
                    }
                    .twitter{
                        background-color: #00acee;
                    }
                    .insta{
                        background-color: #d65737;
                    }
                    .linkedin{
                        background-color: #0A66C2;
                    }
                }
            }
        }
    }
    
    .header{
        background-color: $white;
        box-shadow: 0 1px 1px 1px rgba(0,0,0,.129) ;
       .header_wrapper{
              height: 60px;
              display: flex;
              align-items: center;
              justify-content: space-between;
             .logo{
                height: 35px;
                width: auto;
                display: flex;
                align-items: center;
                justify-content: center;
                img{
                    height: 100%;
                    width: 100%;
                    object-fit: contain;
                }
             }
             .nav_list{ 
                li{
                    padding-left: 18px;
                    cursor: pointer;
                    position: relative;
                    display: inline-block;
                    &:hover a{
                       width: 100%;
                    }
                    &:hover .sub_down{
                        top: 38px;
                        opacity: 1;
                        margin-top: 0;
                        visibility: visible;
                        padding: 10px 10px 10px 10px;
                    } 
                    a{
                        font-size: 17px;
                        color: #333;
                        font-weight: 400;
                        span{
                            padding-right: 10px;
                            font-size: 18px;
                        } 
                        .droppper{
                            font-size: 16px;
                        }
                        
                    }
                    .sub_down{
                        background-color: #ffffff;
                        border-radius: 6px;
                        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: 190px;
                        border: none !important;
                        opacity: 0;
                        top: 40px;
                        right: 0;
                        padding: 0;  
                        z-index: 10;
                      li{
                           padding: 2px 8px;
                           width: 100%;
                           &:hover a{
                            //    background-color: #eeeeeead;
                               color: $primaryColor;
                           } 
                          a{
                            font-size: 14px;
                            color: #272626;
                            font-weight: 400;
                          }
                      }
                 }
                }
            }
       }
    }
}
.headerFloating{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    animation: headerAnime 1s;
    .header_top{
        display: none;
    }
}

.section_head{
    text-align: center;
    span{
        font-size: 26px;
        font-weight: 600;
        color: #000;
        border-bottom: 2px solid #000;
        padding: 5px 0;
    }
}

@keyframes headerAnime {
    0%   {top: -50px;}
    100% {top: 0px;}
  }