/* navbar dropdown css */
.dropdown {

    display: inline-block;

    position: relative;

    outline: none;
    
    margin: 0px;
}

.dropbtn {
  
    padding: 12px 16px;

    color: white;

    cursor: pointer;
    
    transition: 0.35s ease-out;
}

.dropdown .dropdown-content {
  
    position: absolute;

    top: 50%;

    background-color: #007379;

    min-width: 100%;

    box-shadow: 0px 8px 16px rgb(60, 60, 60);

    z-index: 100000;

    visibility: hidden;

    opacity: 0;

    transition: 0.35s ease-out;

}
.dropdown-content a {
  
    color: black;

    padding: 0px 0px !important;

    text-align:center;

    display: block;

    text-decoration: none;

    transition: 0.35s ease-out;
}
.dropdown-content a:hover {

    background-color: #eaeaea;

}

.dropdown:focus .dropdown-content {
  
    outline: none;

    transform: translateY(20px);

    visibility: visible;

    opacity: 1;
}
.dropbtn:hover, .dropdown:focus .dropbtn {
  
    background-color: #691692;
}

.dropdown .db2 {
  
    position: absolute;

    top: 0; right: 0; bottom: 0; left: 0; opacity: 0;

    cursor: pointer;

    z-index: 10;

    display: none;
}
.dropdown:focus .db2 {
  
    display: inline-block;

}
.dropdown .db2:focus .dropdown-content {
    
    outline: none;

    visibility: hidden;

    opacity: 0;
}