#banner {
    top: 0;
    height: var(--banner-height);
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    padding: 0 40px;
    background: #4f5974;
    color: #fff;
    z-index: 32;
    font-size: 14px;
    letter-spacing: 0.15em;
    font-weight: 500;
    width: 100%
}


header {
    position: fixed;
    height: var(--header-height);
    top: var(--banner-height);
    left: 0;
    width: 100%;
    z-index: 20;
    color: var(--dark);
    transition: background 0.5s;
}
header.active{
    z-index:22
}
header.active,header.fixed{
    color: var(--dark);
    background-color:var(--light);
}
#logo path{
    fill:currentColor;

}
header .top-c{
    height:100%;
    letter-spacing:0.25em;
    text-transform:uppercase;
    font-weight:300;
    border-bottom:1px solid currentColor;
    z-index:6;
    position:relative;
    font-size:14px;
    transition:color 0.5s

}
#logo{
    width:160px;
    display:block;
    opacity:0;
    transition:opacity 0.5s
}
#logo svg {
    width:100%;
    height:auto;
    display:block
}
#page-penthouses #logo{
    opacity :1 
}
header.fixed #logo,header.active #logo
{
    opacity:1
}
#nav {
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  opacity: 0;
  transition: opacity 0.7s;
  width: 100%;
    height: 100vh;
  height: 100svh;
    justify-content: center;
  align-items: center;
  z-index: 3;
  flex-wrap: wrap;
  flex-direction: column;
      background-size: cover;
          padding-bottom: 80px;
}
#nav #ul {
  position: relative;
  z-index: 2;
}


#nav li {
  width: 100%;
  display: block;
  list-style: none;
  position: relative;
  text-align: center;
}


#nav li a {
  font-size: 37px;
  line-height: 1;
  padding:15px 0;
  display:block;

   font-family:"SangBleuKingdom-Light";
  position: relative;
  z-index: 1;

}

#nav-toggle,.enq  {
    line-height:1;
  color: inherit;
  z-index: 5;
  display:flex;
  justify-content:center;
  align-items:center;

      border-right:1px solid currentColor;
      align-self:stretch;
   width:var(--gap);
      position:relative
}
.enq{
     border-right:none;
      border-left:1px solid currentColor;
}
#nav-toggle::after {
    display:block;
    position:absolute;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);
    text-align:center;
  content: "MENU  ";
}
#nav-toggle.active::after {

  content: "CLOSE";
}

.abs-nav{
    position:absolute;
    text-align:center;
    bottom:40px
}
#side {
    position: fixed;
    right: 0;
    top: 0;
    width: 100vh;
    display: flex;
    justify-content: center;
    z-index: 5;
    transform: rotate(-90deg);
    transform-origin: right bottom;
    gap: 15px;
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none
}
#side.fixed{
    opacity:1
}
    #side p {
        background: #4f5974;
        padding: 7px 20px;
        color: #fff;
        font-size: 14px;
        text-transform: uppercase;
        display: flex;
        justify-content: center;
        align-items:center;
        gap: 8px;
        border-top-left-radius: 15px;
        font-weight: 600;
        letter-spacing: 0.2em;
        border-top-right-radius: 15px;
  
    }
#side  img{
    height:22px;
    display:block
    
}
    #side img.urbislogo {
        height: 30px
    }