*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
    -webkit-font-smoothing: antialiased;
}
.tanmay-top-header{
    background:#e8ab22;
    /* min-height:72px; */
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:5px 50px;
    flex-wrap:wrap;
}

/* LEFT */

.tanmay-header-left{
    display:flex;
    align-items:center;
    gap:35px;
}

.tanmay-nav-social-icons{
    display:flex;
    gap:12px;
}

.tanmay-nav-social-icons a{
    width:35px;
    height:35px;
    border:1px solid rgba(0,40,38,.85);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    color:#fff;
    transition:.3s;
}

.tanmay-social-icons a:hover{
    background:rgba(0,40,38,.85);;
    color:#e8ab22;
}

.tanmay-menu-links{
    display:flex;
    gap:12px;
}

.tanmay-menu-links a{

    text-decoration:none;
    color:#fff;

    font-weight:600;
}

.tanmay-menu-links span{
    color:#fff;
}

.tanmay-login-link a{

    text-decoration:none;
    color:#fff;

    font-weight:600;
}

.tanmay-login-link i{
    margin-right:6px;
}

/* RIGHT */

.tanmay-header-right{
    display:flex;
    align-items:center;
    gap:25px;
    background-color: rgb(255 255 255 / 25%);
    padding: 3px 8px;
    border-radius: 30px 0px 00px 30px;
    position: relative;
}

.tanmay-header-right::before{
        position: absolute;
    content: " ";
    right: -50px;
    top: 0px;
    height: 49px;
    width: 50px;
    background-color: rgb(255 255 255 / 25%);
}

.tanmay-info-box{
    display:flex;
    align-items:center;
    gap:12px;
}

.tanmay-icon{
    width:35px;
    height:35px;
    background:rgba(255,255,255,.25);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor: pointer;
    color:#fff;
    transition: all 0.3s;
}
.tanmay-icon:hover{
    background:rgba(0,40,38,.85);;
    color:#e8ab22;
    transition: all 0.2s;
}
.tanmay-text span{

    display:block;
    /* margin-bottom: 5px; */
    font-size:13px;
    color:#fff;
}

.tanmay-text h4{

    font-size:15px;
    color:#222;

    font-weight:700;
}

/* TABLET */

@media(max-width:992px){

    .tanmay-top-header{
        padding:15px 20px;
        justify-content:center;
        gap:20px;
    }

    .tanmay-header-left,
    .tanmay-header-right{
        flex-wrap:wrap;
        justify-content:center;
    }
}

/* MOBILE */

@media(max-width:768px){

    .tanmay-top-header{
        flex-direction:column;
        text-align:center;
    }

    .tanmay-header-left{
        flex-direction:column;
        gap:15px;
    }

    .tanmay-header-right{
        flex-direction:column;
        gap:15px;
        margin-top:15px;
    }

    .tanmay-info-box{
        justify-content:center;
    }
}