/* CSS Document */
.primary-color {
	background-color: #4285f4 !important;
}
.subnav .subnavbtn {
	border: none;
	outline: none;
	padding: 14px 16px;
	background-color: inherit;
	font-family: inherit;
	margin: 0;
}
.subnav-content {
	display: none;
	position: absolute;
	left: 0;
	width: 100%;
	z-index: 1;
	transition: 0.5s ease; /* add this line */
}
.subnav:hover .subnav-content {
	display: block;
	transition: 0.5s ease; /* and this line */
}

