<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
.top-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  justify-content: center;
  
  height: 0px;
  

  background-color: var(--main-background-dark);
  color: var(--menu-text-color);
  
  font-family: "BPG Caps";

  position: fixed;
  top: 0;
  right: 0;
  left: 0;	  

  
  z-index: 1000;
  
  
	-webkit-transition: height 1s;
 	-moz-transition: height 1s;
  	-ms-transition: height 1s;
  	-o-transition: height 1s;
  	transition: height 1s;
}

.animate .top-nav{
	height: 70px;
}

.menu {
	display: flex;
	flex-direction: row;
	list-style-type: none;
	margin: 0;
	padding: 0;

	height: inherit;
	align-items: center;
	
	position: relative;
	overflow: hidden;
}

.menu &gt; li {
	display: flex;
	height: inherit;
	align-items: center;
	position: relative;
	padding: 0 5px;
}

.menu &gt; li:not(:last-child) span::after {
    content: '';
    width: 5px;
    height: 5px;
    margin: 0px;
    background: var(--menu-dots);
    border-radius: 50%;
    display: block;
    position: absolute;
    color: white;
    top: 33px;
    right: -3px;
    
    opacity: 0;

	-webkit-transition: opacity 0.5s linear 1s;
 	-moz-transition: opacity 0.5s linear 1s;
  	-ms-transition: opacity 0.5s linear 1s;
  	-o-transition: opacity 0.5s linear 1s;
  	transition: opacity 0.5s linear 1s;    
    
	}

.animate .top-nav .menu &gt; li:not(:last-child) span::after{
	opacity: 1;
}

.menu a{
	color: var(--menu-text-color);
	text-decoration: none;
	margin: 0 0.3rem;
	
	display: flex;
	height: inherit;
	align-items: center;
	
	position: relative;
}

.menu a:hover,
.menu a.activeMenu
{
	color: var(--menu-text-hover-color);
}



.menu-button-container {
  display: none;
  height: 100%;
  width: 30px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 30px;
}

#menu-toggle {
  display: none;
}

.menu-button,
.menu-button::before,
.menu-button::after {
  display: block;
  background-color: var(--menu-text-hover-color);
  position: absolute;
  height: 4px;
  width: 30px;
  transition: transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
  border-radius: 2px;
}

.menu-button::before {
  content: '';
  margin-top: -8px;
}

.menu-button::after {
  content: '';
  margin-top: 8px;
}

#menu-toggle:checked + .menu-button-container .menu-button::before {
  margin-top: 0px;
  transform: rotate(405deg);
}

#menu-toggle:checked + .menu-button-container .menu-button {
  background: rgba(255, 255, 255, 0);
}

#menu-toggle:checked + .menu-button-container .menu-button::after {
  margin-top: 0px;
  transform: rotate(-405deg);
}

@media (max-width: 1024px) {
	.top-nav{
		justify-content: flex-end;


		
	}
	
	.menu-button-container {
		display: flex;
	}
	
	.menu {
		position: absolute;
		top: 0;
		margin-top: 80px;
		left: 0;
		flex-direction: column;
		width: 100%;
		justify-content: center;
		align-items: center;
		height: auto;
		
		background-color: aliceblue;
	}
	
	#menu-toggle ~ .menu li {
		height: 0;
		margin: 0;
		padding: 0;
		border: 0;
		transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
	}
	
	#menu-toggle:checked ~ .menu li {
		height: 2.5em;
		padding: 0.5em;
		transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
	}
	
	.menu &gt; li {
		display: flex;
		justify-content: center;
		margin: 0;
		padding: 0.5em 0;
		width: 100%;
	}
	
	.menu &gt; li:not(:last-child) span::after{
		display: none;
	} 
	

}
</pre></body></html>