header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  position: fixed;
  z-index: 9999;
  width:100%;
  margin: 0;
  background-color: white;
  border-bottom:1px solid;
  border-color: #ccc;
  box-shadow:0px 0px 3px 3px rgba(119, 119, 119, 0.3);
  }

header * {
  -webkit-user-select: none; /* Safari */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* IE 10+ */
  user-select: none;
}

.logo {
  flex: 1;
}

.logo img {
  padding-left:20px;
  max-width: 100%;
}

#menu-toggle {
  display: none;
  opacity: 0;
}

#menu-toggle + label {
  display: none;
}

.nav {
  flex: 2;
}

.nav ul {
  display: flex;
  justify-content: flex-end;
  list-style-type: none;
  text-align: center;
  margin-right:20px;
}

.nav li {
  line-height: 30px;
  height: 30px;
  text-align: center;
  border-bottom: 1px solid #888;
  margin-left: 15px;  
}


.nav li img {
  width: 20px; /* Adjust this value to the desired width */
  height: auto; /* This ensures the image maintains its aspect ratio */
  margin-right: 10px; /* Optional: Adds some space between the image and text */
}

.nav a {
  font-weight: 600;
  text-decoration: none;
  color: #444;
  padding: 0px 5px;
  display: block;
}

.nav a:hover {
  border-bottom: 1px solid #4286f4;
  color: #4286f4;
}

/* Media Query for Side Menu */
@media (max-width: 1200px) {
	
  #menu-toggle + label {
	padding-right:20px;
	display: inline-block;
	cursor: pointer;
	font-size: 30px;
	}
	
  .nav {
    display: none;
    }
	
  #menu-toggle:checked  ~ .nav {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: white;
    padding: 10px 0;
    }

  #menu-toggle:checked  ~ .nav ul{
    display: flex;
    flex-direction: column;
    }

  #menu-toggle:checked  ~ .nav ul li {
    font-size: 40px;
    line-height: 60px;
    height: 60px;
    }
  }