@font-face {
  font-family: "Miletus Grotesk Trial";
  src: url("/fonts/MiletusGroteskTrial-Light.woff2") format("woff2"), url("/fonts/MiletusGroteskTrial-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Miletus Grotesk Trial";
  src: url("/fonts/MiletusGroteskTrial-Medium.woff2") format("woff2"), url("/fonts/MiletusGroteskTrial-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Miletus Grotesk Trial";
  src: url("/fonts/MiletusGroteskTrial-Regular.woff2") format("woff2"), url("/fonts/MiletusGroteskTrial-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
:root {
  --header-height: 70px;
  --gap: 60px;
  --light: #F3EFEB;
  --gold:#7e715d;
  --red:#FF9F75;
  --dark: #4E4138;
  --xxs:5px;
  --xs:10px;
  --s:20px;
  --m:40px;
  --l:80px;
  --xl:150px;
  --xxl:180px;
}

body {
  font-family: "larken", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 16px;
  letter-spacing: 0.03em;
  line-height: 1.2;
  background: var(--light);
  color: var(--dark);
  margin: 0;
  padding: 0;
  text-align: left;
}

#preloader {
  background-color: var(--dark);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-size: cover;
  transition: opacity 0.7s;
  background-position: center;
  z-index: 50;
}
#preloader::before {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background 1.5s;
  background-color: rgba(78, 68, 56, 0.7);
  display: block;
  content: "";
}
#preloader.animated:before {
  background-color: rgba(78, 68, 56, 0);
}
#preloader.animated #Rocabella {
  bottom: var(--gap);
  transform: translateY(0);
}
#preloader.hide {
  opacity: 0;
  pointer-events: none;
}

#icon {
  display: block;
  width: 92px;
  opacity: 0;
  transition: opacity 1s;
}
#icon.animated {
  opacity: 1;
}

#bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.7s;
  background-color: var(--dark);
  z-index: 2;
}
#bg.animated {
  opacity: 0;
}

#Rocabella {
  position: absolute;
  bottom: 0;
  left: var(--gap);
  width: calc(100% - var(--gap) - var(--gap));
  transform: translateY(100%);
  transition: all 0.7s;
}

*, *:before, *:after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.grid_1 {
  width: 8.33%;
}

.grid_2 {
  width: 16.67%;
}

.grid_3 {
  width: 25%;
}

.grid_4 {
  width: 33.33%;
}

.grid_5 {
  width: 41.67%;
}

.grid_6 {
  width: 50%;
}

.grid_7 {
  width: 58.33%;
}

.grid_8 {
  width: 66.67%;
}

.grid_9 {
  width: 75%;
}

.grid_10 {
  width: 83.33%;
}

.grid_11 {
  width: 91.67%;
}

.grid_12 {
  width: 100%;
}

.grid_1, .grid_2, .grid_3, .grid_4, .grid_5, .grid_6, .grid_7, .grid_8, .grid_9, .grid_10, .grid_11, .grid_12 {
  display: block;
}

a {
  text-decoration: none;
  cursor: pointer;
  color: inherit;
}

img {
  border: none;
  max-width: 100%;
  display: block;
}

a, img {
  -webkit-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
}

#logo {
  width: 100%;
}

textarea:focus, input:focus, select:focus {
  outline: none;
}

.loader {
  position: fixed;
  height: 100%;
  width: 100%;
  background: var(--dark);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  flex-direction: column;
  top: 0;
}
.loader.disable {
  transition: opacity 0.3s;
  opacity: 0;
  pointer-events: none;
}

.fullyvideo {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  left: 0;
  top: 0;
  z-index: 1;
}

@media screen and (max-aspect-ratio: 1920/1080) {
  .fullyvideo {
    height: 100vh;
    height: 100svh;
  }
}
@media screen and (min-aspect-ratio: 1920/1080) {
  .fullyvideo {
    width: 100% !important;
  }
}
.full-height {
  height: 100vh;
  height: 100svh;
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: var(--gap);
  position: relative;
  z-index: 1;
  gap: 40px;
  position: absolute;
  top: 0;
  left: 0;
  background-size: cover;
}

/* General */
.row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.col {
  display: flex;
  flex-direction: column;
}

.reverse {
  flex-direction: row-reverse;
}

.justify-center {
  justify-content: center;
}

.justify-start {
  justify-content: flex-start;
}

.justify-end {
  justify-content: flex-end;
}

.space-between {
  justify-content: space-between;
}

.space-around {
  justify-content: space-around;
}

.space-evenly {
  justify-content: space-evenly;
}

.align-center {
  align-items: center;
}

.align-start {
  align-items: flex-start;
}

.align-end {
  align-items: flex-end;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.mb15 {
  margin-bottom: 15px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb40 {
  margin-bottom: 40px;
}

.mauto {
  margin-left: auto;
  margin-right: auto;
}

.fullwidth {
  width: 100%;
}

.fullheight {
  height: 100%;
}

.tac {
  text-align: center;
}

.ptxl {
  padding-top: var(--xl);
}

.ptl {
  padding-top: var(--l);
}

.ptm {
  padding-top: var(--m);
}

.pts {
  padding-top: var(--s);
}

.ptxs {
  padding-top: var(--xs);
}

.ptxxs {
  padding-top: var(--xxs);
}

.pbxl {
  padding-bottom: var(--xl);
}

.pbl {
  padding-bottom: var(--l);
}

.pbm {
  padding-bottom: var(--m);
}

.pbs {
  padding-bottom: var(--s);
}

.pbxs {
  padding-bottom: var(--xs);
}

.pbxxs {
  padding-bottom: var(--xxs);
}

.bg-light {
  background-color: var(--light);
}

.red {
  color: var(--red);
}

.border-b {
  border-bottom: 1px solid #E6DDD3;
}

.middle {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.gold {
  color: var(--gold);
}

/* Headings */
h1, h2, h3, h4, h5 {
  margin: 0;
  font-weight: normal;
}

h1 {
  font-family: "Miletus Grotesk Trial";
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

h2 {
  font-size: 20px;
  font-weight: 300;
}

h3 {
  font-family: "Miletus Grotesk Trial";
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.container {
  max-width: calc(100% - var(--gap) - var(--gap));
  margin: 0 auto;
}

.max500 {
  max-width: 560px;
  margin-bottom: 22vh;
  width: 55%;
}

.f16 {
  font-size: 16px;
}

.btn {
  width: -moz-max-content;
  width: max-content;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 0;
       column-gap: 0;
  row-gap: 0;
  flex-wrap: wrap;
  font-size: 15px;
  height: 45px;
  padding: 0 30px;
  background-color: var(--gold);
  color: var(--light);
  line-height: 1;
  text-transform: uppercase;
  border-radius: 5px;
  transition: background 0.4s;
  font-family: degular, sans-serif;
  font-weight: 500;
  letter-spacing: 0.08em;
}
.btn:hover {
  background-color: var(--dark);
}

footer {
  width: 100%;
  padding: 50px 0 70px 0;
}

.logos {
  -moz-column-gap: 25px;
       column-gap: 25px;
  padding-bottom: 45px;
}

.links {
  gap: 10px;
}

.mob {
  display: none;
}

.asp1-1 {
  width: 100%;
  aspect-ratio: 1/1;
}

#cursor {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 15px;
  height: 15px;
  z-index: 1000;
  pointer-events: none;
  transform: translate(-50%, -50%);
  color: var(--gold);
}
#cursor svg {
  display: block;
  width: 40px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.5s;
  transform-origin: top left;
}
#cursor svg path {
  fill: var(--gold);
}
#cursor:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 15px;
  height: 15px;
  z-index: 10;
  transform: scale(0.1) translate(-50%, -50%);
  background: #fff;
  border-radius: 50%;
  transition: all 0.5s;
}
#cursor.scale svg {
  transform: scale(0.1) translate(-50%, -50%);
}
#cursor.scale:after {
  transform: scale(1) translate(-50%, -50%);
}

#enquire {
  display: none;
  opacity: 0;
  min-height: 100vh;
  transition: opacity 0.7s;
  z-index: 10000;
  position: relative;
  background-color: var(--light);
  flex-direction: column;
  justify-content: space-between;
}

.Icon_Brown {
  display: block;
  margin-bottom: 60px;
  width: 50px;
}

label {
  display: block;
  font-weight: 500;
  width: 100px;
}

select {
  background-image: url(/images/buttons/arrow.svg);
  background-position: 97% center;
  background-repeat: no-repeat;
}

.register {
  width: 630px;
  max-width: 100%;
  position: relative;
  margin-bottom: 30px;
}

.tel {
  font-size: 20px;
  display: block;
}

input,
textarea,
select,
.upload-holder,
.post-holder {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  color: inherit;
  border-radius: 5px;
  border: 0.45px solid rgba(78, 65, 56, 0.5);
  font-family: "Miletus Grotesk Trial";
  font-weight: 300;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-align: left;
  color: rgba(78, 65, 56, 0.5);
  margin-bottom: 10px;
  padding: 15px 20px;
  line-height: 1;
  resize: none;
  width: 100%;
  display: block;
  width: 100%;
  text-transform: uppercase;
}

.b_submit {
  width: 100% !important;
  margin-top: 15px;
  text-align: center;
  text-transform: none;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
}

.form-row {
  padding-bottom: 15px;
  position: relative;
}

.err-message {
  color: red;
  font-size: 11px;
  position: absolute;
  bottom: 0;
  left: 0;
}

.spinner {
  position: absolute;
  text-align: center;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 5;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.5);
}

.spinner svg {
  animation: loading-rotate 2s linear infinite;
  height: 42px;
  width: 42px;
}

.spinner .path {
  stroke-dasharray: 90, 150;
  stroke-dashoffset: 0;
  stroke-width: 2;
  stroke: #fff;
  stroke-linecap: round;
  animation: loading-dash 1.5s ease-in-out infinite;
}

@keyframes loading-rotate {
  to {
    transform: rotate(1turn);
  }
}
@keyframes loading-dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -40px;
  }
  to {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -120px;
  }
}
input:-webkit-input-placeholder,
textarea:-webkit-input-placeholder {
  color: inherit;
  opacity: 0.5;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}

input:-moz-placeholder,
textarea:-moz-placeholder {
  color: inherit;
  opacity: 1;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
  color: inherit;
  opacity: 1;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

input:focus::-webkit-input-placeholder,
textarea:focus::-webkit-input-placeholder {
  color: transparent;
}

input:focus:-moz-placeholder,
textarea:focus:-moz-placeholder {
  color: transparent;
}

input:focus::-moz-placeholder,
textarea:focus::-moz-placeholder {
  color: transparent;
}

input:focus:-ms-input-placeholder,
textarea:focus:-ms-input-placeholder {
  color: transparent;
}

.check-holder {
  position: relative;
  padding: 15px 0;
}

.check-holder input {
  opacity: 0;
  left: 0;
  right: 0;
  position: absolute;
  z-index: 3;
  width: 100%;
  height: 100%;
  cursor: pointer;
  top: 0;
}

.check-holder input:checked + label:after {
  background-color: rgba(78, 65, 56, 0.5);
}

.check-holder label {
  padding-left: 30px;
  position: relative;
  width: 100%;
}

.check-holder label:before {
  position: absolute;
  left: 0;
  width: 20px;
  height: 20px;
  top: 50%;
  transform: translateY(-50%);
  border: 1px solid rgba(78, 65, 56, 0.5);
  content: "";
  display: block;
  border-radius: 50%;
}

.check-holder label:after {
  position: absolute;
  left: 4px;
  width: 12px;
  height: 12px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.5;
  content: "";
  display: block;
  border-radius: 50%;
}

.roco {
  display: block;
  width: 100%;
  margin-bottom: 15px;
}

.line {
  font-size: 12px;
  border-top: 1px solid rgba(78, 65, 56, 0.5);
  padding: 10px 0;
  font-family: "Miletus Grotesk Trial";
  font-weight: 300;
}

.close {
  position: absolute;
  right: var(--gap);
  top: 30px;
  display: flex;
  gap: 10px;
  transition: all 0.4s;
  align-items: center;
  line-height: 1;
  font-family: degular, sans-serif;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.close:hover {
  opacity: 0.7;
  gap: 5px;
}

.close img {
  width: 12px;
}

.thx {
  text-align: center;
  padding-top: calc(50vh - 200px);
}

.parsley-errors-list {
  list-style: none;
}

@media screen and (max-width: 1368px) {
  :root {
    --gap: 20px ;
  }
  h2 {
    font-size: 18px;
  }
}
@media screen and (max-width: 1000px) {
  body {
    text-align: center;
  }
  .desk {
    display: none;
  }
  .mob {
    display: block;
  }
  .bg-top {
    height: 100vh;
    height: 100svh;
    background-image: inherit;
    background-size: cover;
    width: 100%;
    background-position: 50% 75%;
    max-width: 100%;
    padding: 40px 0;
  }
  .full-height {
    padding: 0;
    height: auto;
    background-size: 0;
    height: auto;
    position: relative;
  }
  #logo {
    width: 480px;
    max-width: calc(100% - 40px);
    margin: auto;
  }
  .m-icon {
    margin: 0 auto 30px auto;
    width: 50px;
  }
  .max500 {
    max-width: 100%;
    position: relative;
    margin-bottom: 0;
    width: 100%;
    padding: 40px 20px;
    text-align: center;
  }
  h1 {
    font-size: 13px;
  }
  h2 {
    font-size: 18px;
  }
  .fixenq {
    display: flex;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
  }
  .close {
    display: none;
  }
  #enquire {
    display: block !important;
    opacity: 1 !important;
    z-index: 10;
    min-height: 50vh;
  }
  .register {
    margin: 0 auto 30px auto;
  }
  .grid_4,
  .grid_8 {
    width: 100%;
  }
  .Icon_Brown {
    margin: 0 auto 30px auto;
  }
  .graya {
    width: 60px;
    margin: 0 auto 60px auto;
  }
  .thx {
    text-align: center;
    padding: 30px 0;
  }
  #cursor {
    display: none;
  }
}