.sticky-header{
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
}
#topnav-container {
    background-color: var(--clr-card-bg);
    position: relative;
    box-shadow: var(--box-shadow-light-only);
    transition: top 0.3s;
    padding-top: 15px;
    padding-bottom: 15px;
}
#topnav-container a{
    text-decoration: none;
}
#topnav-container-inner{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
@media only screen and (max-width: 750px) {
    #topnav-logo-container{
        display: none!important;
    }
    #hidden-placeholder{
        display: block!important;
    }
    .main-content{
        margin-top: 70px!important;
    }
}
#hidden-placeholder{
    display: none;
    visibility: hidden;
}
#topnav-logo-container{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
#topnav-logo-container p{
    font-size: 0.7rem;
    margin-bottom: 5px;
}
#topnav-logo-container svg{
    height: 40px;
    width: auto;
}
#topnav-logo-container svg:hover{
    /*transform: scale(1.05);*/
}
#topnav-logo-container img{
    width: auto;
    height: 60px;
}
#topnav-logo-container img:hover{
    /*transform: scale(1.05);*/
}
#topnav-menu-container{
    padding: 0 20px 0 0;
}
.topnav-menu-item{
    display: inline-block;
}
.topnav-menu-item a{
    text-decoration: none;
    color: var(--clr-text);
    padding: 0 10px;
    font-size: 1.2rem;
}
.topnav-menu-item a:hover{
    color: var(--primary-accent);
}
.topnav-current-menu-item a{
    color: var(--primary-accent);
}
.magic-underline{
    background-color: var(--primary-accent);
    height: 2px;
    position: absolute;
    top: 0;
    left: 0;
}
@media only screen and (max-width: 1250px) {
    .topnav-menu-item{
        display: none!important;
    }
    #topnav-menu-icon{
        display: block!important;
    }
}
#sponsored-container p{
    margin: 0!important;
}
@media only screen and (max-width: 550px) {
    #sponsored-container{
        display: none;
    }
}
#topnav-menu-icon{
    width: 35px;
    height: 30px;
    position: relative;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 800ms ease-in-out cubic-bezier(.05,.43,.25,.95);
    -moz-transition: 800ms ease-in-out cubic-bezier(.05,.43,.25,.95);
    -o-transition: 800ms ease-in-out cubic-bezier(.05,.43,.25,.95);
    transition: 800ms ease-in-out cubic-bezier(.05,.43,.25,.95);
    z-index: 3002;
    display: none;
}
#topnav-menu-icon span{
    display: block;
    position: absolute;
    height: 5px;
    width: 100%;
    background: var(--clr-text);
    border-radius: 5px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 400ms ease-in-out;
    -moz-transition: 400ms ease-in-out;
    -o-transition: 400ms ease-in-out;
    transition: 400ms ease-in-out;

}
#topnav-menu-icon span:nth-child(1) {
    top: 0;
}
#topnav-menu-icon span:nth-child(2),#topnav-menu-icon span:nth-child(3) {
    top: 10px;
    left: 5px;
}
#topnav-menu-icon span:nth-child(4) {
    top: 20px;
}
#topnav-menu-icon.open span:nth-child(1) {
    top: 10px;
    width: 0;
    left: 50%;
}
#topnav-menu-icon.open span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}
#topnav-menu-icon.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
#topnav-menu-icon.open span:nth-child(4) {
    top: 10px;
    width: 0;
    left: 50%;
}
#slide-in-menu{
    position: fixed;
    right: -100vw;
    top: 0;
    height: 100vh;
    width: 100%;
    transition: right 800ms cubic-bezier(.05,.43,.25,.95);
    background-color: var(--clr-card-bg);
    display: flex;
    align-items: center;
    z-index: 3000;
}
.slide-in-menu-item{
    cursor: pointer;
    display: block;
    font-size: clamp(3rem, 6vw, 5rem);
    padding: clamp(1.5rem, 4vw, 3rem);
    transition: opacity 400ms ease;
    word-break: keep-all;
    white-space: nowrap;
}
#slide-in-menu-items {
    margin-left: clamp(1rem, 15vw, 48rem);
    position: relative;
    z-index: 3002;
}
@media only screen and (max-width: 500px) {
    #slide-in-menu-items {
        margin-left: 5vw;
    }
    .slide-in-menu-item{
        font-size: 2rem;
    }
}
#slide-in-menu-items a{
    color: var(--clr-text);
    text-decoration: none;
}
#slide-in-menu-items:hover > .slide-in-menu-item {
  opacity: 0.4;
}
#slide-in-menu-items:hover > .slide-in-menu-item:hover {
  opacity: 1;
}
#slide-in-menu-background-pattern{
      background-image: radial-gradient(
        rgba(29, 36, 45, 0.1) 9%,
        transparent 9%
      );
    background-position: 0% 0%;
    background-size: 12vmin 12vmin;
    height: 100vh;
    left: 0px;
    position: absolute;
    top: 0px;
    transition: opacity 800ms ease,
    background-size 800ms ease,
    background-position 800ms ease;
    width: 100vw;
    z-index: 1;
}
#slide-in-menu-background-image {
    background-image: url("/static/img/art/slide-menu-background.jpg");
    background-position: center 40%;
    background-size: 110vmax;
    filter: brightness(70%);
    height: 100%;
    left: 0px;
    opacity: 0.4;
    position: absolute;
    top: 0px;
    transition: opacity 800ms ease,
    background-size 800ms ease,
    background-position 800ms ease;
    width: 100%;
    z-index: 0;
}
#slide-in-menu-items:hover ~ #slide-in-menu-background-pattern {
  background-size: 11vmin 11vmin;
  opacity: 0.7;
}
#slide-in-menu-items:hover ~ #slide-in-menu-background-image {
  background-size: 100vmax;
  opacity: 0.3;
}
#slide-in-menu[data-active-index="0"] > #slide-in-menu-background-pattern {
  background-position: 0% -20%;
}
#slide-in-menu[data-active-index="1"] > #slide-in-menu-background-pattern {
  background-position: 0% -40%;
}
#slide-in-menu[data-active-index="2"] > #slide-in-menu-background-pattern {
  background-position: 0% -60%;
}
#slide-in-menu[data-active-index="3"] > #slide-in-menu-background-pattern {
  background-position: 0% -80%;
}
#slide-in-menu[data-active-index="4"] > #slide-in-menu-background-pattern {
  background-position: 0% -100%;
}
#slide-in-menu[data-active-index="0"] > #slide-in-menu-background-image {
  background-position: center 80%;
}
#slide-in-menu[data-active-index="1"] > #slide-in-menu-background-image {
  background-position: center 85%;
}
#slide-in-menu[data-active-index="2"] > #slide-in-menu-background-image {
  background-position: center 90%;
}
#slide-in-menu[data-active-index="3"] > #slide-in-menu-background-image {
  background-position: center 95%;
}
#slide-in-menu[data-active-index="4"] > #slide-in-menu-background-image {
  background-position: center 100%;
}
#topnav-menu-icon:hover {
    cursor: pointer;
}


/* clock related style */
#topnav-logo-container a{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
#zeitly-logo-container{
    position: relative;
    width: 55px;
    height: 55px;
}
#zeitly-logo-container p{
    position: absolute;
    top: 65%;
    left: 50%;
    transform: translate(-50%, -50%) ;
    z-index: 2000;
    color: white;
    font-size: 0.5rem;
    font-weight: bold;
    opacity: 0.9;
    word-break: keep-all;
    margin: 0!important;
}
.icon-large {
	 width: 220px;
	 height: 220px;
	 border-radius: 38px;
}
 .icon-clock {
	 overflow: hidden;
	 background: var(--primary-accent);
	 position: absolute;
	 top: 50%;
	 left: 50%;
	 transform: translate(-50%, -50%) scale(0.25);
}
 .clock {
	 width: 192px;
	 height: 192px;
	 border-radius: 50%;
	 background: var(--secondary-accent);
	 position: absolute;
	 top: 50%;
	 left: 50%;
	 transform: translate(-50%, -50%);
}
 .clock ol {
	 list-style-type: none;
	 width: 100%;
	 height: 100%;
	 position: relative;
	 margin: 0;
	 padding: 0;
}
 .clock ol li {
	 counter-increment: labelCounter;
	 position: absolute;
	 font-size: 1.25em;
     color: white;
}
 .clock ol li:before {
     font-family: 'Helvetica', serif;
	 content: counter(labelCounter) "";
}
 .clock ol li:nth-child(1) {
	 right: 55px;
	 top: 20px;
}
 .clock ol li:nth-child(2) {
	 right: 25px;
	 top: 50px;
}
 .clock ol li:nth-child(3) {
	 right: 12px;
	 top: 85px;
}
 .clock ol li:nth-child(4) {
	 right: 25px;
	 top: 125px;
}
 .clock ol li:nth-child(5) {
	 right: 55px;
	 top: 150px;
}
 .clock ol li:nth-child(6) {
	 right: 90px;
	 top: 160px;
}
 .clock ol li:nth-child(7) {
	 right: 125px;
	 top: 150px;
}
 .clock ol li:nth-child(8) {
	 right: 155px;
	 top: 125px;
}
 .clock ol li:nth-child(9) {
	 right: 165px;
	 top: 85px;
}
 .clock ol li:nth-child(10) {
	 right: 150px;
	 top: 50px;
}
 .clock ol li:nth-child(11) {
	 right: 120px;
	 top: 20px;
}
 .clock ol li:nth-child(12) {
	 right: 85px;
	 top: 10px;
}
 @keyframes spin {
	 100% {
		 transform: rotate(360deg);
	}
}
 #hour {
	 width: 14px;
	 height: 14px;
	 border-radius: 50%;
	 background: white;
	 position: absolute;
	 top: 50%;
	 left: 50%;
	 margin-top: -7px;
	 margin-left: -7px;
}
 #hour:before, #hour:after {
	 content: "";
	 display: block;
	 position: absolute;
    z-index: 3000;
}
 #hour:before {
	 width: 8px;
	 height: 65px;
	 border-radius: 4px;
	 background: white;
	 position: absolute;
	 bottom: 2px;
	 left: 50%;
	 transform: translate(-50%, 0);
}
 #min {
	 width: 0;
	 height: 0;
	 border-radius: 50%;
	 background: white;
	 position: absolute;
	 top: 50%;
	 left: 50%;
}
 #min:before, #min:after {
	 content: "";
	 display: block;
	 position: absolute;
    z-index: 3000;
}
 #min:before {
	 width: 6px;
	 height: 90px;
	 border-radius: 4px;
	 background: white;
	 position: absolute;
	 bottom: 2px;
	 left: 50%;
	 transform: translate(-50%, 0);
}
 #sec {
	 width: 4px;
	 height: 4px;
	 border-radius: 50%;
	 background: #dd3e1c;
	 border: 2px solid #e13e1b;
	 position: absolute;
	 top: 50%;
	 left: 50%;
	 margin-top: -4px;
	 margin-left: -4px;
}
 #sec:before, #sec:after {
	 content: "";
	 display: block;
	 position: absolute;
}
 #sec:before {
     width: 2px;
     height: 105px;
     border-radius: 4px;
     background: #e13e1b;
     position: absolute;
     bottom: -12px;
     left: 50%;
     transform: translate(-50%, 0);
 }