/* Desktop Menu Bar */
.menu-bar {
    width: 100%;
	color: #000;
    align-items: center;
	justify-content: center;
    text-transform: uppercase;
}
.menu-bar ul {
    display: flex;
    padding: 10px 0 5px 15px;
	border-radius: 5px;
	list-style: none;
	justify-content: center;
}
.menu-bar ul li::before {
		display: none;
}
.menu-bar ul li {
    color: #000;
	position: relative;
    margin-right: 20px;
	margin-bottom: 5px;
    padding-bottom: 2px;
	padding-left: 0;
	font-weight: 600;
	list-style-type: none;
} 
.menu-bar ul li a {
	text-decoration: none;
	flex-shrink: 0;
	color: #000;
}
.menu-bar ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: #00447c;
    transform: scaleX(0);
    transition: transform 0.5s cubic-bezier(0.19,1,0.22,1);
    transform-origin: right center;
}
.menu-bar ul li a:hover::after {
    transform: scaleX(1);
    transform-origin: left center;
    transition-duration: 0.4s
}
		
/* Mobile Sidebar*/
.sidepanel {
  height: 95vh; 
  width: 0;
  position: fixed; 
  z-index: 150; 
  top: 0;
  left: 0;
  background-color: #00447c; 
  overflow-x: hidden; 
  padding-top: 40px; 
  transition: 0.5s ease-in-out; 
  cursor: pointer;
}
.sidepanel a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 1.5rem;
  color: #fff;
  display: block;
  transition: 0.3s;
  text-transform: uppercase;
}
.sidepanel a:hover {
  padding: 8px 8px 8px 45px;
  color: #fefefe
}
.sidepanel .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}

.openbtn {
  font-weight: 500;
  cursor: pointer;
  background-color: #00447c;
  color: white;
  padding: 10px 15px;
  border: none;
  text-transform: uppercase;
}

.openbtn:hover {
  background-color: #81312f;
}
@media screen and (min-width: 500px) {
	.openbtn {
  font-size: 1.5rem;
  font-weight: 600;
  cursor: pointer;
  background-color: #00447c;
  color: white;
  padding: 10px 15px;
  border: none;
  text-transform: uppercase;
  display: none;
}
}
@media screen and (max-width: 500px) {
    .menu-bar {
  display: none;
}
}