.page-wrapper {
    max-width: 796px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}



nav.header {
    width: 100%;
    background-color: var(--surface-nav);
    backdrop-filter: blur(0.6rem);
    border-bottom: 1px solid transparent; /* Set a transparent border */
    border-image: linear-gradient(to right, hsla(33, 97%, 60%, 1), hsla(330, 99%, 62%, 1), hsla(267, 96%, 63%, 1)) 1;
    border-image-slice: 1; /* Slices the image into a single piece to cover the border area */
    position: sticky;
    top: 0;
    display: flex;
    flex-direction: row;
    align-items: center;  
    justify-content: space-between;
    margin: 0;
    padding: 1rem;
    z-index: 999;
}
.btns {
    /* border: 1px solid red; */
    display: flex;
    justify-content: flex-start;
    align-items: center;
 
}
.btns button {
    font-size: 1.2rem;
    font-weight: 700;
    background-color: var(--surface-cta);
    padding: 0.5rem 1.0rem;
    display: flex;
    width: 9rem;
    justify-content: center;
    border-radius: 0.4rem;
    color: var(--text-nav-cta);
}
.btns button {
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.btns button.is-changing {
  opacity: 0;
  transform: scale(0.98);
}

.left-icon, .right-icon {
    display: flex;
    width: 24px;
    height: 24px;
    padding: 4px;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    stroke: var(--border-nav-icon);
    background-color: none; /* This is hardcoded in Javascript ropa.js */
}
.hide-icon {
    display: none;
}
.show-icon {
    display: block;
}
 .logo {
    display: flex;
    flex-direction: row;
    gap: 0.6rem;
    align-items: center;
    flex: 0 1 auto;
    margin-left: 1.6rem;
    /* padding: 0.8rem; */
    /* border: 1px solid red; */
}
.logo img {
    border-radius: 999px;
    width: 20px;
    height: 20px;
    border: 0.2rem solid var(--border-nav-logo-img);
    display: block;
}
.logo a {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
}
.logo p {
    color: var(--text-nav-ul-li-a);
    font-weight: 400;
    font-size: 1.3rem;
    line-height: 1.1;
}
aside {
    display: none;
    width: 100%;
}    
.dropdown-menu-wrapper {
    position: fixed;
    width: 100%;
    top: 45px;
    display: none;
    z-index: 999;
}
ul.dropdown-menu {
    display: flex;
    background-color: var(--surface-ul);
    flex-direction: column;
    gap: 0;
    justify-content: center;
    align-items: flex-start;
    list-style-type: none;
    /* border: 1px solid blue; */
    width: 100%;
}
ul.dropdown-menu li {
    text-decoration: none;  
    font-size: 1.4rem;
    padding: 1.6rem;
    border-bottom: 1px solid var(--border-ul-li);
    width: 100%;
    z-index: 1000;
}
ul.dropdown-menu li a {
    text-decoration: none;
    color: var(--text-nav-ul-li-a);
}