*{
    font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
    margin: 0%;
}

.nav-main-con{
    width: 100%; 
    background-color: #3b527080;
}
.background-trans{
    background-color: transparent;
}
.div-top-nav {
    display: flex;
    justify-content: center;
    justify-content: space-between;
    height: max-content;
    padding: 25px 20px 0px 20px;
    z-index: 4;
    position: relative;
}
.div-top-login{
    display: flex;
    justify-content: space-between;
}
.div-top-search{
    height: 50px;
    width: 245px;
    align-items: center;
}
.div-top-search form{
    display: flex; 
    justify-content: center; 
    align-items: center; 
}
.div-top-search form img{
    padding: 0px 8px 0px 8px;
}
.div-top-search form input{
    padding: 0px 8px 0px 8px;
    width: 200px;
    border: rgba(255, 255, 255, 5.0);
    border-radius: 5px;
    font-size: 16px;
    background-color: transparent;
    color: white;    
    outline: none;
}
.div-top-search form input[type="text"]:focus {
    background-color: transparent;
    border: transparent; 
    outline: none; 
}
.div-top-search form input[type="text"]::placeholder {
    color: white;
    opacity: 1;
}
.div-top-logo{
    width: max-content;
}
.div-top-login{
    width: 250px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.div-top-login-ph_no{
    width: max-content;
    height: 35px;
    border-radius: 50px;
    background-color: #00ac4e;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px 0px 0px 5px;
    font-size: 0.9rem;
}
.div-top-login-ph_no a{
    text-decoration: none;
    color: white;
    padding: 10px 10px 10px 5px;
}
.navbar {
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    z-index: 5;
    position: relative;
    height: 80px;
    padding-top: 15px;
}
.border-radi {
    border-radius: 10px;
}
  
.navbar-items a {
    float: left;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}
.navbar-items a:hover {
    background-color: #00ac4e;
}

.dropdown {
    float: left;
    overflow: hidden;
}

.dropdown .dropbtn {
    border: none;
    outline: none;
    color: white;
    padding: 14px 16px;
    background-color: inherit;
    font-family: inherit;
    margin: 0;
    font-weight: 600;
    font-size: 0.9rem;
}

.dropdown:hover .dropbtn {
    background-color: #00ac4e;
}
.dropdown{
    border-radius: 10px 10px 0px 0px;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #00ac4e;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 0;
    text-transform: uppercase;
}

.dropdown-content a {
    float: none;
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
    color: white;
}

.dropdown-content a:hover {
    background-color: rgba(0, 0, 0, 0.244)
}

.dropdown:hover .dropdown-content {
    display: block;
}



@media (max-width: 768px) { 
    .navbar {
        flex-direction: column;
        display: none; 
        width: 100%;
        background-color: #374b73; 
    }

    .navbar-toggle {
        display: block;
        cursor: pointer;
        color: white;
        font-size: 24px;
        padding: 14px;
    }

    .navbar-items a {
        text-align: left;
        padding: 12px 16px;
    }
    .navbar.show {
        display: flex;
    }
}
@media only screen and (max-width: 992px){
    .navbar {
        flex-direction: column;
        display: none; 
        width: 100%;
        background-color: #374b73; 
    }

    .navbar-toggle {
        display: block;
        cursor: pointer;
        color: white;
        font-size: 24px;
        padding: 14px;
    }

    .navbar-items a {
        text-align: left;
        padding: 12px 16px;
    }
    .navbar.show {
        display: flex;
    }
}
