html{
  overflow-x: hidden;
}

body{
    font-family: 'Anth-Regular';
    overflow-x: hidden;
    background-color: #dabfaf;
}

a{
    -webkit-transition: all 0.3s ease;                  
    -moz-transition: all 0.3s ease;                 
    -o-transition: all 0.3s ease;   
    -ms-transition: all 0.3s ease;          
    transition: all 0.3s ease;
}

a:hover{
    text-decoration: none;
}

p{
    font-family: 'Anth-Regular';
}

.background{
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: fixed;
    z-index: -1;
    background: linear-gradient(90deg, #c29f7f, #7e1748, #F7A47F, #d4cbc4);
        background-size: 400% 400%;
        animation: gradient 15s ease infinite;
        height: 100vh;
}

.glowing {
  position: relative;
  min-width: 700px;
  height: 550px;
  margin: -150px;
  transform-origin: right;
  animation: colorChange 5s linear infinite;
}

.glowing:nth-child(even) {
  transform-origin: left;
}

@keyframes colorChange {
  0% {
    filter: hue-rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    filter: hue-rotate(360deg);
    transform: rotate(360deg);
  }
}

.glowing span {
  position: absolute;
  top: calc(80px * var(--i));
  left: calc(80px * var(--i));
  bottom: calc(80px * var(--i));
  right: calc(80px * var(--i));
}

.glowing span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -8px;
  width: 15px;
  height: 15px;
  background: #f00;
  border-radius: 50%;
}

.glowing span:nth-child(3n + 1)::before {
  background: rgba(134,255,0,1);
  box-shadow: 0 0 20px rgba(134,255,0,1),
    0 0 40px rgba(134,255,0,1),
    0 0 60px rgba(134,255,0,1),
    0 0 80px rgba(134,255,0,1),
    0 0 0 8px rgba(134,255,0,.1);
}

.glowing span:nth-child(3n + 2)::before {
  background: rgba(255,214,0,1);
  box-shadow: 0 0 20px rgba(255,214,0,1),
    0 0 40px rgba(255,214,0,1),
    0 0 60px rgba(255,214,0,1),
    0 0 80px rgba(255,214,0,1),
    0 0 0 8px rgba(255,214,0,.1);
}

.glowing span:nth-child(3n + 3)::before {
  background: rgba(232,231,211,1);
  box-shadow: 0 0 20px rgba(232,231,211,1),
    0 0 40px rgba(232,231,211,1),
    0 0 60px rgba(232,231,211,1),
    0 0 80px rgba(232,231,211,1),
    0 0 0 8px rgba(147, 145, 86, 0.1);
}

.glowing span:nth-child(3n + 1) {
  animation: animate 10s alternate infinite;
}

.glowing span:nth-child(3n + 2) {
  animation: animate-reverse 3s alternate infinite;
}

.glowing span:nth-child(3n + 3) {
  animation: animate 8s alternate infinite; 
}

@keyframes animate {
  0% {
    transform: rotate(180deg);
  }
  50% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-reverse {
  0% {
    transform: rotate(360deg);
  }
  
  50% {
    transform: rotate(180deg);
  }
  
  100% {
    transform: rotate(0deg);
  }
}

.vr360{
  position: fixed;
  left: 0px;
  top: calc(50% - 50px);
  z-index: 999;
  border-radius: 10px 0px 0px 10px;
  transition: all .5s ease-in-out !important;
  transform: rotate(90deg);
  -webkit-transition: all 0.3s ease;                  
  -moz-transition: all 0.3s ease;                 
  -o-transition: all 0.3s ease;   
  -ms-transition: all 0.3s ease;          
  transition: all 0.3s ease;
}

.vr360 a {
  background-color: #99745c;
  color: #e1d2c0;
  text-transform: uppercase;
  /*padding: 0px 20px;*/
  font-family: 'Magesta-Regular';
  font-size: 15px;
  text-align: center;
  width: 160px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  bottom: 0;
  position: fixed;
  border-radius: 0;
}

.vr360 a:hover{
  
  background-color: #99745c;
}

.vr360 img{
  width: 25px;
  margin-right: 10px;
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

section{
    height: 100vh;
    width: 100%;
}

.landing{
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Common button styles */
.button {
	float: left;
	min-width: 150px;
	max-width: 250px;
	display: block;
	margin: 1em;
	padding: 1em 2em;
	border: none;
	background: none;
	color: inherit;
	vertical-align: middle;
	position: relative;
	z-index: 1;
	-webkit-backface-visibility: hidden;
	-moz-osx-font-smoothing: grayscale;
  font-family: 'Anth-Regular';
}
.button:focus {
	outline: none;
}
.button > span {
	vertical-align: middle;
}

.button--round-s {
	border-radius: 5px;
}

/* Borders */
.button--border-thin {
	border: 1px solid;
}
.button--border-medium {
	border: 2px solid;
}
.button--border-thick {
	border: 3px solid;
}

/* Aylen */
.button.button--aylen {
	
  background: #58341f;
	color: #e1d2c0;
	overflow: hidden;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
}
.button--aylen.button--inverted {
	background: none;
	color: #e1d2c0;
}
.button--aylen::before,
.button--aylen::after {
	content: '';
	position: absolute;
	height: 100%;
	width: 100%;
	bottom: 100%;
	left: 0;
	z-index: -1;
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
	-webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
	transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
}
.button--aylen::before {
	background: #e1d2c0;
}
.button--aylen::after {
  background: #c29f7f;
}
.button--aylen:hover {
	color: #fff;
}
.button--aylen:hover::before,
.button--aylen:hover::after {
	-webkit-transform: translate3d(0, 100%, 0);
	transform: translate3d(0, 100%, 0);
}
.button--aylen:hover::after {
	-webkit-transition-delay: 0.175s;
	transition-delay: 0.175s;
}






.exsim-logo{
    position: absolute;
        top: 80px;
    left: 100px;
    z-index: 10;
    pointer-events: none;
}

.exsim-logo img{
    width: 250px;
}



.register-now{
    position: relative;
    z-index: 999;
    transition: all .5s ease-in-out !important;
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
}

.register-now-container {
    position: relative;
    display: block;
    margin-top: 30px;
}

.register-now-container a{
    background-color: #7e1748;
    color: #fff;
    padding: 0px 20px;
    font-family: 'Magesta-Regular';
    font-size: 16px;
    text-align: center;
    width: 160px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0;
}

.register-now-container a:hover{
    /*transform: scale(1.05);*/
    background-color: #2f1a21;
    cursor: pointer;
}

.register-now-container img{
    width: 15px;
    margin-right: 10px;
}


.landing-logo img{
    width: 450px;
    margin: 0 auto;
    display: block;
    pointer-events: none;
}

.register{
    height: 100vh;
    position: relative;
    z-index: 2;
}

.whitebackground{
    background-color: #fff;
    padding: 15px;
}

.register-form-logo{
    height: calc(100vh - 30px);
    width: 100%;
    background-image: url(../img/register-form-background.jpg);
    background-position: 50% 50%;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 15px;
}

.register-form-logo img{
    width: 100%;
    margin: 0 auto;
    display: block;
    max-width: 420px;
    pointer-events: none;
}

.register-form{
    background-color: #e2ccb5;
    height: calc(100vh - 80px);
    padding: 40px;
    position: relative;
    overflow-y: scroll;
    width: 700px;
    margin: 0 auto;
}


.register-form h2{
    font-family: 'Magesta-Regular';
    color: #2f1a21;
    font-size: 26px;
    line-height: 40px;
    margin-top: 0;
    margin-bottom: 0;
}

.register-form h2:before{
    content: '';
    background-color: #2f1a21;
    width: 40px;
    display: block;
    position: relative;
    top: 0;
    left: 0;
}

.register-form-close{
    position: absolute;
    top: 0;
    right: 0;
    background-color: #c29f7f;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.register-form-close:hover{
    background-color: #c29f7f;
}

.register-form-close img{
    width: 25px;
}

.register-form-bottom{
    text-align: center;
    width: 33.33%;
    border-right: 1px solid #2f1a21;
    line-height: 40px;
}

.register-form-divider{
    border-right: 1px solid #2f1a21;
}

.register-form-bottom a{
    color: #2f1a21;
    font-size: 15px;
    font-family: 'Anth-Regular';
    cursor: pointer;
}

.register-form-bottom a:hover{
    color: #2f1a21;
}

.white-container{
    background-color: #e2ccb5;
    padding: 100px 100px;
    margin-top: 200px;
    margin-bottom: 100px;
    position: relative;
}

.white-container h2, .white-container h4{
    font-family: 'Magesta-Regular';
    text-transform: capitalize;
}

.white-container h4{
    color: #2f1a21;
}

.white-container h2{
  color: #2f1a21;
  font-family: 'Magesta-Regular';
}

.white-container h2:before{
    content: '';
    background-color: #2f1a21;
    height: 5px;
    width: 40px;
    display: block;
    position: relative;
    top: 0;
    left: 0;
}

.white-container p{
    font-size: 15px;
    color: #2f1a21;
    font-family: 'Anth-Regular';
}

.inner-logo{
    position: absolute;
    top: 25px;
    margin: 0 auto;
    width: 100%;
    text-align: center;
}

.inner-logo img{
    width: 280px;
}

.backtotop{
    position: fixed;
    right: 0;
    bottom: 0;
}

#scale1 {
    position: relative;
    -webkit-animation: linear infinite;
    -webkit-animation-name: scale1;
    -webkit-animation-duration: 20s;
  }
  @-webkit-keyframes scale1 {
    0%{
        transform:scale(1);
    }
    50%{
        transform:scale(1.1);
    }
    100%{
        transform:scale(1);
    }
  }

#scale2 {
    position: relative;
    -webkit-animation: linear infinite;
    -webkit-animation-name: scale2;
    -webkit-animation-duration: 15s;
  }
  @-webkit-keyframes scale2 {
    0%{
        transform:scale(1);
    }
    50%{
        transform:scale(1.1);
    }
    100%{
        transform:scale(1);
    }
  }

#scale3 {
    position: relative;
    -webkit-animation: linear infinite;
    -webkit-animation-name: scale3;
    -webkit-animation-duration: 10s;
  }
  @-webkit-keyframes scale3 {
    0%{
        transform:scale(1);
    }
    50%{
        transform:scale(1.1);
    }
    100%{
        transform:scale(1);
    }
  }



.wrap{
    position:fixed;
    display:inline-block;
  }
  .overlay{
    position: absolute;
    left: 0;
    top: -50%;
    bottom: 0;
    width: 100%;
    height: 100vh;
    /* object-fit: cover; */
    mix-blend-mode: screen;
  }

  .formfooter{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;

  }

  .formfooter > div:last-child{
    border: none !important;
  }

  .fp-warning, .fp-watermark a{
    display: none !important;
}

@-webkit-keyframes scrollWheel {
  from {
    transform: translate(-50%, 0);
    transform: translate3d(-50%, 0, 0);
    opacity: 1;
  }
  to {
    transform: translate(-50%, 20px);
    transform: translate3d(-50%, 20px, 0);
    opacity: 0;
  }
}

@keyframes scrollWheel {
  from {
    transform: translate(-50%, 0);
    transform: translate3d(-50%, 0, 0);
    opacity: 1;
  }
  to {
    transform: translate(-50%, 20px);
    transform: translate3d(-50%, 20px, 0);
    opacity: 0;
  }
  
  
}

.mouse {
  position: relative;
    width: 24px;
    height: 40px;
  margin: 0 auto 20px;
  background: none;
  border: 1px solid #c29f7f;
  border-radius: calc(16px * 2);
  z-index: 1;
      position: absolute;
    bottom: 10px;
}
@media (min-width: 768px) {
.mouse {
    /*width: calc(28px * 4);
    height: calc(44px * 4);*/
    margin: 0;
    background: none;
    border: 1px solid #c29f7f;
    border-radius: calc(16px * 4);
  }
}
.mouse:after {
  display: block;
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
      width: 6px;
    height: 6px;
  background: none;
  border: 1px solid #c29f7f;
  border-radius: 100%;
  -webkit-animation-name: scrollWheel;
          animation-name: scrollWheel;
  -webkit-animation-duration: 1.4s;
          animation-duration: 1.4s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  will-change: transform;
}
@media (min-width: 768px) {
  .mouse:after {
            position: absolute;
        top: 5px;
        left: 50%;
        /* width: calc(5px * 4); */
        /* height: calc(5px * 4);*/
  }
}

    /* Example loader style */
    .loader {
        position: fixed;
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
        /*transform: translate(-50%, -50%);*/
        width: 100%;
        height: 100vh;
        /*background: url('../img/logo_loading.gif') no-repeat center center;
        background-size: contain;*/
        /*background-color: rgba(251, 250, 224, 1);*/
        background: linear-gradient(90deg, #c29f7f, #d4cbc4, #c29f7f, #d4cbc4);
        background-size: 800% 800%;
	      animation: gradient 4s ease infinite;
        opacity: 1;
        transition: opacity 1s ease-out; /* Transition for fade-out effect */
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 99999999999999;
    }
    .fade-out {
        opacity: 0;
    }

    .loader img{
      width: 520px;
  }

    #scroll-down {
      bottom: 40px;
      display: block;
      position: absolute;
      padding-top: 79px;
      text-align: center;
      pointer-events: none;
    }
    .arrow-down {
      display: block;
      margin: 0 auto;
      width: 10px;
      height: 38px;
    }
    .arrow-down:after {
      content: '';
      display: block;
      margin: 0;
      padding: 0;
      width: 8px;
      height: 8px;
      border-top: 1px solid #58341f;
      border-right: 1px solid #58341f;
      behavior: url(-ms-transform.htc);
      -moz-transform: rotate(135deg);
      -webkit-transform: rotate(135deg);
      -o-transform: rotate(135deg);
      -ms-transform: rotate(135deg);
      transform: rotate(135deg);
    }
    #scroll-title {
      display: block;
      text-transform: uppercase;
      color: #58341f;
      font-family: 'Anth-Regular';
      font-size: 14px;
      letter-spacing: 0.1em;
    }
    #scroll-down::before {
      -webkit-animation: elasticus 1.2s cubic-bezier(1, 0, 0, 1) infinite;
      /* Safari 4+ */
      -moz-animation: elasticus 1.2s cubic-bezier(1, 0, 0, 1) infinite;
      /* Fx 5+ */
      -o-animation: elasticus 1.2s cubic-bezier(1, 0, 0, 1) infinite;
      /* Opera 12+ */
      animation: elasticus 1.2s cubic-bezier(1, 0, 0, 1) infinite;
      /* IE 10+, Fx 29+ */
      position: absolute;
      top: 0px;
      left: 50%;
      margin-left: -1px;
      width: 1px;
      height: 90px;
      background: #58341f;
      content: ' ';
    }
    @-webkit-keyframes elasticus {
      0% {
        -webkit-transform-origin: 0% 0%;
        -ms-transform-origin: 0% 0%;
        -moz-transform-origin: 0% 0%;
        -o-transform-origin: 0% 0%;
        transform-origin: 0% 0%;
        -webkit-transform: scale(1, 0);
        -ms-transform: scale(1, 0);
        -moz-transform: scale(1, 0);
        -o-transform: scale(1, 0);
        transform: scale(1, 0);
      }
      50% {
        -webkit-transform-origin: 0% 0%;
        -ms-transform-origin: 0% 0%;
        -moz-transform-origin: 0% 0%;
        -o-transform-origin: 0% 0%;
        transform-origin: 0% 0%;
        -webkit-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
        -moz-transform: scale(1, 1);
        -o-transform: scale(1, 1);
        transform: scale(1, 1);
      }
      50.1% {
        -webkit-transform-origin: 0% 100%;
        -ms-transform-origin: 0% 100%;
        -moz-transform-origin: 0% 100%;
        -o-transform-origin: 0% 100%;
        transform-origin: 0% 100%;
        -webkit-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
        -moz-transform: scale(1, 1);
        -o-transform: scale(1, 1);
        transform: scale(1, 1);
      }
      100% {
        -webkit-transform-origin: 0% 100%;
        -ms-transform-origin: 0% 100%;
        -moz-transform-origin: 0% 100%;
        -o-transform-origin: 0% 100%;
        transform-origin: 0% 100%;
        -webkit-transform: scale(1, 0);
        -ms-transform: scale(1, 0);
        -moz-transform: scale(1, 0);
        -o-transform: scale(1, 0);
        transform: scale(1, 0);
      }
    }
    @-moz-keyframes elasticus {
      0% {
        -webkit-transform-origin: 0% 0%;
        -ms-transform-origin: 0% 0%;
        -moz-transform-origin: 0% 0%;
        -o-transform-origin: 0% 0%;
        transform-origin: 0% 0%;
        -webkit-transform: scale(1, 0);
        -ms-transform: scale(1, 0);
        -moz-transform: scale(1, 0);
        -o-transform: scale(1, 0);
        transform: scale(1, 0);
      }
      50% {
        -webkit-transform-origin: 0% 0%;
        -ms-transform-origin: 0% 0%;
        -moz-transform-origin: 0% 0%;
        -o-transform-origin: 0% 0%;
        transform-origin: 0% 0%;
        -webkit-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
        -moz-transform: scale(1, 1);
        -o-transform: scale(1, 1);
        transform: scale(1, 1);
      }
      50.1% {
        -webkit-transform-origin: 0% 100%;
        -ms-transform-origin: 0% 100%;
        -moz-transform-origin: 0% 100%;
        -o-transform-origin: 0% 100%;
        transform-origin: 0% 100%;
        -webkit-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
        -moz-transform: scale(1, 1);
        -o-transform: scale(1, 1);
        transform: scale(1, 1);
      }
      100% {
        -webkit-transform-origin: 0% 100%;
        -ms-transform-origin: 0% 100%;
        -moz-transform-origin: 0% 100%;
        -o-transform-origin: 0% 100%;
        transform-origin: 0% 100%;
        -webkit-transform: scale(1, 0);
        -ms-transform: scale(1, 0);
        -moz-transform: scale(1, 0);
        -o-transform: scale(1, 0);
        transform: scale(1, 0);
      }
    }
    @-o-keyframes elasticus {
      0% {
        -webkit-transform-origin: 0% 0%;
        -ms-transform-origin: 0% 0%;
        -moz-transform-origin: 0% 0%;
        -o-transform-origin: 0% 0%;
        transform-origin: 0% 0%;
        -webkit-transform: scale(1, 0);
        -ms-transform: scale(1, 0);
        -moz-transform: scale(1, 0);
        -o-transform: scale(1, 0);
        transform: scale(1, 0);
      }
      50% {
        -webkit-transform-origin: 0% 0%;
        -ms-transform-origin: 0% 0%;
        -moz-transform-origin: 0% 0%;
        -o-transform-origin: 0% 0%;
        transform-origin: 0% 0%;
        -webkit-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
        -moz-transform: scale(1, 1);
        -o-transform: scale(1, 1);
        transform: scale(1, 1);
      }
      50.1% {
        -webkit-transform-origin: 0% 100%;
        -ms-transform-origin: 0% 100%;
        -moz-transform-origin: 0% 100%;
        -o-transform-origin: 0% 100%;
        transform-origin: 0% 100%;
        -webkit-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
        -moz-transform: scale(1, 1);
        -o-transform: scale(1, 1);
        transform: scale(1, 1);
      }
      100% {
        -webkit-transform-origin: 0% 100%;
        -ms-transform-origin: 0% 100%;
        -moz-transform-origin: 0% 100%;
        -o-transform-origin: 0% 100%;
        transform-origin: 0% 100%;
        -webkit-transform: scale(1, 0);
        -ms-transform: scale(1, 0);
        -moz-transform: scale(1, 0);
        -o-transform: scale(1, 0);
        transform: scale(1, 0);
      }
    }
    @keyframes elasticus {
      0% {
        -webkit-transform-origin: 0% 0%;
        -ms-transform-origin: 0% 0%;
        -moz-transform-origin: 0% 0%;
        -o-transform-origin: 0% 0%;
        transform-origin: 0% 0%;
        -webkit-transform: scale(1, 0);
        -ms-transform: scale(1, 0);
        -moz-transform: scale(1, 0);
        -o-transform: scale(1, 0);
        transform: scale(1, 0);
      }
      50% {
        -webkit-transform-origin: 0% 0%;
        -ms-transform-origin: 0% 0%;
        -moz-transform-origin: 0% 0%;
        -o-transform-origin: 0% 0%;
        transform-origin: 0% 0%;
        -webkit-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
        -moz-transform: scale(1, 1);
        -o-transform: scale(1, 1);
        transform: scale(1, 1);
      }
      50.1% {
        -webkit-transform-origin: 0% 100%;
        -ms-transform-origin: 0% 100%;
        -moz-transform-origin: 0% 100%;
        -o-transform-origin: 0% 100%;
        transform-origin: 0% 100%;
        -webkit-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
        -moz-transform: scale(1, 1);
        -o-transform: scale(1, 1);
        transform: scale(1, 1);
      }
      100% {
        -webkit-transform-origin: 0% 100%;
        -ms-transform-origin: 0% 100%;
        -moz-transform-origin: 0% 100%;
        -o-transform-origin: 0% 100%;
        transform-origin: 0% 100%;
        -webkit-transform: scale(1, 0);
        -ms-transform: scale(1, 0);
        -moz-transform: scale(1, 0);
        -o-transform: scale(1, 0);
        transform: scale(1, 0);
      }
    }
    #paschka {
      display: block;
      color: white;
      font-family: helvetica neue, helvetica, arial;
      font-size: 32px;
      text-decoration: none;
      position: fixed;
      bottom: 0px;
      right: 0px;
      padding: 0px;
      transition: all 0.1s ease;
      background: #000;
      height: 40px;
      line-height: 30px;
      vertical-align: middle;
      width: 40px;
      text-align: center;
      border-radius: 5%;
      bottom: 20px;
      right: 20px;
    }
    #paschka:hover {
      background: #232323;
      transition: all 0.1s ease;
      color: #f0f0f0;
    }


main .light-rays > *::before, main .light-rays {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

main {
  width: 100%;
  height: 100%;
  /*background: radial-gradient(farthest-corner at 50% 0%, #23617d 0%, #112031 100%);*/
  display: grid;
  place-items: center;
  position: absolute;
      z-index: 0;
      pointer-events: none;
}
main .light-rays {
  pointer-events: none;
  filter: blur(0.6rem);
}
main .light-rays > * {
  --deg: 0;
  --length: 0rem;
  --thickness: 20px;
  --duration: 2s;
  --delay: 1s;
  --rotate: 0deg;
  --degRange: 72.5deg;
  --spreadRange: 40vw;
  position: absolute;
  transform-style: preserve-3d;
  perspective: 500px;
  width: var(--thickness);
  height: calc(20% + 370px + var(--length));
  left: 50%;
  transform: translateX(calc(-50% + var(--deg) * var(--spreadRange) * -1 + 0.5 * var(--spreadRange))) translateY(-100px) rotateZ(calc(var(--degRange) * -0.5 + var(--deg) * var(--degRange))) rotateX(0.01deg);
  transform-origin: center -100px;
  mix-blend-mode: screen;
  -webkit-animation: shimmer linear var(--duration) calc(var(--delay) * -1) infinite alternate forwards, rotate ease-in-out calc(var(--duration) * 3.14) calc(var(--delay) * -1) infinite alternate forwards;
          animation: shimmer linear var(--duration) calc(var(--delay) * -1) infinite alternate forwards, rotate ease-in-out calc(var(--duration) * 3.14) calc(var(--delay) * -1) infinite alternate forwards;
}
main .light-rays > *::before {
  content: "";
  background: linear-gradient(to bottom, #a6fff8, rgba(166, 255, 248, 0) 100%);
  transform-origin: top center;
  transform: rotateX(40deg);
}
main .light-rays > *:nth-child(1) {
  --deg: 0.945684107;
  --thickness: 17.3401130005px;
  --length: -12.4561931031px;
  --duration: 1.461263679s;
  --delay: 2.2109280952s;
  --rotate: -0.6665381718deg;
}
main .light-rays > *:nth-child(2) {
  --deg: 0.759793531;
  --thickness: 25.8166923272px;
  --length: 40.5308668587px;
  --duration: 1.6606635249s;
  --delay: 2.8809112862s;
  --rotate: -1.3225891406deg;
}
main .light-rays > *:nth-child(3) {
  --deg: 0.9738417911;
  --thickness: 17.7896694845px;
  --length: 3.0245556758px;
  --duration: 1.8392273324s;
  --delay: 2.2539641007s;
  --rotate: -0.1395714667deg;
}
main .light-rays > *:nth-child(4) {
  --deg: 0.3251557667;
  --thickness: 30.1142754486px;
  --length: -4.9817803433px;
  --duration: 2.1889741498s;
  --delay: 2.195493644s;
  --rotate: -0.0261063285deg;
}
main .light-rays > *:nth-child(5) {
  --deg: 0.82414753;
  --thickness: 13.543519674px;
  --length: 33.2807683089px;
  --duration: 1.6718854129s;
  --delay: 2.9106960663s;
  --rotate: 0.9314995046deg;
}
main .light-rays > *:nth-child(6) {
  --deg: 0.67171414;
  --thickness: 12.7344745184px;
  --length: 4.7514800566px;
  --duration: 2.1323541505s;
  --delay: 2.7406513621s;
  --rotate: -0.1920785718deg;
}
main .light-rays > *:nth-child(7) {
  --deg: 0.9642205127;
  --thickness: 11.8723362103px;
  --length: -42.0939234648px;
  --duration: 2.1427619353s;
  --delay: 2.8136500155s;
  --rotate: -0.0938859592deg;
}
main .light-rays > *:nth-child(8) {
  --deg: 0.1104950952;
  --thickness: 25.8985659783px;
  --length: -27.7797629795px;
  --duration: 2.3072517576s;
  --delay: 2.468037034s;
  --rotate: -0.1759950422deg;
}
main .light-rays > *:nth-child(9) {
  --deg: 0.1222474799;
  --thickness: 13.1563399236px;
  --length: -35.7240315051px;
  --duration: 2.1308700754s;
  --delay: 2.0418859642s;
  --rotate: -0.4316370728deg;
}
main .light-rays > *:nth-child(10) {
  --deg: 0.6624108842;
  --thickness: 18.8528329308px;
  --length: 15.6847884615px;
  --duration: 2.3554901148s;
  --delay: 2.4546397007s;
  --rotate: 1.3083631803deg;
}
main .light-rays > *:nth-child(11) {
  --deg: 0.538609189;
  --thickness: 33.151389932px;
  --length: -13.8740165979px;
  --duration: 2.2970870369s;
  --delay: 2.7735170457s;
  --rotate: 3.8192004019deg;
}
main .light-rays > *:nth-child(12) {
  --deg: 0.683236214;
  --thickness: 27.813996895px;
  --length: 2.0346273106px;
  --duration: 2.217203892s;
  --delay: 2.6609485018s;
  --rotate: -0.5498189594deg;
}
main .light-rays > *:nth-child(13) {
  --deg: 0.1917818866;
  --thickness: 19.7959808229px;
  --length: -30.1810685776px;
  --duration: 1.3348933755s;
  --delay: 2.4651957138s;
  --rotate: -2.0893607621deg;
}
main .light-rays > *:nth-child(14) {
  --deg: 0.7197131263;
  --thickness: 32.0361814673px;
  --length: -1.9765951485px;
  --duration: 2.491656615s;
  --delay: 2.6762836172s;
  --rotate: 1.2758645839deg;
}
main .light-rays > *:nth-child(15) {
  --deg: 0.9930724017;
  --thickness: 30.015440827px;
  --length: -37.5341865663px;
  --duration: 1.9023479278s;
  --delay: 2.0168775924s;
  --rotate: -3.0916962502deg;
}
main .light-rays > *:nth-child(16) {
  --deg: 0.4852864092;
  --thickness: 26.2246712804px;
  --length: 46.8651321111px;
  --duration: 1.2295234463s;
  --delay: 2.8976602583s;
  --rotate: -1.2656540065deg;
}
main .light-rays > *:nth-child(17) {
  --deg: 0.6203644126;
  --thickness: 20.0162990643px;
  --length: -44.8636186473px;
  --duration: 1.483803838s;
  --delay: 2.9141785752s;
  --rotate: 3.7056801841deg;
}
main .light-rays > *:nth-child(18) {
  --deg: 0.5736202953;
  --thickness: 30.8255861184px;
  --length: 5.9194801959px;
  --duration: 1.0052439753s;
  --delay: 2.3517875475s;
  --rotate: 1.940318007deg;
}
main .light-rays > *:nth-child(19) {
  --deg: 0.8008099357;
  --thickness: 24.0048492591px;
  --length: -10.1718043264px;
  --duration: 1.0167055093s;
  --delay: 2.778578833s;
  --rotate: -1.602761711deg;
}
main .light-rays > *:nth-child(20) {
  --deg: 0.9318079007;
  --thickness: 19.8096333688px;
  --length: -34.5728189824px;
  --duration: 1.4915920502s;
  --delay: 2.1030467073s;
  --rotate: -3.9799582618deg;
}
main .light-rays > *:nth-child(21) {
  --deg: 0.7494743473;
  --thickness: 24.3382639042px;
  --length: -9.7317997326px;
  --duration: 2.0847535424s;
  --delay: 2.2020851288s;
  --rotate: -3.4173530629deg;
}
main .light-rays > *:nth-child(22) {
  --deg: 0.6626662863;
  --thickness: 12.8232733114px;
  --length: -13.1440777098px;
  --duration: 1.7388559686s;
  --delay: 2.4507555157s;
  --rotate: 2.6450499067deg;
}
main .light-rays > *:nth-child(23) {
  --deg: 0.3522555716;
  --thickness: 29.6704593622px;
  --length: -0.8507377174px;
  --duration: 2.4381374181s;
  --delay: 2.9047451537s;
  --rotate: 3.0583447933deg;
}
main .light-rays > *:nth-child(24) {
  --deg: 0.7239356231;
  --thickness: 32.5159285742px;
  --length: 11.687634413px;
  --duration: 2.1050506437s;
  --delay: 2.503926538s;
  --rotate: -3.2309568933deg;
}
main .light-rays > *:nth-child(25) {
  --deg: 0.1033529874;
  --thickness: 29.4185082202px;
  --length: -1.7675912038px;
  --duration: 1.2011872314s;
  --delay: 2.6941742788s;
  --rotate: 3.2153667995deg;
}
main .light-rays > *:nth-child(26) {
  --deg: 0.0003788086;
  --thickness: 13.2005039943px;
  --length: 18.945926599px;
  --duration: 1.5434782874s;
  --delay: 2.9181273018s;
  --rotate: 3.2690042232deg;
}
main .light-rays > *:nth-child(27) {
  --deg: 0.5119349843;
  --thickness: 27.2821290851px;
  --length: -47.9966493345px;
  --duration: 1.7417594984s;
  --delay: 2.2553414381s;
  --rotate: 3.260879366deg;
}
main .light-rays > *:nth-child(28) {
  --deg: 0.9328392652;
  --thickness: 12.6235074305px;
  --length: -14.3481422194px;
  --duration: 1.136821517s;
  --delay: 2.4430423069s;
  --rotate: 0.9475564673deg;
}
main .light-rays > *:nth-child(29) {
  --deg: 0.0062499016;
  --thickness: 21.5067225533px;
  --length: 34.0843954191px;
  --duration: 2.2596897222s;
  --delay: 2.1869766928s;
  --rotate: -3.8856811727deg;
}
main .light-rays > *:nth-child(30) {
  --deg: 0.2059711508;
  --thickness: 14.0336114091px;
  --length: 9.5928858668px;
  --duration: 1.494393164s;
  --delay: 2.9135874682s;
  --rotate: -3.0851358146deg;
}
main .light-rays > *:nth-child(31) {
  --deg: 0.9086563794;
  --thickness: 25.877362791px;
  --length: -46.4328727813px;
  --duration: 1.3567133288s;
  --delay: 2.0082234404s;
  --rotate: 1.2413011538deg;
}
main .light-rays > *:nth-child(32) {
  --deg: 0.361741104;
  --thickness: 28.1956558169px;
  --length: 26.8913074668px;
  --duration: 1.5325761395s;
  --delay: 2.6714486839s;
  --rotate: -1.6174872024deg;
}
main .login {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 1rem;
  margin-top: -17.5vh;
  filter: drop-shadow(0px 3px 0px rgba(0, 0, 0, 0.2));
}
main .login h1 {
  font-family: "Teko", "Nunito Sans", sans-serif;
  display: flex;
  align-items: center;
  align-self: stretch;
  gap: 0.3em;
  background-image: linear-gradient(to bottom, white, #7ff);
  color: transparent;
  -webkit-background-clip: text;
          background-clip: text;
  text-align: center;
  white-space: nowrap;
  font-size: 5.4rem;
  opacity: 0.8;
}
main .login h1::before, main .login h1::after {
  content: "";
  display: block;
  height: 0.1em;
  flex: 1;
  background-image: inherit;
}
main .login form {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-auto-rows: auto;
  grid-auto-flow: row dense;
  padding: 3rem 4rem;
  background-color: rgba(255, 255, 255, 0.05);
  box-shadow: 0px 0px 1.4rem inset rgba(255, 255, 255, 0.1);
  gap: 2rem;
  color: white;
}
main .login form .group {
  display: grid;
  grid-template-columns: subgrid;
  grid-column: 1/-1;
  gap: 1rem;
  align-items: center;
}
main .login form .group label {
  font-size: 1.4rem;
  text-align: right;
  opacity: 0.7;
}
main .login form .group input {
  flex: 1;
  min-width: 0;
  border: none;
  border-radius: 0px;
  font-size: inherit;
  padding: 4px 6px;
  outline: none;
  background-color: rgba(255, 255, 255, 0.3);
  color: inherit;
  transition: all 0.2s;
}
main .login form .group input:focus {
  background-color: rgba(112, 255, 255, 0.3);
}
main .login form button {
  grid-column: 1/-1;
  border: none;
  cursor: pointer;
  padding: 4px;
  font-size: inherit;
  font-size: 2rem;
  background-color: rgba(255, 255, 255, 0.3);
  color: white;
  text-transform: uppercase;
  transition: all 0.2s;
  outline: none;
}
main .login form button:hover, main .login form button:focus {
  color: #7ff;
  background-color: rgba(112, 255, 255, 0.3);
}

@-webkit-keyframes shimmer {
  0% {
    opacity: 0.33;
  }
  100% {
    opacity: 0.03;
  }
}

@keyframes shimmer {
  0% {
    opacity: 0.33;
  }
  100% {
    opacity: 0.03;
  }
}
@-webkit-keyframes rotate {
  0% {
    rotate: 0deg;
  }
  100% {
    rotate: var(--rotate);
  }
}
@keyframes rotate {
  0% {
    rotate: 0deg;
  }
  100% {
    rotate: var(--rotate);
  }
}

.frame {
    display: inline-block;
    border: 20px solid transparent;
    border-image-source: url(../img/frame.svg);
    border-image-slice: 20 fill;
    border-image-width: 20px;
    border-image-repeat: stretch;
    margin: 20px 10px;
    box-sizing: border-box;
    cursor: pointer;
    width: calc(100% - 20px);
    height: calc(100vh - 40px);
}

.frame .content {
    background-color: #2ecdbd;
    padding: 20px 60px;
    font-family: 'Jockey One', sans-serif;
    font-size: 28px;
    color: white;
    text-align: center;
}
      
    .bg {
      /*background: url(../img/bg.jpg) no-repeat;*/
      background-size: cover;
      background-position: 50% 50%;
      height: 100%;
      width: 100%;
      position: fixed;
      top: 0;
      left: 0;
      z-index: -3;
      pointer-events: none;
      background-color: #e1d2c0;
  }
  .bg:before {
      content: "";
      width: 100%;
      height: 100%;
      background: #000;
      position: fixed;
      z-index: -1;
      top: 0;
      left: 0;
      opacity: 0;
      pointer-events: none;
  }
  @keyframes sf-fly-by-1 {
      from {
          transform: translateZ(-600px);
          opacity: 0.5;
      }
      to {
          transform: translateZ(0);
          opacity: 0.5;
      }
  }
  @keyframes sf-fly-by-2 {
      from {
          transform: translateZ(-1200px);
          opacity: 0.5;
      }
      to {
          transform: translateZ(-600px);
          opacity: 0.5;
      }
  }
  @keyframes sf-fly-by-3 {
      from {
          transform: translateZ(-1800px);
          opacity: 0.5;
      }
      to {
          transform: translateZ(-1200px);
          opacity: 0.5;
      }
  }
  .star-field {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      perspective: 600px;
      -webkit-perspective: 600px;
      z-index: -1;
      pointer-events: none;
  }
  .star-field .layer {
      box-shadow: -411px -476px #cccccc, 777px -407px #d4d4d4, -387px -477px #fcfcfc, -91px -235px #d4d4d4, 491px -460px #f7f7f7, 892px -128px #f7f7f7, 758px -277px #ededed, 596px 378px #cccccc, 647px 423px whitesmoke, 183px 389px #c7c7c7,
          524px -237px #f0f0f0, 679px -535px #e3e3e3, 158px 399px #ededed, 157px 249px #ededed, 81px -450px #ebebeb, 719px -360px #c2c2c2, -499px 473px #e8e8e8, -158px -349px #d4d4d4, 870px -134px #cfcfcf, 446px 404px #c2c2c2,
          440px 490px #d4d4d4, 414px 507px #e6e6e6, -12px 246px #fcfcfc, -384px 369px #e3e3e3, 641px -413px #fcfcfc, 822px 516px #dbdbdb, 449px 132px #c2c2c2, 727px 146px #f7f7f7, -315px -488px #e6e6e6, 952px -70px #e3e3e3,
          -869px -29px #dbdbdb, 502px 80px #dedede, 764px 342px #e0e0e0, -150px -380px #dbdbdb, 654px -426px #e3e3e3, -325px -263px #c2c2c2, 755px -447px #c7c7c7, 729px -177px #c2c2c2, -682px -391px #e6e6e6, 554px -176px #ededed,
          -85px -428px #d9d9d9, 714px 55px #e8e8e8, 359px -285px #cfcfcf, -362px -508px #dedede, 468px -265px #fcfcfc, 74px -500px #c7c7c7, -514px 383px #dbdbdb, 730px -92px #cfcfcf, -112px 287px #c9c9c9, -853px 79px #d6d6d6,
          828px 475px #d6d6d6, -681px 13px #fafafa, -176px 209px #f0f0f0, 758px 457px #fafafa, -383px -454px #ededed, 813px 179px #d1d1d1, 608px 98px whitesmoke, -860px -65px #c4c4c4, -572px 272px #f7f7f7, 459px 533px #fcfcfc,
          624px -481px #e6e6e6, 790px 477px #dedede, 731px -403px #ededed, 70px -534px #cccccc, -23px 510px #cfcfcf, -652px -237px whitesmoke, -690px 367px #d1d1d1, 810px 536px #d1d1d1, 774px 293px #c9c9c9, -362px 97px #c2c2c2,
          563px 47px #dedede, 313px 475px #e0e0e0, 839px -491px #e3e3e3, -217px 377px #d4d4d4, -581px 239px #c2c2c2, -857px 72px #cccccc, -23px 340px #dedede, -837px 246px white, 170px -502px #cfcfcf, 822px -443px #e0e0e0, 795px 497px #e0e0e0,
          -814px -337px #cfcfcf, 206px -339px #f2f2f2, -779px 108px #e6e6e6, 808px 2px #d4d4d4, 665px 41px #d4d4d4, -564px 64px #cccccc, -380px 74px #cfcfcf, -369px -60px #f7f7f7, 47px -495px #e3e3e3, -383px 368px #f7f7f7, 419px 288px #d1d1d1,
          -598px -50px #c2c2c2, -833px 187px #c4c4c4, 378px 325px whitesmoke, -703px 375px #d6d6d6, 392px 520px #d9d9d9, -492px -60px #c4c4c4, 759px 288px #ebebeb, 98px -412px #c4c4c4, -911px -277px #c9c9c9;
      transform-style: preserve-3d;
      position: absolute;
      top: 50%;
      left: 50%;
      height: 4px;
      width: 4px;
      border-radius: 2px;
  }
  .star-field .layer:nth-child(1) {
      animation: sf-fly-by-1 5s linear infinite;
  }
  .star-field .layer:nth-child(2) {
      animation: sf-fly-by-2 5s linear infinite;
  }
  .star-field .layer:nth-child(3) {
      animation: sf-fly-by-3 5s linear infinite;
  }

  .contentContainer {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

.contentSiteProgress {
        
}

.contentSiteProgress .uk-container {
    height: 100vh;
}

.siteprogressContainer {
    text-align: center;
    width: 100%;
}

.siteprogressContainer img {
    width: 100px;
    display: none;
}

.siteprogressContainer p {
    font-size: 100px;
    color: #58341f;
    font-family: 'Allura-Regular';
}

.contentLocationMap {
  /*background-image: url(../img/location/location-bg.jpg);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;*/
  background-color: #552034;
}

.contentLocationMap .uk-container {
  height: 100vh;
}

.locationMapTitle {
  margin: 0;
  z-index: 999;
  position: absolute;
  top: 20px;
  left: 20px;
}

.locationMapTitle h1 {
  font-family: 'Allura-Regular';
  color: #dabfaf;
  line-height: 55px;
  font-size: 55px;
  margin-bottom: 0;
}

.locationMapTitle h2 {
  font-family: 'Magesta-Regular';
  color: #dabfaf;
  line-height: 50px;
  font-size: 50px;
  margin-top: 20px;
}


.locationMapRoad{
  background-image: url(../img/location/location-road.png);
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: contain;
      background-size: 55%;
  height: 100vh;
  width: 100%;
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
}

.locationMapText{
  position: absolute;
  bottom: 20px;
  right: 20px;
      width: 25%;
  z-index: 999;
}

.locationMapText p{
  color: #dabfaf;
  font-size: 14px;
  line-height: 17px;
  text-align: justify;
  margin: 0;
}

.stickMenu{
  position: fixed;
  top: 0px;
  right: 0px;
  z-index: 999999999;
}

.stickMenu > a {
    background-color: #58341f;
    padding: 10px 15px;
    padding-bottom: 5px;
    display: block;
}

.stickMenu a p{
  display: inline-block;
  margin: 0;
  padding: 0;
  color: #58341f;
  font-size: 20px;
  font-family: 'Magesta-Regular';
}

.stickMenuWhite a p{
  color: #e1d2c0;
}

.stickMenuWhite .hamburger span{
  background-color: #e1d2c0 !important;
}

.menuOffCanvas{
  /*display: flex;
  justify-content: left;
  align-items: center;
  height: 100%;*/
}

.menuOffCanvas ul{
  list-style: none;
  padding: 0;
  margin: 0;
}

.menuOffCanvas ul li{
  margin: 16px 0;
}

.menuOffCanvas ul li a{
  font-family: 'Magesta-Regular';
  font-size: 26px;
  position: relative;
  color: #e1d2c0;
}

.menuOffCanvas ul li a:hover, .menuOffCanvas ul li.active a{
  color: #eeb98d;
  padding-left: 14px;
}

.menuOffCanvas ul li a:before, .menuOffCanvas ul li.active a:before{
  -webkit-transition: all 0.3s ease;                  
  -moz-transition: all 0.3s ease;                 
  -o-transition: all 0.3s ease;   
  -ms-transition: all 0.3s ease;          
  transition: all 0.3s ease;
}

.menuOffCanvas ul li a:hover:before, .menuOffCanvas ul li.active a:before{
  content: '';
  border-left: 6px solid #dc482a;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  position: absolute;
  left: 0;
      top: 10px;
}


.uk-offcanvas-bar {
  left: -400px;
  max-width: 400px !important;
  width: 400px !important;
  background: #58341f;
}

.uk-offcanvas-close:first-child+* {
  margin-top: 50px;
}

ul.menuSocialMedia li{
  display: inline-block;
  margin: 0;
  margin-right: 5px;
}

ul.menuSocialMedia li:last-child{
  margin: 0;
}

.copyRight{
  font-size: 11px;
  font-family: 'Anth-Regular';
  color: #e1d2c0;
}

ul.menuTerms{
  margin-top: 10px;
}

ul.menuTerms li{
  display: inline-block;
  margin: 0;
  border-right: 1px solid #e1d2c0;
}

ul.menuTerms li:last-child{
  border: none;
}

ul.menuTerms li a{
  font-size: 11px;
  font-family: 'Anth-Regular';
  color: #e1d2c0;
  padding: 0px 10px !important;
  display: block;
}

ul.menuTerms li:first-child a{
  padding-left: 0 !important;
}

ul.menuTerms li a:hover, ul.menuSocialMedia li a:hover{
  padding: 0;
}

ul.menuTerms li a:hover:before, ul.menuSocialMedia li a:hover:before{
  display: none;
}

a.uk-offcanvas-close{
  color: #e1d2c0;
  font-size: 18px;
  font-family: 'Magesta-Regular';
}

.uk-offcanvas-bar a:hover{
  color: #eeb98d;
}

/*a.uk-offcanvas-close:hover, a.uk-offcanvas-close:hover svg{
  color: #3E2680 !important;
  fill: #3E2680 !important;
}*/

a.uk-offcanvas-close img{
  width: 13px;
  margin-right: 5px;
  margin-top: -3px;
}

.hamburger {
  position: relative;
  width: 1.733rem;
      height: 1.1rem;
  margin-right: 0.533rem;
  display: inline-flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-direction: column;
  top: -14px;
}

.hamburger span {
  height: 2px;
  display: block;
  width: 100%;
  display: block;
  background: #494787;
  transition: all .5s;
}

.hamburger span:first-child {
  width: 73%;
}

.hamburger span:last-child {
  width: 54%;
}

.contentFloorPlan, .contentUnitPlans {
  background-color: #dabfaf;
    /*background-image: url(../img/floorplan/bg.jpg);
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;*/
    position: relative;
}

.contentUnitPlans{
  height: 100%;
}

.contentUnitPlans section{
  height: 100%;
      margin-bottom: 30px;
}

.floorPlanTitle {
  position: absolute;
      top: 20px;
    left: 20px;
}

.floorPlanTitle img{
  width: 30px;
}

.floorPlanTitle img:nth-child(1){
  top: 20px;
  left: -40px;
}

.floorPlanTitle img:nth-child(2){
  top: 100px !important;
  right: -20px;
}

.floorPlanTitle h2 {
  color: #702e19;
  font-size: 60px;
  line-height: 60px;
  font-family: 'Magesta-Regular';
  position: relative;
}

/*.floorPlanTitle h2:before {
  content: '';
  background-color: #ffffff;
  width: 10px;
  height: 155px;
  position: absolute;
  display: block;
  top: -30px;
  left: -30px;
}*/

.unitPlansTitle {
  position: absolute;
  top: 20px;
  left: 20px;
}

.unitPlansTitle h2 {
  color: #702e19;
    font-size: 60px;
    line-height: 60px;
    font-family: 'Magesta-Regular';
    position: relative;
}

.unitPlansTitle img{
  width: 30px;
}

.unitPlansTitle img:nth-child(1){
  top: 20px;
  left: -40px;
}

.unitPlansTitle img:nth-child(2){
  top: 100px !important;
  right: -20px;
}

.unitPlansImg {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  height: 100vh;
}

.unitPlansImg img {
  width: 500px;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: none;
  margin-bottom: 0;
}

.unitPlansImg img.active {
  opacity: 1;
  display: block;
}

.unitPlansTitleBtm {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  height: 100vh;

}

.unitPlansTitleBtm img {
  width: 500px;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin: 0 auto;
  display: none;
}

.unitPlansTitleBtm img.active {
  opacity: 1;
  display: block;
}

.unitPlansNav {
  position: absolute;
  bottom: 50px;
  right: 0;
  text-align: right;
}

.flootPlanNav ul, .unitPlansNav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-right: 50px;
}

.flootPlanNav ul li, .unitPlansNav ul li {
  margin-bottom: 20px;
}

.flootPlanNav ul li a, .unitPlansNav ul li a {
  color: #3F3180;
  font-family: 'Agatho-Regular';
  font-size: 20px;
  text-align: right;
  position: relative;
}

.unitPlansNav ul li a {
  color: #D6DE27;
}

.flootPlanNav ul li.active a, .flootPlanNav ul li a:hover, .unitPlansNav ul li.active a, .unitPlansNav ul li a:hover {
  padding-right: 40px;
}

.flootPlanNav ul li.active a:before, .flootPlanNav ul li a:hover:before, .unitPlansNav ul li.active a:before, .unitPlansNav ul li a:hover:before {
  content: '';
  background-color: #3F3180;
  display: block;
  height: 1px;
    width: 5px;
  position: absolute;
  left: -20px;
  top: 4px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.unitPlansNav ul li.active a:before, .unitPlansNav ul li a:hover:before {
  background-color: unset;
}

.flootPlanNav ul li a:after, .unitPlansNav ul li a:after {
  content: '';
  background-color: #3F3180;
  display: block;
  height: 2px;
  width: 40px;
  position: absolute;
  right: -50px;
  top: 6px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.unitPlansNav ul li a:after {
  background-color: #D6DE27;
}

.flootPlanNav ul li.active a:after, .flootPlanNav ul li a:hover:after, .unitPlansNav ul li.active a:after, .unitPlansNav ul li a:hover:after {
  width: 80px;
}







section {
  height: 100vh;
  width: 100%;
}

.floorPlanLabel {
  text-align: center;
  display: block;
  margin: 0 auto;
  position: absolute;
  width: 100%;
  top: 50px;
  left: 0;
}

.floorPlanLabel img {
  width: 100px;
  margin-right: 30px;
}

.floorPlanImg {
  text-align: center;
  margin: 0 auto;
  /*display: flex;
  justify-content: center;
  align-items: center;
  
  height: 100%;*/
      width: 100%;
}

.floorPlanImg img {
  max-width: 62%;
  /*margin-top: 100px;
  margin-bottom: 100px;*/
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: none;
  pointer-events: none;
      margin: 0 auto;
      opacity: 1;
  display: block;
}

.floorPlanImg1{
      text-align: center;
}

.floorPlanImg1 ul{
  padding: 0;
  margin: 0;
  list-style: none;
  margin-top: 50px;
}

.floorPlanImg1 ul li{
  display: inline-block;
  margin: 0 !important;
  margin-right: 20px !important;
}

.floorPlanImg1 ul li:last-child{
  margin-right: 0px !important;
}

.floorPlanImg1 ul li img{
  width: 180px;
}
      
.floorPlanCompass {
  bottom: 20px;
  right: 20px;
  position: fixed;
}

.floorPlanCompass img {
      width: 130px;
  pointer-events: none;
}

.flootPlanNav, .unitPlansNav {
  position: absolute;
  bottom: 50px;
  right: 0;
  text-align: right;
}

.flootPlanNav ul, .unitPlansNav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-right: 50px;
}

.flootPlanNav ul li, .unitPlansNav ul li {
  margin-bottom: 20px;
}

.flootPlanNav ul li a, .unitPlansNav ul li a {
  color: #58341f;
  font-family: 'Magesta-Regular';
  font-size: 20px;
  text-align: right;
  position: relative;
}


.flootPlanNav ul li.active a, .flootPlanNav ul li a:hover, .unitPlansNav ul li.active a, .unitPlansNav ul li a:hover {
  padding-right: 40px;
}

.flootPlanNav ul li.active a:before, .flootPlanNav ul li a:hover:before, .unitPlansNav ul li.active a:before, .unitPlansNav ul li a:hover:before {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
  content: '';
    border-left: 6px solid #dc472a;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    position: absolute;
    left: -15px;
    top: 6px;
}

.flootPlanNav ul li a:after, .unitPlansNav ul li a:after {
  content: '';
  background-color: #58341f;
  display: block;
  height: 2px;
  width: 40px;
  position: absolute;
  right: -50px;
      top: 11px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.flootPlanNav ul li.active a:after, .flootPlanNav ul li a:hover:after, .unitPlansNav ul li.active a:after, .unitPlansNav ul li a:hover:after {
  width: 80px;
}

.developerContainer {
  text-align: center;
}

/*.contentDeveloper{
  background-image: url(../img/bg.jpg);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}*/

.uk-dotnav>*>* {
  border: 1px solid #702e19;
}

.uk-dotnav>.uk-active>* {
  background-color: #dc472a;
}

.uk-dotnav>*>:hover {
  background-color: #dc472a;
}

.contentDeveloper .uk-container {
  height: 100vh;
}

.developerSlider {
  margin-top: 100px;
}

.developerSlider .uk-slider > div {
  background-color: rgba(255, 255, 255, 0.55);
    border-radius: 10px;
    padding: 40px 30px;
    border: 1px solid white;
}

.developerContainer img {
  width: 20%;
  margin: 0 auto;
  display: block;
}

.developerContainer p {
  color: #58341f;
  font-size: 16px;
  font-family: 'Anth-Regular';
}

.developerContainer p a {
  color: #58341f;
  font-size: 16px;
  font-family: 'Anth-Regular';
  text-decoration: underline;
}

.developerSlider img {
  width: 90% !important;
}

.contentContactUs .uk-container{
  height: 100vh;
}

.contactUsCard{
  background-color: rgba(255, 255, 255, 0.55);
  padding: 20px 15px;
  border-radius: 10px;
  text-align: center;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  /*border: 1px solid white;*/
}

.contactUsCardExsim > div > img{
  width: 50% !important;
}

.contactUsCardFrame{
  /*position: absolute;
  border: 1px solid #F3B991;
  border-radius: 10px;
  z-index: 99;
  width: calc(100% + 13px);
  top: -8px;
  left: -8px;
  bottom: 5px;
  right: 5px;
  pointer-events: none;*/
}

.contactUsCard img{
  width: 90%;
  pointer-events: none;
}

.contactUsCard h2{
  color: #58341f;
  font-size: 24px;
  font-family: 'Magesta-Regular';
  margin-top: 20px;
  margin-bottom: 0;
}

.contactUsCard span{
  color: #58341f;
  font-size: 15px;
  font-family: 'Anth-Regular';
}

.contactUsCard p{
  color: #58341f;
  font-size: 15px;
  font-family: 'Anth-Regular';
}

.contactUsCard ul{
  list-style: none;
  padding: 0;
  margin: 0 auto;
  width: 55%;
  display: block;
  position: relative;
  margin-top: 30px;
}

.contactUsCard ul li{
  text-align: left;
  margin-bottom: 15px;
}

.contactUsCard ul li:last-child{
  margin-bottom: 0px;
}

.contactUsCard ul li a{
  color: #58341f;
  font-size: 15px;
  font-family: 'Anth-Regular';
  display: inline-block;
  width: 100%;
  cursor: pointer;
}

.contactUsCard ul li a img{
  width: 30px;
  display: inline-block;
  margin-right: 5px;
}

.contactUsLocation{
  margin-top: 30px;
}

.contactUsLocation a{
  margin-right: 10px;
}

.contactUsLocation a:last-child{
  margin-right: 0px;
}

.contactUsLocation a img{
  width: 50px;
  pointer-events: unset;
}

.contactUsCardCustom{
  width: 72% !important
}

.contentGallery .uk-container{
  height: 100vh;
}

.galleryContainer{
  width: 100%;
}

.galleryContainer h2{
  font-family: 'Magesta-Regular';
  font-size: 45px;
  color: #fff;
  margin-bottom: 0;
  text-shadow: 6px 6px 8px rgba(66, 68, 90, 1);
  text-align: center;
  margin-left: -20px;
}

.galleryImage:hover {
  cursor: url(../img/close.svg), pointer;
}

.galleryContainer img{
  object-fit: contain;
}

.uk-modal{
  z-index: 9999999999999999;
}

.galleryTitle{
  margin-top: 100px;
  margin-left: 20px;
}

.contentConcept {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.contentConcept p{
  color: #31180c;
  text-align: justify;
  font-size: 16px;
  font-family: 'Anth-Regular';
  position: relative;
}

.contentConceptSection {
  height: auto;
  width: 100%;
  position: relative;
  padding: 100px 0;
}

.contentConcept0 {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  padding: 0;
}

.contentConcept0 img {
  width: 100%;
  margin: 0 auto;
  display: block;
  max-width: 420px;
  pointer-events: none;
}

.contentConcept1 {
  background-image: url(../img/concept/section1-bg.jpg);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}

.contentConcept1 img{
  width: 75%;
}

.contentConcept2 {
  background-image: url(../img/concept/section2-bg.jpg);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}

.contentConcept2 h2{
  color: #31180c;
  font-family: 'Agatho-Regular';
  font-size: 50px;
  line-height: 50px;
  text-align: center;
}

.contentConcept2 img{
  width: 60%;
}

.contentConcept2Content{
  display: block;
  width: 50%;
  margin: 0 auto;
  position: relative;
  text-align: center;
}

.contentConcept2Content h1{
  color: #31180c;
  font-family: 'Allura-Regular';
  font-size: 50px;
    line-height: 50px;
    text-align: center;
    margin: 0;
    margin-bottom: 10px;
}

.contentConcept2Content h2{
  font-family: 'Magesta-Regular';
  margin: 0;
}

.contentConcept2Content img{
  width: 200px;
}

.contentConceptGreenRE img{
  width: 150px;
  margin-bottom: 50px;
}

.contentConcept3 {
  background-image: url(../img/concept/section3-bg.jpg);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  position: relative;
}

.contentConcept3Corner{
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}

.contentConcept3Corner img{
  width: 500px;
    pointer-events: none;
    z-index: 100;
    position: relative;
}

.contentConcept3Card{
  width: 100%;
  pointer-events: none;
  position: relative;
}

.contentConcept3Card > img{
      width: 600px;
    z-index: 100;
    position: relative;
    margin: 0 auto;
    display: block;
}

.contentConcept3CardBG{
  position: relative;
  width: 100%;
  left: 0;
  top: 0;
  margin-top: -730px;
}

.contentConcept3Flower{
  pointer-events: none;
  position: absolute;
  bottom: -50px;
  right: 0;
  animation-name: floating2;
    animation-duration: 4s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

.contentConcept3Flower img{
  width: 300px;
  
}

.contentConcept3bTexture{
  pointer-events: none;
    position: absolute;
    top: -50px;
    left: 100px;
}

.contentConcept3Butterfly{
      pointer-events: none;
    position: absolute;
    top: -50px;
    right: 100px;
    animation-name: floating;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

.contentConcept3Butterfly img{
  width: 200px;
}

@keyframes floating {
    from { transform: translate(0,  0px); }
    65%  { transform: translate(0, 20px); }
    to   { transform: translate(0, -0px); }    
}

@keyframes floating2 {
    from { transform: translate(0,  0px); }
    45%  { transform: translate(0, 20px); }
    to   { transform: translate(0, -0px); }    
}

.contentConcept3a {
  position: relative;
  background-color: #e2ccb5;
}

.contentConcept3a img{
  width: 150px;
  margin-bottom: 50px;
}

.contentConcept3a h1{
  color: #31180c;
  font-family: 'Allura-Regular';
  font-size: 50px;
    line-height: 50px;
    text-align: center;
    margin: 0;
    margin-bottom: 10px;
    color: #705c57;
}

.contentConcept3a h2{
  font-family: 'Magesta-Regular';
  margin: 0;
  color: #705c57;
}

.contentConcept3a p{
  color: #705c57;
}

.contentConcept3b {
  background-image: url(../img/concept/section3b-bg.jpg);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  position: relative;
}

.contentConcept4 {
  text-align: center;
  padding: 150px 0;
  position: relative;
}

.contentConcept4 img {
  width: 100%;
  margin: 0 auto;
  display: block;
  max-width: 420px;
  pointer-events: none;
}

/*.contentConcept4 a {
  background-color: #F3B991;
  display: inline-block;
  text-transform: uppercase;
  font-family: 'Anth-Regular';
  font-size: 15px;
  color: #fff;
  padding: 12px 20px;
  border-radius: 0px;
  margin-top: 30px;
}

.contentConcept4 a:hover{
  background-color: #CD7D7C;
}*/

.contentConcept1Stars img{
  width: 30px;
  position: absolute;
}

.contentConcept1Star1{
  top: 270px;
  left: 125px;
  animation: star1concept 3s ease-in-out infinite alternate;
}

@keyframes star1concept {
  0% {
      transform: scale(1.0);
  }
  50% {
    transform: scale(1.5);
}
  100% {
      transform: scale(1.0);
  }
}

.contentConcept1Star2{
  top: 150px;
  right: 95px;
  animation: star2concept 2s ease-in-out infinite alternate;
}

@keyframes star2concept {
  0% {
      transform: scale(1.0);
  }
  100% {
      transform: scale(1.5);
  }
}

.contentConcept3Stars img{
  width: 30px;
  position: absolute;
}

.contentConcept3Star1{
  top: 360px;
  left: 65px;
  animation: star1conceptA 4s ease-in-out infinite alternate;
  width: 40px !important;
}

@keyframes star1conceptA {
  0% {
      transform: scale(1.0);
      -webkit-transform: rotate(0deg);
  }
  50% {
    transform: scale(1.5);
    -webkit-transform: rotate(360deg);
}
  100% {
      transform: scale(1.0);
      -webkit-transform: rotate(0deg);
  }
}

.contentConcept3Star2{
  top: 180px;
  right: 130px;
  animation: star2conceptB 4s ease-in-out infinite alternate;
}

@keyframes star2conceptB {
  0% {
      transform: scale(1.0);
      -webkit-transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(360deg);
}
  100% {
      transform: scale(1.5);
      -webkit-transform: rotate(0deg);
  }
}

.loading-icon {
  position: absolute;
  vertical-align: middle;
  border-radius: 50%;
  background: transparent;
}
.loading-icon::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  animation: bounce 4s infinite;
}
.loading-icon::after {
  content: "";
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  animation: bounce 4s 0.5s infinite;
}

@keyframes bounce {
  0% {
    transform: scale(0);
    -webkit-transform: scale(0);
    opacity: 1;
  }
  90% {
    transform: scale(2);
    -webkit-transform: scale(2);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@-webkit-keyframes bounce {
  0% {
    transform: scale(0);
    -webkit-transform: scale(0);
    opacity: 1;
  }
  90% {
    transform: scale(2);
    -webkit-transform: scale(2);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}



.video-wrap {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: var(--100vh);
    opacity: 1;
    border: 0px solid #fff;
        z-index: -1;
}

.video-wrap video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    opacity: .22;
}

.waterripple{
  position: fixed;
  z-index: 0;
  width: 100vw;
  height: 100vh;
  display: block;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.waterripple canvas{
  pointer-events: none;
}


section {
  width: 100vw;
  height: 100vh;
  float: left;
  background-size: cover;
  overflow-x: hidden;
}
section.automattic {
  background-image: url(https://devia.com.my/devia/template/img/bg.jpg);
}

#banner {
  width: 100%;
  height: 100vh;
  position: fixed;
}

#banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: var(--image);
  background-clip: cover;
  background-size: cover;
  background-position: center;
  filter: grayscale(100%);
  z-index: 1;
}

#banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--image);
  background-clip: cover;
  background-size: cover;
  background-position: center;
  mask-image: var(--overlay);
  mask-size: cover;
  mask-position: center;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  z-index: 2;
}

#replay {
  position: fixed;
  top: 25px;
  left: 25px;
  z-index: 3;
  padding: 15px 25px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.25);
  color: rgb(255, 255, 255);
  border: 2px rgb(255, 255, 255) solid;
  font-size: 20px;
  outline: none;
  cursor: pointer;
  transition: all 0.15s ease-in-out;
}

#replay:hover {
  background: rgba(0, 0, 0, 0.75);
}



















@media screen and (max-width: 767px) {

.loader img{
    width: 120px;
    margin: 0 auto;
    display: block;
    margin-top: -60px;
}

.landing-logo img{
    width: 280px;
    margin: 0 auto;
    display: block;
    margin-top: -60px;
}

.exsim-logo img {
    width: 180px;
}

.register-form {
    /*height: 100vh;*/
    height: 100%;
    padding: 15px;
    padding-top: 30px;
    padding-bottom: 40px;
    width: calc(100% - 30px);
}

.register-form-bottom {
    line-height: 20px;
    height: 40px;
    justify-content: center;
    display: flex;
    align-items: center;
}


.white-container {
    padding: 30px 15px;
    margin: 0 15px;
    margin-bottom: 15px;
    margin-top: 100px;
}

.inner-logo{
    display: none;
}

.register-now{
    top: unset;
    transform: rotate(0deg);
    right: unset;
    left: unset;
}

.register-now-container a {
    width: 50vw;
    padding: 0;
    height: 55px;
    font-size: 16px;
}

.register {
    height: 100%;
}

.register-now-container{
    width: unset;
}

.register-now-container img {
    width: 17px;
}

.formfooter{
  margin-bottom: 80px !important;
}

.landing {
  height: calc(100vh - 82px);
}

.register-form iframe{
  min-height: calc(100vh - 250px);
}

.contentConcept1 img{
  width: 90%;
  margin-bottom: 20px !important;
}

.contentConcept1Stars img {
  width: 30px;
}

.contentConcept1Star1 {
  top: 220px;
  left: 60px;
}

.contentConcept1Star2 {
  top: 120px;
  right: 35px;
}

.contentConcept2Content {
  width: 100%;
}

.contentConcept3 img{
  width: 95%;
  display: block;
  margin: 0 auto;
  margin-bottom: 20px !important;
}

.contentConcept p {
  font-size: 15px;
}

.contentConceptSection {
  height: 100%;
}

.contentConcept3Stars img {
  width: 30px;
}

img.contentConcept4Logo {
  width: 80%;
}

.contentConcept3Star1 {
  top: 290px;
  left: 60px;
}

.contentConcept3Star2 {
  top: 140px;
  right: 15px;
}

    .contentConcept2 img {
        width: 100px;
    }

.contentConcept2Star1 {
  top: 25px !important;
  left: 10px !important;
}

.contentConcept2Star2 {
  right: 10px !important;
}

.contentConceptGreenRE > img{
  display: none;
}

.galleryContainer h2 {
  font-size: 22px;
}

.galleryTitle {
  margin-left: 0px;
}

.floorPlanImg img {
  max-width: 100%;
  margin-top: -50px;
}

    .floorPlanCompass {
        right: 20px;
        left: unset;
    }

.floorPlanTitle h2, .unitPlansTitle h2{
  font-size: 40px;
  line-height: 40px;
}

.floorPlanTitle {
  left: calc(50% - 112px);
  top: 50px;
}

section {
    width: 100%;
}

.unitPlansTitle {
  top: 50px;
  left: calc(50% - 93px);
}

.floorPlanTitle img:nth-child(1) {
  top: 20px !important;
  left: -40px !important;
}

.floorPlanTitle img:nth-child(2) {
  top: 80px !important;
  right: -40px !important;
}

.unitPlansTitle img:nth-child(1) {
  top: 20px !important;
  left: -40px !important;
}

.unitPlansTitle img:nth-child(2) {
  top: 80px !important;
  right: -30px !important;
}

.flootPlanNav ul, .unitPlansNav ul {
    margin-right: 0;
}

.unitPlansTitleBtm img {
  height: 70px;
}

.unitPlansImg{
  display: block;
          width: 100%;
}

.unitPlansImg img {
          max-height: unset;
        height: unset;
        margin: 0 auto;
        width: 90%;
        margin-top: 120px;
        /*margin-bottom: 140px;*/
}

.unitPlansTitleBtm {
          position: relative;
        width: 100%;
}

.unitPlansTitleBtm img{
  margin-top: 50px;
  padding-bottom: 50px;
}

.contentUnitPlans .uk-container{
  display: block;
}

.unitPlansNav {
    position: relative;
            margin-top: 50px;
        height: unset;
            right: 30px;
}

.unitPlansImg {
    height: auto;
}

.locationMapTitle {
  margin-top: 80px;
}

.locationMapTitle {
  line-height: 60px;
  font-size: 60px;
  top: 0px;
  left: 0px;
  position: relative;
}

.locationMapText {
  position: relative;
  bottom: unset;
  right: unset;
  width: 100%;
}

.locationMapRoad {
  height: 300px;
  position: relative;
  width: 100%;
  background-size: 100%;
}

.contentLocationMap, .contentContactUs{
  height: 100%;
  position: relative;
}

.developerContainer > img{
  width: 40%;
}

.contentContactUs .uk-container {
  height: auto;
        width: 80%;
}

.contentContactUs {
  padding-top: 80px;
}

.contactUsCard {
  padding: 30px 25px;
  margin-bottom: 20px !important;
}

.contactUsCard ul {
  width: 70%;
}

.contactUsCardCustom {
          width: 82% !important;
}

/*.fullpage-wrapper{
  z-index: 9999999999999999999999999 !important;
}*/

.vr360 a {
  height: 45px;
}

.vr360 a {
  font-size: 16px;
}

  .vr360 {
      position: absolute;
      top: unset;
      bottom: 200px;
  }


  .siteprogressContainer p {
    font-size: 60px;
    line-height: 65px;
}

.loader img{
      width: 350px;
  }

.frame {
    display: block;
    background-image: url(../img/frame-mobile.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: 50% 50%;
    border: none;
    margin: 20px 10px;
    box-sizing: border-box;
    cursor: pointer;
    width: calc(100% - 20px);
    height: calc(100vh - 40px);
    position: fixed;
}

.exsim-logo {
    left: calc(50% - 90px);
    top: 100px;
}

.contentDeveloper .uk-container {
    padding: 0 40px;
}

.uk-dotnav>*>* {
    margin-bottom: 10px;
}

.contactUsCard h2 {
    font-size: 22px;
}

.locationMapTitle h1{
    line-height: 45px;
    font-size: 45px;
}

.locationMapTitle h2{
  line-height: 35px;
    font-size: 35px;
}

.locationMapText p {
    margin-top: 50px;
}

.floorPlanImg1 ul li img {
    width: 120px;
    margin: 0 !important;
}

.floorPlanImg1 ul li {
    margin-bottom: 10px !important;
}

.floorPlanCompass img {
    width: 110px;
}

.disclaimer .exsim-logo, .terms .exsim-logo{
  top: 20px;
}

#scroll-down {
    bottom: 0px;
}

.contentConcept2Content h1, .contentConcept2Content h2 {
    font-size: 40px;
    line-height: 40px;
}

.contentConcept3Corner {
    left: -20px;
}

.contentConcept3Flower img {
    width: 100px;
}

.contentConcept3Butterfly img {
    width: 80px;
}

.contentConcept3a img {
    width: 100px;
}



.contentConcept3Card > img {
        width: 85%;
        margin-top: 100px;
    }

.contentConcept3Butterfly {
    right: 50px;
    z-index: 101;
}

.contentConcept3Flower{
  z-index: 101;
}

.contentConcept3bTexture {
    left: 0px;
}

.contentConcept3bTexture img{
    width: 250px;
}
    
.contentConcept3Corner img {
    width: 320px;
}

.contentConcept3CardBG {
    margin-top: -630px;
}

}


@media screen and (max-width: 480px) {

  .contentConcept3CardBG {
    margin-top: -500px;
}



}
