/* Header */
header{
  position: absolute;
  top:0;
  left: 0;
  width: 100%;
  z-index: 99;
  padding: 15px 0;
}
.sticky-header{
  position: fixed;
  background-color: #fff;
  padding: 0;
}
.header-logo svg{
  --logo:#fff;
}
.sticky-header .header-logo svg{
  --logo:var(--dark-blue);
  transform:scale(0.85);
}
header .container:before,
header .container:after{
  display:none;
}
header .desktop-menu{
  align-items:center;
}
header .desktop-menu .menu-item{
  flex: 1 1 45%;
}
header .desktop-menu .menu-item:last-of-type{
  text-align: right;
}
header .desktop-menu .logo-item{
  flex: 1 1 10%;
}
.main-menu{
  list-style:none;
  margin:0;
}
.main-menu li{
  display:inline-block;
  padding: 5px 10px;
}
.main-menu a{
  font-weight:600;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  color:#fff;
}
.main-menu a:hover{
  color:var(--camel);
}
.sticky-header .main-menu a{
  color:var(--dark-blue);
}
.mobile-menu{
  display: none;
}
@media(max-width:1100px){
  .desktop-menu{
    display: none;
  }
  .mobile-menu{
    display: flex;
    justify-content:space-between;
    align-items:center;
  }
  .header-logo{
    position:relative;
    z-index: 2;
    vertical-align:middle;
    line-height:0;
    transition:.4s;
  }
  .sticky-header .header-logo svg{
    transition:.4s;
    transform: scale(0.65);
  }
  .hamburger {
    position: relative;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    display:inline-block;
  }
  .hamburger .line {
    width: 35px;
    height: 3px;
    background-color: #ecf0f1;
    display: block;
    margin: 5px auto; /* Adjusted margin to maintain spacing proportion */
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  .hamburger {
    position: relative;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    z-index: 2;
  }
  .hamburger.is-active {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .hamburger:before {
    content: "";
    position: absolute;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 44px; /* Adjusted to maintain proportion */
    height: 44px; /* Adjusted to maintain proportion */
    border: 2px solid transparent; /* Adjusted to maintain proportion */
    top: calc(50% - 22px); /* Adjusted to match new height */
    left: calc(50% - 22px); /* Adjusted to match new width */
    border-radius: 100%;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  .hamburger.is-active:before {
    border: 2px solid var(--dark-blue); /* Adjusted to match new border width */
  }
  .hamburger.is-active .line {
    width: 25px; /* Adjusted to maintain proportion */
  }
  .hamburger.is-active .line:nth-child(2) {
    opacity: 0;
  }
  .hamburger.is-active .line:nth-child(1) {
    -webkit-transform: translateY(9px); /* Adjusted to maintain proportion */
    -ms-transform: translateY(9px); /* Adjusted to maintain proportion */
    -o-transform: translateY(9px); /* Adjusted to maintain proportion */
    transform: translateY(9px); /* Adjusted to maintain proportion */
  }
  .hamburger.is-active .line:nth-child(3) {
    -webkit-transform: translateY(-7px) rotate(90deg); /* Adjusted to maintain proportion */
    -ms-transform: translateY(-7px) rotate(90deg); /* Adjusted to maintain proportion */
    -o-transform: translateY(-7px) rotate(90deg); /* Adjusted to maintain proportion */
    transform: translateY(-7px) rotate(90deg); /* Adjusted to maintain proportion */
  }
  .sticky-header .hamburger .line,
  .hamburger.is-active .line{
    background-color:var(--dark-blue);
  }
  .mobile-menu-container{
    display: block;
    position: fixed;
    top:0;
    right: -100%;
    background-color:#fff;
    width: 100%;
    height: 100vh;
    overflow-y: scroll;
    padding: 135px 15px 40px;
    transition:.4s;
  }
  .show-mobile-menu .mobile-menu-container{
    right: 0;
  }
  .show-mobile-menu .header-logo svg{
    transition:.4s;
    --logo: var(--dark-blue);
  }
  .show-mobile-menu .mobile-menu{
    position:fixed;
    top:0;
    left: 0;
    width: 100%;
    padding: 0 15px;
    background-color:#fff;
  }
  .main-menu li{
    display: block;
    text-align: center;
  }
  .main-menu a{
    font-size: 22px;
    line-height: 30px;
    color:var(--dark-blue);
  }
  .mobile-menu-container .phone-no{
    display: block;
    margin-top:60px;
    text-align: center;
    font-family: 'Canela Text LC Web';
  }
}
/* Footer */
footer {
  background-color: var(--camel);
  color:#fff;
}
footer a:hover{
  color:var(--dark-blue);
}
.footer-logo{
  line-height: 0;
}
footer .first-row{
  align-items: stretch;
  padding:20px 0;
}
footer .first-row .item25{
  display: inline-flex;
  flex-direction: column;
  justify-content: stretch;
}
footer .first-row .item25 .footer-col-menu{
  flex: 1;
  padding: 20px 0;
}
.footer-col-menu h4{
  margin-bottom:0;
}
.footer-col-menu a{
  display: block;
  float: left;
  clear: both;
}
footer .first-row .item50{
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 40px;
}
footer .first-row .item50 a.phone-no{
  font-family: 'Canela Text LC Web';
  margin: 40px 0 60px;
}
footer .first-row .wysiwyg h1, footer .first-row .wysiwyg h2, footer .first-row .wysiwyg h3, footer .first-row .wysiwyg h4, footer .first-row .wysiwyg h5, footer .first-row .wysiwyg h6{
  font-family: "Open Sans";
  font-size: 24px;
  font-weight: 600;
  line-height: 133.333%;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  margin-bottom: 0;
}
footer .second-row{
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  justify-content: space-between;
}
@media(max-width:1100px){
  footer .first-row .item50 a.phone-no{
    font-size: 40px;
  }
}
@media(max-width:767px){
  footer .first-row,
  footer .second-row{
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  footer .second-row{
    padding-bottom: 0;
  }
  footer .first-row .item25:first-of-type{
    flex-direction: row;
    margin-bottom: 20px;
  }
  footer .first-row .item25 .footer-col-menu{
    padding: 10px;
  }
  footer .first-row .item25:last-of-type .footer-col-menu{
    text-align: center;
  }
  .footer-col-menu a{
    float: unset;
  }
  footer .second-row p{
    font-size: 12px;
    margin-bottom: 10px;
  }
}
/* Facilities and Lifestyle */
.facilities-lifestyle-page .fl-row{
  margin-bottom:80px;
  text-align: left;
}
.facilities-lifestyle-page .fl-row .vector{
  width: 100%;
}
.facilities-lifestyle-page .fl-row .screen:nth-child(odd) .flex-row{
  flex-direction: row-reverse;
}
.facilities-lifestyle-page .fl-row .buttons{
  margin-top:30px;
}
@media(max-width:850px){
  .facilities-lifestyle-page .fl-row .screen .flex-row,
  .facilities-lifestyle-page .fl-row .screen:nth-child(odd) .flex-row{
    flex-direction: column;
  }
}
/* Isho Card Page */
.isho-card-page .benefits-cards-inner .inner-container{
  height: auto;
  aspect-ratio: 1.2/1;
}
.isho-card-page .benefits-cards-inner .inner-container .inner{
  display: none;
}
.isho-card-page .benefits-cards-inner .inner-container .description{
  opacity: 1;
  background:rgba(0,0,0, 0.3);
}
.isho-card-page .benefits-cards-inner h3.h4{
  font-size: 64px;
	line-height: 112.5%;
	letter-spacing: -2px;
}
.isho-card-page .benefits-cards-inner .inner-container .description p{
  font-size:  20px;
  line-height:150%;
  letter-spacing: -0.5px;
}
@media(max-width:1367px){
  .isho-card-page .benefits-cards-inner h3.h4{
    font-size: 55px;
  }
}
@media(max-width:1281px){
	.isho-card-page .benefits-cards-inner h3.h4{
		font-size: 48px;
	}
	.isho-card-page .benefits-cards-inner .inner-container .description p{
		font-size:16px;
	}
}
@media(max-width:767px){
  .isho-card-page .benefits-cards-inner h3.h4{
		font-size: 36px;
	}
}
/* Parking Page */
.hourly-parking figure.vector{
  margin-bottom: 50px;
}
.hourly-parking-container{
  align-items: center;
  justify-content: space-between;
  margin-left: -15px;
  margin-right: -15px;
  border-bottom: 1px solid var(--section-mode-border-color-1, rgba(19, 19, 53, 0.20));
  margin-bottom: 30px;
  padding: 5px 0 10px;
}
.hourly-parking-container .flex-item{
  padding: 0 15px;
}
.hourly-parking-container .price-item p{
  text-transform: uppercase;
  display: flex;
  align-items: center;
}
@media(max-width:850px){
  .hourly-parking-container p{
    margin-bottom: 5px;
  }
  .hourly-parking-container .price-item p sub{
    font-size: 14px;
  }
  .hourly-parking-container .price-item p{
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
}
.monthly-parking-table{
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  flex-wrap:wrap;
}
.monthly-parking-item{
  padding: 20px;
  flex:1 1 33%;
  display:flex;
  flex-direction:column;
  position:relative;
}
.monthly-parking-item .header-item div{
  padding: 24px 16px;
}
.monthly-parking-item .header-item h3{
  margin-bottom:0;
}
.monthly-parking-item .header-item .additional-info{
  background-color:var(--dark-blue);
  color:#fff;
  text-transform:uppercase;
  padding: 8px;
  font-size:14px;
  line-height:20px;
}
.monthly-parking-item .inner-row{
  justify-content: space-between;
  padding: 16px 8px;
  border-top: 1px solid var(--section-mode-border-color-1, rgba(19, 19, 53, 0.20));
  flex:1;
}
.monthly-parking-item .inner-row .flex-item{
  padding: 0;
}
.monthly-parking-item .inner-row .flex-item.price-item{
  padding-left:10px;
  text-align: right;
}
.monthly-parking-item .inner-row .h4{
  font-family: 'Canela Text LC Web';
  font-size: 30px;
}
.monthly-parking-item .inner-row .price-item sub{
  font-family: 'Open Sans';
  vertical-align: middle;
  bottom: unset;
}
.monthly-parking-item .inner-row .zone-item span,
.monthly-parking-item .inner-row .zone-item div{
  display: inline-block;
  vertical-align: middle;
}
.monthly-parking-item .inner-row .zone-item span{
  margin-right: 10px;
  position: relative;
  cursor: pointer;
}
.monthly-parking-item:nth-child(even):before{
  display: block;
  content:'';
  position:absolute;
  top:20px;
  left: 20px;
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  border-radius: 4px;
  opacity: 0.2;
  background: linear-gradient(180deg, #C39968 0%, rgba(195, 153, 104, 0.00) 100%);
  z-index: -1;
}
.monthly-parking-item:nth-child(even) .inner-row{
  border-top: 1px solid rgba(195, 153, 104, 0.20);
  color:var(--camel);
}
.monthly-parking-item:nth-child(even) .header-item{
  color:var(--camel)
}
.monthly-parking-item:nth-child(even) .additional-info{
  background-color: var(--camel);
}
.monthly-parking-item:nth-child(even) .inner-row .zone-item span svg{
  --stroke:var(--camel);
}
@media(max-width:1100px){
  .monthly-parking-table{
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .monthly-parking-item{
    flex: 1 1 100%;
    width: 100%;
    max-width: 800px;
    padding: 20px 0;
  }
  .monthly-parking-item:nth-child(even):before{
    top:0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}
@media(max-width:767px){
  .monthly-parking-item .inner-row .h4{
    font-size: 20px;
  }
  .monthly-parking-item .inner-row .text-main{
    font-size: 14px;
  }
}
/* Apartments Listing */
.apartments-listing .cards-screen.screen{
  padding-top:0;
}
