/* Style The Dropdown Button */
.dropbtn1 {
  font-size: 16px;
  border: none;
  cursor: pointer;
  padding: 0px 2px;
}

/* The container <div> - needed to position the dropdown content */
.dropdown1 {
  position: relative;
  display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content1 {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 350px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 100;
}

/* Links inside the dropdown */
.dropdown-content1 a {
  color: black;
  padding: 2px 16px;
  text-decoration: none;
  display: block;
  font-weight:bold;
}

/* Change color of dropdown links on hover */
.dropdown-content1 a:hover {background-color: #f9f9f9;}

/* Show the dropdown menu on hover */
.dropdown1:hover .dropdown-content1 {
  display: block;
}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown1:hover .dropbtn1 {
  background-color: blue;
}
.fas:before {
    content: "\f15d";
    font-family: FontAwesome;
    font-style: normal;
	    color: firebrick;
		    font-weight: bold;

}