header{
    background-color: #FCFDFF;
    padding: 12px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: background 0.3s ease, backdrop-filter 0.3s ease;
}

.left{
    display: flex;
    align-items: center;
    cursor: pointer;
    a{
        text-decoration: none;
        display: flex;
        align-items: center;
        .icon-text{
            font-family: "Oswald", sans-serif;
            font-optical-sizing: auto;
            font-weight: 400;
            font-style: normal;
            margin-left: 10px;
            color: #066abb;
            line-height: 1.2;
            text-align: center;
        }
    }

}

.center{
    ul{
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin: 0;
        padding: 0;
        border: 1px solid #b3d6f478;
        border-radius: 10px;
        li{
            list-style: none;
            padding: 10px;
            display: flex;

            .underline-right {
                position: relative;
                text-decoration: none;
                text-decoration: none;
                font-family: "Montserrat", sans-serif;
                font-optical-sizing: auto;
                font-weight: 600;
                font-style: normal;
                color: #484848;
                font-size: 17px;
            }

            .underline-right:hover {
                color: #FF5722;
            }
            .underline-right::after {
                content: "";
                position: absolute;
                left: 0;
                bottom: -3px;
                height: 2px;
                width: 0;
                /* background-color: #155DFC; */
                transition: width 0.3s ease;
            }

            .underline-right:hover::after {
                width: 100%;
            }
        }
    }
}
.center ul:hover {
    border: 1px solid #ff572242;

}

.right{
    display: flex;
    .btn{
        height: 36px;
        padding: 8px 16px;
        cursor: pointer;
    }
    .btn:hover {
        background: #FF5722;
    }
}
.menu-nav{
    display: none;
    width: 25px;
}
.menu-nav i{
    border-bottom: 3px solid #0083cc;
    width: 100%;
    display: block;
    margin-bottom: 6px;
}
.nav-icon{
    /* width: 56px; */
    height: 56px;
}
@media (max-width:1140px) {
    .head .container .right {
        margin-left: auto;
    }
    .head .container .right{
        display: flex ;
    }
}

@media (max-width: 860px){
    .head .container .left {
        margin-right: auto;
        margin-left: auto;
    }

}
@media   (max-width:760px){
    .head .container .left {
        margin-right: auto;
        margin-left: 0;
    }
    .left img{
        padding-left: 10px;
        width: 47px;
        height: 47px;
        object-fit: contain;
    }
    .icon-text span{
        font-size: 14px;
    }
    .center ul {
        display: block;
        text-align: start;
        width: 250px;
        background: #716f7917;
    }
    .center li{
        justify-content: start;
    }
    .center{
        display: none;
        width: 100%;
        margin-bottom: 20px;
        margin-left: 10px;
        margin-top: 30px;
    }
    .head .container .right{
        display: none;
        width: 100%;
    }
    .menu-nav{
        display: block;
        position: fixed;
        right: 52px;
        top: 26px;
        cursor: pointer;
        z-index: 1000;
    }

}


@media  (max-width: 550px) {
    .left{
        margin-right: auto;
    }
    .left img{
        padding-left: 10px;
        width: 47px;
        height: 47px;
        object-fit: contain;
    }
    .icon-text span{
        font-size: 14px;
    }
    .center{
        width: 100%;
        justify-content: start;
        display: flex;
        margin-top: 30px;
        margin-left: 20px;
    }
    .center ul {
        display: block;
        text-align: center;
    }
    .center li{
        justify-content: start;
    }
    .center{
        display: none;
        margin-bottom: 20px;
    }
    .head .container .right{
        display: none;
        width: 100%;
        margin-left: 30px;
    }
    .menu-nav{
        display: block;
        position: fixed;
        right: 21px;
        top: 26px;
        cursor: pointer;
        z-index: 1000;
    }

}
