

@font-face {
  font-family: 'SFProDisplay-Semibold';
  src: url(../fonts/SFProDisplay-Semibold.woff2) format("woff2"),
  url(../fonts/SFProDisplay-Semibold.woff) format("woff");
  font-weight: normal;
  font-style: normal
}
@font-face {
  font-family: 'SFProDisplay-Regular';
  src: url(../fonts/SFProDisplay-Regular.woff2) format("woff2"),
  url(../fonts/SFProDisplay-Regular.woff) format("woff");
  font-weight: normal;
  font-style: normal
}
@font-face {
 font-family: 'DalaMoa';
 src: url(../fonts/DalaMoa.woff2) format("woff2"),
 url(../fonts/DalaMoa.woff) format("woff");
 font-weight: normal;
 font-style: normal
}
/*
@font-face {
  font-family: 'grotesk_pro_light';
  src: url(../fonts/brass_fonts_konkret_grotesk_pro_light-webfont.woff2) format("woff2"),
  url(../fonts/brass_fonts_konkret_grotesk_pro_light-webfont.woff) format("woff");
  font-weight: normal;
  font-style: normal
}
@font-face {
  font-family: 'grotesk_pro_regular';
  src: url(../fonts/brass_fonts_konkret_grotesk_pro_regular-webfont.woff2) format("woff2"),
  url(../fonts/brass_fonts_konkret_grotesk_pro_regular-webfont.woff) format("woff");
  font-weight: normal;
  font-style: normal
} */
.wow {
   visibility: hidden;
}
hr {
  max-width: 1366px
}

header {

  /* position: fixed;
  top: 0px;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 999; */
  background-image: url('../img/background.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  height: 100vh;
  width: 100vw;
  min-height: 600px
  /* -webkit-transition: background .5s ease;
  transition: background .5s ease; */
  /* height: 120px; */

}

body.lock {
  overflow: hidden;
}
header.active {

  -webkit-transition-delay: .5s;
  transition-delay: .5s;

}

header.active h1 .st0, header.active h1 .st2, header.active h1 .st3 {
  fill: #fff;
  -webkit-transition-delay: .5s;
  transition-delay: .5s
}

header.active span.menu {
  /* -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg) */
  color: #ffffff
}

header.active span.menu #Group-5 {
  fill: #fff;
  -webkit-transition-delay: .5s;
  transition-delay: .5s
}

nav {
  position: fixed;
  /* overflow:scroll; */
  bottom: 0;
  top:0;
  left: 0;
  width: 100%;

  z-index: 99;
  /* height: 100vh; */
  /* min-height: 800px; */
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);

}

a {
  cursor: pointer;
}
nav.active {
  -webkit-transform: translateX(50%);
  -ms-transform: translateX(50%);
  transform: translateX(50%);
  background-image: url('../img/grey-bg.jpg');
  -webkit-transition: -webkit-transform .75s ease;
  transition: -webkit-transform .75s ease;
  transition: transform .75s ease;
  transition: transform .75s ease, -webkit-transform .75s ease
}
nav ul {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 63%;
  list-style: none;
  margin-bottom: 0;
  text-align: right;

}
nav ul li a {
  color: #fff;
  font-size: 1.5rem;
  text-transform: uppercase;
  font-family: 'SFProDisplay-Semibold';
  line-height: 2;
  margin-bottom: 1em
}
nav ul li a:hover {
  color: #61B1FF;
}
#navbar {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  max-width: 200px;
  display: block;
  transition: top 0.3s;
  right: 0;
  z-index: 1000
}
#navbar.scroll {
  position: fixed;
  top: 40px;
  transform: unset
}
/* .logo-right {
  position: absolute;
  right: 60px;
  bottom: 60px;
  z-index: 999
}
.logo-right img {
  max-width: 80px
} */
header .scroll span.menu {
background:#35353e;
}
header span.menu {
  cursor: pointer;
width: 60px;
height: 40px;
margin: auto;
position: relative;
right: 40px;

float: right;

padding: 10px;
}

header span.menu i {
    background-color: #fff;

    content: '';
    display: block;
    width: 100%;
    height: 3px;
}

header span.menu i:nth-child(1) {
    -webkit-animation: outT 0.8s backwards;
    animation: outT 0.8s backwards;
    -webkit-animation-direction: reverse;
    animation-direction: reverse;
}

header span.menu i:nth-child(2) {
    margin: 5px 0;
    -webkit-animation: outM 0.8s backwards;
    animation: outM 0.8s backwards;
    -webkit-animation-direction: reverse;
    animation-direction: reverse;
}

header span.menu i:nth-child(3) {
    -webkit-animation: outBtm 0.8s backwards;
    animation: outBtm 0.8s backwards;
    -webkit-animation-direction: reverse;
    animation-direction: reverse;
}

header.active span.menu i:nth-child(1) {
    -webkit-animation: inT 0.8s forwards;
    animation: inT 0.8s forwards;
}

header.active span.menu i:nth-child(2) {
    -webkit-animation: inM 0.8s forwards;
    animation: inM 0.8s forwards;
}

header.active span.menu i:nth-child(3) {
    -webkit-animation: inBtm 0.8s forwards;
    animation: inBtm 0.8s forwards;
}

@-webkit-keyframes inM {
    50% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(45deg);
    }
}

@keyframes inM {
    50% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(45deg);
    }
}

@-webkit-keyframes outM {
    50% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(45deg);
    }
}

@keyframes outM {
    50% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(45deg);
    }
}

@-webkit-keyframes inT {
    0% {
        -webkit-transform: translateY(0px) rotate(0deg);
    }
    50% {
        -webkit-transform: translateY(9px) rotate(0deg);
    }
    100% {
        -webkit-transform: translateY(9px) rotate(135deg);
    }
}

@keyframes inT {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(7px) rotate(0deg);
    }
    100% {
        transform: translateY(7px) rotate(135deg);
    }
}

@-webkit-keyframes outT {
    0% {
        -webkit-transform: translateY(0px) rotate(0deg);
    }
    50% {
        -webkit-transform: translateY(9px) rotate(0deg);
    }
    100% {
        -webkit-transform: translateY(9px) rotate(135deg);
    }
}

@keyframes outT {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(9px) rotate(0deg);
    }
    100% {
        transform: translateY(9px) rotate(135deg);
    }
}

@-webkit-keyframes inBtm {
  0% {
      transform: translateY(0px) rotate(0deg);
  }
  50% {
      transform: translateY(-10px) rotate(0deg);
  }
  100% {
      transform: translateY(-10px) rotate(135deg);
  }
}

@keyframes inBtm {
  0% {
      transform: translateY(0px) rotate(0deg);
  }
  50% {
      transform: translateY(-10px) rotate(0deg);
  }
  100% {
      transform: translateY(-10px) rotate(135deg);
  }
}

@-webkit-keyframes outBtm {
    0% {
        -webkit-transform: translateY(0px) rotate(0deg);
    }
    50% {
        -webkit-transform: translateY(-9px) rotate(0deg);
    }
    100% {
        -webkit-transform: translateY(-9px) rotate(135deg);
    }
}

@keyframes outBtm {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-9px) rotate(0deg);
    }
    100% {
        transform: translateY(-9px) rotate(135deg);
    }
}




.logo {
  position: absolute;
  max-width: 250px;
  top: 50%;
  transform: translateY(-50%);
  left: 0px;
  right: 0;
  margin: 0 auto;
  z-index: 999
}
.logo img {
  width: 250px;
}
#decription {
  margin-top: 3em;
  background: #fff
}
#decription .right-box {
  padding: 20px
}
#decription .right-box .text {
  padding: 0em 1em 0em 4em
}
#decription .right-box .text h2 {
  font-family: 'DalaMoa';
  font-size: 3rem;
  color: #61B1FF;
  line-height: 1.1;
  margin-bottom: .5em
}
#decription .right-box .text p {
  font-family: 'SFProDisplay-Regular';
  font-size: 1.1rem;
  color: #35353E;
  line-height: 1.2;
  margin-bottom: 2em
}
#decription .bottom-images .grid-padding-x > .cell  {
  padding-left: 0;
  padding-right: 20px
}
 .width-75 img {
  width: 75%
}
#accommodation {
    background:#35353e;
    margin-top: -4em
}
#accommodation .accommodation-group {
  padding-top: 9em
}
#accommodation .floor-plan {
  margin-top: 2em
}
#accommodation .buttons table thead, tbody, tfoot, tbody tr:nth-child(even) {
    background: none;
    border: none;
    color: #fff;
}
#accommodation table tr {
    color: #fff;
    border-bottom: 1px solid #fff;
    font-family: 'SFProDisplay-Regular';
}
#accommodation table tr.total {
  border-bottom: none;
  color: #fff;
  text-transform: uppercase;
  font-family: 'SFProDisplay-Semibold';
}
#accommodation table tr.strong {
  color: #fff;
  text-transform: uppercase;
  font-family: 'SFProDisplay-Semibold';
}
#accommodation table tbody th, tbody td {
    padding: .5rem 0;
}

#accommodation table tr .right {
    text-align: right;
}

#accommodation .icons-wrapper {
    display: flex;
    flex-wrap: wrap;
    margin: 50px 0;
  }
#accommodation .icons-wrapper .icons {
      text-align: center;
      display: flex;
      justify-content: center;
      flex-direction: column;
      width: 50%;
      margin-bottom: 2em
  }
#accommodation .icons-wrapper .icons img {
      margin: 0 auto;
      margin-bottom: 1em;
      height: 60px;
    }
#accommodation .icons-wrapper .icons span {
        color:  #fff;
        line-height: 1.4;
        font-family: 'SFProDisplay-Regular';
        font-size: 16px;
    }
#virtual-tour {
  margin-top: -1.5em
}
#virtual-tour .buttons-group {
  /* max-width: 700px; */
  margin: 0 auto;
  text-align: center;
}
#virtual-tour .buttons-group .btn {
  display: inline-block;
  border-radius: 20px;
  color: #61B1FF;
  font-size: 16px;
  font-family: 'SFProDisplay-Semibold';
  background: #FCFCFC;
  -webkit-box-shadow: 0 10px 6px -6px #cecece;
     -moz-box-shadow: 0 10px 6px -6px #cecece;
          box-shadow: 0 10px 6px -6px #cecece;
  border: none;
  padding: 10px 60px;
  text-align: center;
  margin-right: 20px;

}
#virtual-tour .buttons-group .btn.active {
  background: #61B1FF;
  color: #fff;
}
#virtual-tour .buttons-group .btn:hover {
  background: #61B1FF;
  color: #fff;
}

#virtual-tour .virtual-video {
  margin-top: 3em;
  margin-bottom: 3em
}
#virtual-tour .third-floor {
  display: none
}
#virtual-tour .first-floor {
  display: none
}
#location {
  margin-bottom: 3em
}
  #location .text h2, #contact .text h2 {
    font-family: 'DalaMoa';
    font-size: 3rem;
    color: #61B1FF;
    line-height: 1.1;
    margin-bottom: .5em
  }
    #location .text p {
    font-family: 'SFProDisplay-Regular';
    font-size: 1.1rem;
    color: #35353E;
    line-height: 1.2;
    margin-bottom: 2em
  }
#location .right-box img {
  padding-left: 20px
}
/* #location .right-box img.height-75 {
  margin-top: 6.5em
} */
#location img.bottom {
margin-top: 3em
}
#map {
  background:#35353e;
}
#map .grid-container {
  max-width: 93rem
}
#contact {
  background:#35353e;
  margin-top: 10px
}
#contact .contact-group {
  padding-top: 2em;
  padding-bottom: 2em
}
#contact .text p {
  font-family: 'SFProDisplay-Regular';
  font-size: 1.1rem;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 2em
}

#contact .download-btn {
  background:#61B1FF;
  color: #fff;
  border-radius: 20px;
  font-size: 16px;
  font-family: 'SFProDisplay-Semibold';
  padding: 10px 60px;
  text-align: center;
  margin-top: 2em
}
#contact .agents-details img{
  width: 150px;
  margin-bottom: 1.5em
}
#contact .agents-details p, #contact .agents-details p a {
  color: #fff;
  font-family: 'SFProDisplay-Regular';
  font-size: 1rem;
  line-height: 1.4;
}
#contact .agents-details p strong {
  font-family: 'SFProDisplay-Semibold';
}
@media screen and (max-width: 1023px) {
  nav.active {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
    background-image: url('../img/grey-bg.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 999
  }
  nav ul {
    left: 2em;
    right: unset;
    text-align: left;
  }
  .logo img {
    width: 200px
  }
  section {
    padding-left: 1.5em;
    padding-right: 1.5em
  }
  #decription .right-box {
    padding: 1.5em 0
  }
  #decription .right-box .text {
    padding: 1em
  }
  #accommodation .floor-plan {
    margin-bottom: 2em
  }
  #location .right-box {
    margin-top: 1em
  }

}
@media screen and (max-width: 850px) {
#virtual-tour .buttons-group .btn {
  padding: 10px 30px
}
}
@media screen and (max-width: 650px) {
#virtual-tour .buttons-group .btn {
  display: block;
  margin-bottom: 1em
}
}
@media screen and (max-width: 639px) {
nav ul li a {
  font-size: 1.2rem
}
.bottom-images img {
  margin-bottom: 1em
}
.right-box .padding img {
  margin-top: 20px
}
#virtual-tour .buttons-group .btn {
  padding: 7px 20px
}
#decription .right-box .text h2, #location .text h2, #contact .text h2 {
  font-size: 2rem
}
#navbar {
  top: 30px;
  transform: unset
}
header span.menu {
  right: 20px
}
.logo img {
  width: 180px
}
#accommodation .accommodation-group {
  padding-top: 5em
}
#location .right-box img {
  padding-left: unset
}
}
@media screen and (max-width: 500px) {
#virtual-tour .buttons-group .btn {
  font-size: 13px
}
#virtual-tour {
  margin-top: -1em
}
}
