/* Navbar container */
.navbar {
  overflow: hidden;
  background-color: transparent;
}

/* Links inside the navbar */
.navbar a {
  float: left;
  font-size: 16px;
  color: #000;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

/* The dropdown container */
.dropdown {
  float: left;
  overflow: hidden;
}

/* Dropdown button */
.dropdown .dropbtn {
font-size: 17px !important;
text-transform: capitalize;
font-weight: 400 !important;
  border: none;
  outline: none;
  padding: 14px 16px;
  background-color: inherit;
  color:#000;
  font: inherit; /* Important for vertical align on mobile phones */
  margin: 0; /* Important for vertical align on mobile phones */
}

/* Add a red background color to navbar links on hover */
.navbar a:hover, .dropdown:hover .dropbtn {
  text-decoration:underline;
  color:#000;
}

/* Dropdown content (hidden by default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #fff;
  width: 100%;
  left: 0;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 9999;
  height:400px;
}

/* Mega Menu header, if needed */
.dropdown-content .header2 {
  background: red;
  padding: 16px;
  color: white;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

/* Create three equal columns that floats next to each other */
.column2 {
  float: left;
  width: auto;
  padding: 10px;
  background-color: #fff;
  height: 250px;
}

/* Style links inside the columns */
.column2 a {
  float: none;
  color: #888;
  padding: 0;
font-weight:400;  
  text-decoration: none;
  display: block;
  text-align: left;
  font-size:14px;
}

/* Add a background color on hover */
.column2 a:hover {
	
}

/* Clear floats after the columns */
.row2:after {
  content: "";
  display: table;
  clear: both;
}

@media screen and (max-width: 600px) {
  .column2 {
    width: 100%;
    height: auto;
  }
}