.tanmay-bottom-nav{
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgba(0,40,38,.85);;
}
/* TOP HEADER */
.tanmay-bottom-header{
    background-color:#e8ab22;
    background-color:rgba(1, 24, 23, 0.85); 
    background-color: #ffffff;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:14px 8%;
    border-top:3px solid rgba(0,40,38,.85);
}
.tanmay-logo{
    height: 60px;
    align-items: center;
    /* align-content: center; */
    display: flex;
}
/* LOGO */
.tanmay-logo img{
    max-width:280px;
}

/* SEARCH */

.tanmay-search-box{

    width:420px;
    display:flex;
}

.tanmay-search-box input{

    width:100%;

    height:44px;

    border:1px solid #ccc;
    border-right:none;

    padding:0 15px;

    outline:none;
}

.tanmay-search-box button{

    width:65px;

    border:none;

    /* background:#005ca9; */
    background:  linear-gradient(
        rgba(0,40,38,.85),
        rgba(0,40,38,.85)
    );
    color:#fff;

    cursor:pointer;
}

/* BUTTONS */

.tanmay-header-btns{

    display:flex;
    gap:8px;
}

.tanmay-btn{

    text-decoration:none;

    padding:12px 20px;

    color:#fff;

    font-weight:700;

    border-radius:3px;

    transition:.3s;

    white-space:nowrap;
}

.red{
    background:#d91e18;
}

.blue{
    /* background:#005ca9; */
     background:  linear-gradient(
        rgba(0,40,38,.85),
        rgba(0,40,38,.85)
    );
}

.tanmay-btn:hover{
    opacity:.85;
}

/* NAVBAR */
/* NAVBAR */

.tanmay-navbar{
    /* background:#005ca9; */
     background:  linear-gradient(
        rgba(0,40,38,.85),
        rgba(0,40,38,.85)
    );
}

.tanmay-navbar ul{
    list-style:none;
    display:flex;
    justify-content:center;
    gap:60px;
}

.tanmay-navbar ul li{
    position:relative;
}

.tanmay-navbar ul li a{

    color:#fff;
    text-decoration:none;

    padding:12px 0;

    display:flex;
    align-items:center;
    gap:5px;

    font-weight:600;
}

/* DROPDOWN */

.tanmay-dropdown{

    position:absolute;

    top:100%;
    left:0;

    min-width:220px;

    background:#fff;

    display:flex !important;
    flex-direction:column;

    gap:0 !important;

    opacity:0;
    visibility:hidden;

    transform:translateY(15px);

    transition:.3s;

    box-shadow:0 10px 20px rgba(0,0,0,.15);

    z-index:999;
}

.tanmay-dropdown li{
    width:100%;
}

.tanmay-dropdown li a{

    color:#333 !important;

    padding:12px 18px;

    display:block;
}

.tanmay-dropdown li a:hover{
    /* background:#005ca9; */
     background:  linear-gradient(
        rgba(0,40,38,.85),
        rgba(0,40,38,.85)
    );
    color:#fff !important;
}

/* HOVER SHOW */

.tanmay-navbar ul li:hover .tanmay-dropdown{

    opacity:1;
    visibility:visible;

    transform:translateY(0);
}
.tanmay-navbar ul li i{
    transition:.3s;
}

.tanmay-navbar ul li:hover i{
    transform:rotate(180deg);
}
/* RESPONSIVE */

@media(max-width:1200px){

    .tanmay-top-header{
        flex-wrap:wrap;
        gap:20px;
    }

    .tanmay-search-box{
        width:100%;
    }

    .tanmay-header-btns{
        width:100%;
        justify-content:center;
        flex-wrap:wrap;
    }
}

@media(max-width:768px){

    .tanmay-top-header{
        padding:15px;
        flex-direction:column;
    }

    .tanmay-logo img{
        max-width:220px;
    }

    .tanmay-search-box{
        width:100%;
    }

    .tanmay-header-btns{
        flex-direction:column;
        width:100%;
    }

    .tanmay-btn{
        text-align:center;
    }

    .tanmay-navbar ul{

        flex-direction:column;
        gap:0;
    }

    .tanmay-navbar ul li a{

        text-align:center;
        border-top:1px solid rgba(255,255,255,.2);
    }
}