.header_main{
    .header_top{
        background-color: #002749;
        padding: 10px 0;
        .header_top_wrapper{
            display: flex;
            align-items: center;
            position: relative;
             .icon_list{
                position: absolute;
                right: 0;
                top: 0;
                ul{
                    display: flex;
                    justify-content: flex-end;
                    align-items: center;
                    li{
                        height: 35px;
                        width: 35px;
                        margin-left: 8px;
                        border-radius: 50%;
                        background-color: $white;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        a{
                            line-height: 0px;
                            i{
                                font-size: 18px;
                                color: #3b5998;
                            }
                            .twitter{
                                color: #00acee;
                            }
                            .insta{
                                color: #d65737;
                            }
                            .linkedin{
                                color: #0A66C2;
                            }
                        }
                    }
                }
            }
             .logo{
                img{
                    max-height: 110px;
                    width: auto;
                    object-fit: contain;
                }
             }
             .header_top_content{
                padding-left: 10px;
                .micro_name{
                    font-size: 28px;
                    font-weight: 500;
                    color: $white;
                    line-height: 36px;
                    text-transform: uppercase;
                }
                .micro_location{
                    font-size: 15px;
                    font-weight: 400;
                    color: #d2d1d1;
                    line-height: 22px;
                    padding-top: 5px;
                }
             }
        }
    }
    .header{
        background-color: #033b6d;
        padding: 15px 0;
        .header_wrapper{
            display: flex;
            
            .header_nav{ 
                li{
                    padding-right: 25px;
                    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: 16px;
                        color: #ffffff;
                        font-weight: 400;
                        &:hover{
                            color: #df4406;
                        }
                        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: #df4406;
                           } 
                          a{
                            font-size: 14px;
                            color: #272626;
                            font-weight: 400;
                          }
                      }
                 }
                }
            }
        }
    }
    .news_frame_wrapper{
        background-color:#002749 ;
    }
    .news_frame{
        background:#002749;
        display: flex;
        align-items: center;
        .frame_heading{
            background-color: #df4406;
            height: 40px;
            padding: 0 20px;
            display: flex; 
            justify-content: center;
            align-items: center;
            color: $white; 
            font-weight: 500;
            font-size: 16px;
            min-width: 150px;
        }
        marquee{
            height: 40px;
            display: flex;
            align-items: center;
            width: 100%;
            a{
                color: #ffa07d;
                font-size: 14px;
                font-weight: 400;
             }
        }
    }
}



.headerFloating{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    animation: headerAnime 1s;
    // box-shadow: 0 1px 1px 1px rgba(0,0,0,.129) ;
    .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;}
  }