.dropbtn{
  font-family: ScotiaModern !important;
}
.navbar_mobile {
  background-color: rgba(196,134,56,1);
  overflow: hidden;
  line-height: 30px;
  height: 55px;
  transition: .2s;
  overflow-y: auto;
}
#mobile_header img{
  width: 90%;
  padding: 5px 0 0 5px;
}

/* Style the links inside the navigation bar */
.navbar_mobile a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

.icon{
  height: 100%;
}

/* Hide the link that should open and close the navbar_mobile on small screens */
.navbar_mobile .icon {
  display: none;
}

/* Dropdown container - needed to position the dropdown content */
.dropdown {
  float: left;
  overflow: hidden;
  border-bottom: 1px solid white;
}

/* Style the dropdown button to fit inside the navbar_mobile */
.dropdown .dropbtn {
  font-size: 17px;
  border: none;
  outline: none;
  color: white;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
}

/* Style the dropdown content (hidden by default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Style the links inside the dropdown */
.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
  font-family: arial !important;
}

/* Add a dark background on navbar_mobile links and the dropdown button on hover */
.navbar_mobile a:hover, .dropdown:hover .dropbtn {
  background-color: #d72f00;
  color: white;
}

/* Add a grey background to dropdown links on hover */
.dropdown-content a:hover {
  background-color: rgba(0,0,0,.3);
  color: black;
}

/* Show the dropdown menu when the user moves the mouse over the dropdown button */
.dropdown.active .dropdown-content {
  display: block;
}

/* When the screen is less than 600 pixels wide, hide all links, except for the first one ("Home"). Show the link that contains should open and close the navbar_mobile (.icon) */
@media screen and (max-width: 600px) {
.navbar_mobile a:not(:first-child), .dropdown .dropbtn {
  display: none;
}

.navbar_mobile a.icon {
  float: right;
  display: block;
}
}

.navbar_mobile, #mobile_header{
  display: none;
}

/* The "responsive" class is added to the navbar_mobile with JavaScript when the user clicks on the icon. This class makes the navbar_mobile look good on small screens (display the links vertically instead of horizontally) */
@media screen and (max-width: 600px) {
.navbar_mobile, #mobile_header{
  display: block;
}
#navbar, #header{
  display: none;
}

.navbar_mobile.responsive {
  position: relative;
  height: 100%;
}
.navbar_mobile.responsive a.icon {
  position: absolute;
  right: 0;
  top: 0;
}
.navbar_mobile.responsive a {
  float: none;
  display: block;
  text-align: left;
}
.navbar_mobile.responsive .dropdown {
  float: none;
}
.navbar_mobile.responsive .dropdown-content {position: relative;}
.navbar_mobile.responsive .dropdown .dropbtn {
  display: block;
  width: 100%;
  text-align: left;
}
}
