.site-header {
    padding: 40px 0;
    position: absolute;
    z-index: 99;
    width: 100%;
    background: none;
    border: none;
}
.site-header .container {
    width: 65%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
	flex-direction: row-reverse
}

@media(max-width: 1024px){
	.site-header {
		padding: 40px 10%;
		position: absolute;
		z-index: 99;
		width: 100%;
		background: none;
		border: none;
	}
	.site-header .container {
		width: 90%;
		margin: auto;
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
}

@media(max-width: 767px){
	.site-header {
		padding: 40px 7%;
		position: absolute;
		z-index: 99;
		width: 100%;
		background: none;
		border: none;
	}
	.site-header .container {
		width: 100%;
		margin: auto;
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
}

.site-branding h1,
.site-branding .custom-logo-link {
    font-size: 2.5em;
    font-family: RH-Zak !important;
    font-weight: bold;
    color: #333;
    text-decoration: none;
    display: flex;
}
.site-branding { width: 150px; }
.site-branding img {width: 100%; height: auto;}
header .site-branding img {filter: brightness(0) invert(1)}


/* sidemenu */

/* Hide the checkbox */
#sidebar-toggle {
  display: none;
}

/* Sidebar */
.sidebar {
  position: fixed;
  top: 0;
  right: -250px;
  width: 250px;
  height: 100%;
background: var(--main-color);
  color: white;
  padding: 30px;
  box-shadow: 2px 0 10px rgba(0,0,0,0.3);
  transition: 0.1s ease;
  z-index: 1001;
}

.sidebar a {color: var(--main-color-text)}

.sidebar ul{
	display: flex; 
	flex-direction: column;
	list-style: none;
	
}

.sidebar ul li {opacity: 0; transition: 1s; transform: translateY(50px)}

/* Overlay (label that acts as backdrop) */
.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;/*
backdrop-filter: blur(10px); 
-webkit-backdrop-filter: blur(10px); */
background: #0005;
  display: none;
  z-index: 1000;
  cursor: pointer;
}

/* Open button */
.sidebar-open-btn {
  cursor: pointer;
  color: white !important;
  font-size: 18px;
  display: inline-block;
  position: relative;
  z-index: 999;
	border: none;
}

/* Show sidebar and overlay when checkbox is checked */
#sidebar-toggle:checked ~ .sidebar {
  right: 0;
}

#sidebar-toggle:checked ~ .sidebar ul li {
  opacity: 1;
  transform: translateY(0px)
}

#sidebar-toggle:checked ~ .sidebar ul li:nth-child(1) {
  opacity: 1;
}

#sidebar-toggle:checked ~ .sidebar ul li:nth-child(2) {
	transition-delay: 0.2s;
	opacity: 1;
}

#sidebar-toggle:checked ~ .sidebar ul li:nth-child(3) {
	transition-delay: 0.3s;
	opacity: 1;
}

#sidebar-toggle:checked ~ .sidebar ul li:nth-child(4) {
	transition-delay: 0.4s;
	opacity: 1;
}

#sidebar-toggle:checked ~ .sidebar ul li:nth-child(5) {
	transition-delay: 0.5s;
	opacity: 1;
}

#sidebar-toggle:checked ~ .sidebar ul li:nth-child(6) {
	transition-delay: 0.6s;
	opacity: 1;
}

#sidebar-toggle:checked ~ .sidebar-overlay {
  display: block;
}