@charset "UTF-8";
/* CSS Document */

body {margin:0;}

.nav-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #690828;
	margin: auto;
	padding: 0;
	color: #FFF;
}

.nav-wrapper a,
.nav-wrapper a:visited,
.navigation a,
.navigation a:visited {
	color: #FFF;
	font-size: 95%;
}

.nav-wrapper a:hover,
.navigation a:hover {
	color: #f6c620;
	font-size: 95%;
}

a[aria-current] {
	color: #f6c620;
	font-weight: bold;
	font-size: 95%;
}


.navigation {
	overflow: hidden;
	background-color: #690828;
	margin: 0;
	padding: 0;
	border: 0;
	color: #FFF;
	font-size: 95%;
}

.navigation a {
	float: left;
	display: block;
	color: #FFF;
	text-align: center;
	padding: 14px 16px;
	text-decoration: none;
	font-size: 95%;
}

.active, .visited {
	color: #FFF;
	font-size: 95%;
}

.navigation .icon {
	display: none;
}

.dropdown {
	float: left;
	overflow: hidden;
	color: #FFF;
}

.dropdown .dropbtn {
  font-size: 95%;  
  border: none;
  outline: none;
  color: #FFF;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #690828;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  float: none;
  color: #FFF;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
  font-size: 95%;
}

.navigation a:hover, .dropdown:hover .dropbtn {
  font-weight: bolder;
}

.dropdown-content a:hover {
	font-weight: bolder;
	cursor: pointer;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.navigation a[aria-current] {
	color: #f6c620;
	font-weight: bold;
	font-size: 95%;
}
.navigation a:focus,
.navigation  a:hover,
.navigation  a[aria-current] a:focus,
.tnavigation  a[aria-current] a:hover {
	color: #f6c620;
	font-size: 95%;
}

@media screen and (max-width: 1368px) {
  .navigation a:not(:first-child), .dropdown .dropbtn {
    display: none;
  }
  .navigation a.icon {
    float: right;
    display: block;
  }

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

/* Add a black background color to the top navigation */
.navigation {
  background-color: #690828; color: #FFF;
  overflow: hidden;padding: 0;margin: 0;
}

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

.nav-wrapper a,
.nav-wrapper a:visited,
.navigation a,
.navigation a:visited {
	color: #FFF;
}

/* Add an active class to highlight the current page */
.active {
  color: #FFF;
}

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

/* Dropdown container - needed to position the dropdown content */
.dropdown {
  float: left;
  overflow: hidden;
}

/* Style the dropdown button to fit inside the navigation */
.dropdown .dropbtn {
  font-size: 95%;
  border: none;
  outline: none;
  color: #FFF;
  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: #690828;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
	border-bottom: 2px #FFF dotted;
}

/* Style the links inside the dropdown */
.dropdown-content a {
  float: none;
  color: #FFF;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

/* Add a dark background on navigation links and the dropdown button on hover */
.navigation a:hover, .dropdown:hover .dropbtn {
 font-weight: bolder;
  color: #FFF;
}

/* Add a grey background to dropdown links on hover */
.dropdown-content a:hover {
  background-color: #FFF;
  color: #000;
}

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



/* The "responsive" class is added to the navigation with JavaScript when the user clicks on the icon. This class makes the navigation look good on small screens (display the links vertically instead of horizontally) */
@media screen and (max-width: 1368px) {
  .navigation.responsive {position: relative;}
  .navigation.responsive a.icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .navigation.responsive a {
    float: none;
    display: block;
    text-align: left;
	  color: #FFF;
  }
  .navigation.responsive .dropdown {float: none;}
  .navigation.responsive .dropdown-content {position: relative;}
  .navigation.responsive .dropdown .dropbtn {
    display: block;
    width: 100%;
    text-align: left;
  }
}