/* =========== top bar css =========== */

.top-bar {
    display:flex;
    align-items:center;
    border-bottom: 1px solid #0000001a;
    background-color: #043872;
}




.top-social {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin: 0;
}

.top-social li:first-child {
    border-left: 0!important;
}

.top-social li {
    position: relative;
    list-style: none;
    border-left: 1px solid #0000001a;
}

.top-social a {
    display: flex;
    width: auto;
    overflow: hidden;
    text-decoration: none;
    font-weight: 700;
    color: #fff;
    align-items: center;
    font-size: 16px;
    line-height:35px;
    box-sizing: border-box;
}

.top-social a:hover {
    color: #fff;
}

.social-txt {
    display: block;
    flex-basis: 0;
    flex-grow: 1;
    max-width: 0;
    white-space: nowrap;
    transition: all .2s ease;
}

.top-social li a:hover .social-txt {
    max-width: 200px;
    padding-right: 12px;
    transition: all .4s ease;
}

.social-icon{
    padding: 0 12px;
    line-height: 35px;
}

.top-social li:hover{
    background-color: #e9ecef;
}

.top-social .color-facebook:hover{
    background-color: #3b5998;
}

.top-social .color-youtube:hover{
    background-color: #FF0000;
}

.top-social .color-linkedin:hover{
    background-color: #3b5998;
}

.contact-info{
    padding: 0 8px;
    font-weight: 400;
    font-size: 12px;
    color: #fff;
    text-decoration: none;
    line-height: 35px;

}

.contact-info:first-child {
    border-left: 0!important;
}

.contact-info:hover{
    color: #ff9933;
}


@media (max-width: 992px) {
    .top-bar {
        height: auto;
    }
}



.top-auth{
    padding: 0 15px;
    font-weight: 500;
    font-size: 15px;
    line-height: 18px;
    color:#43474a;
    letter-spacing: .5px;
    text-decoration: none;
    line-height: 35px;
    border-left: 1px solid #0000001a;
}

.top-auth:first-child {
    border-left: 0!important;
}

.top-auth:hover{
    background-color: #e9ecef;
}



/* =========== top bar css END =========== */


/* =========== Header css  =========== */

.header{
    position:relative;
    padding: 10px 0 0;
    }


.header-text{
    color: #335095;
    font-weight: bold;
    text-shadow: 1px 1px #043872;
}
.sticky-top {
    top: -1px !important;
}

.header::before{
    content: "";
    background-image: url("../../../assets/img/wave.jpg");
    background-repeat: repeat;
    background-size: cover;
    object-fit: cover;
    background-position: center;
    opacity: 0.25;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    width: auto;
    height: auto;
    z-index: -3;
    width: 100%;
    height: auto;
    transform: scaley(-1);
}

.header-logo{
    text-decoration: none;
    font-size: 24px;
    font-width: 900;
    color: #fff;
    display:flex;
    justify-content:center;
    align-items: center;
    gap: 10px;
}
.header-logo .logo-default{
    display:block;
    width:100px;
    height: 100px;
    margin-left: 0;
    margin-right: 0;
    transition: height .4s ease,padding .4s ease,margin .4s ease,opacity .3s ease;
}

.sub-title{
    font-size: 16px;
    font-width: 700;
    color: #696c7c;
    text-shadow: none;
}


.highlight-menu{
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap:wrap;
    justify-content:end;
    gap:10px;
}

.highlight-menu li{
    list-style: none;
    padding-left: 8px;

}

.highlight-menu li a{
    color: #fff;
    font-size:12px;
    text-decoration:none;
}

.highlight-menu li a:hover{
    color: #ff9933;
}

.img_notice{
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
}

.img_notice img{
    width: 55px;
    height:60px;
}

@media (max-width: 767px) {

    .header-logo .logo-default{
        width: 80px;
        height: 80px;
        margin:0;
    }
    .highlight-menu{
    justify-content:center;
    }

    .img_notice img{
        width: 30px;
        height:33px;
    }
    .header-logo {
        font-size: 21px;
    }
    .sub-title {
        font-size: 12px;
    }

    .contact-info {
        padding: 0 8px;
        line-height: 25px;
    }
    .sm-d-none{
        display: none;
    }
}

@media (max-width: 992px) {
 .highlight-menu{
    justify-content:center;
    }

}


.info-text{

}

.header-info-box{
    position: relative;
    float: left;
    margin-left: 16px;
    padding: 0 0 0 55px;
}


.header-info-box .header-info-icon {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 22px;
    text-align: center;
    color: #fff;
    background: #043872;
    height: 45px;
    width: 45px;
    line-height: 45px;
    -webkit-border-radius: 3px 50% 50%;
    -moz-border-radius: 3px 50% 50%;
    border-radius: 3px 50% 50%;
    webkit-transition: all 0.4s ease 0s;
    -moz-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}

.header-info-box:hover .header-info-icon {
    -webkit-border-radius: 50% 3px 50% 50%;
    -moz-border-radius: 50% 3px 50% 50%;
    border-radius: 50% 3px 50% 50%;
}
/* =========== Header css End  =========== */