/*DROPDOWNS*/
.dropdown {
  position: relative;
  display: inline-block;
  /* cursor: grabbing; */
}
.dropbtn {
  color: black;
  font-family: 'Bobby Jones Soft Regular';
  font-size: 13px;
  border: black;
  cursor: pointer;
}
.dropdown-content {
  display: none;
  position: absolute;
  color: #2f88a3;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}
.dropdown-content a {
  font-family: 'Bobby Jones Soft Regular';
  color: #2f88a3;
  padding: 12px 16px;
  text-decoration: none;
  text-align: center;
  display: block; 
}
.dropdown-content a:hover {
  background-color: #f1f1f1;
}
.dropdown:hover .dropdown-content {
  display: block;
}