@font-face {
  font-family: "Nourd";
  src: url("Nourd-Light.woff2") format("woff2"), url("Nourd-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Nourd";
  src: url("Nourd-Heavy.woff2") format("woff2"), url("Nourd-Heavy.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Nourd";
  src: url("/fonts/Nourd-Bold.woff2") format("woff2"), url("/fonts/Nourd-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Nourd";
  src: url("/fonts/Nourd-Medium.woff2") format("woff2"), url("/fonts/Nourd-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Nourd";
  src: url("/fonts/Nourd-SemiBold.woff2") format("woff2"), url("/fonts/Nourd-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Nourd";
  src: url("/fonts/Nourd-Regular.woff2") format("woff2"), url("/fonts/Nourd-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
:root {
  --gap: 70px;
  --header-height: 100px;
  --banner-height: 0;
  --mocha: #7e6951;
  --black: #000000;
  --gold: #dfc388;
  --white: #FFFFFF;
  --nude: #c8b8ae;
  --light:#f4f1ef;
  --col-gap:30px;
}

body {
  margin: 0;
  font-weight: normal;
  font-size: 18px;
  line-height: 1.66;
  text-align: center;
  color: var(--mocha);
  background-color: rgba(200, 184, 174, 0.2);
  font-family: "Nourd";
  padding: calc(var(--header-height) + var(--banner-height)) 0 0 0;
}

*,
*:before,
*:after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -moz-text-size-adjust: none;
       text-size-adjust: none;
  -webkit-text-size-adjust: none;
  outline: none !important;
}

section {
  position: relative;
}

.container {
  max-width: calc(100% - var(--col-gap) - var(--col-gap));
  width: 1380px;
  margin: 0 auto;
}
.container.medium {
  width: 1220px;
}
.container.w840 {
  width: 840px;
}
.container.small {
  width: 800px;
}

.max875 {
  max-width: 875px;
  margin-left: auto;
  margin-right: auto;
}

.grid_1 {
  width: 8.33%;
}

.grid_2 {
  width: 16.67%;
  width: calc(16.6666666667% - 25px);
  margin-right: 30px;
  margin-bottom: 40px;
}
.grid_2:last-child {
  margin-right: 0;
}

.grid_3 {
  width: calc(25% - 0.75 * var(--col-gap));
  margin-bottom: var(--col-gap);
}

.grid_4 {
  width: calc(33.3% - 0.66 * var(--col-gap));
}

.grid_5 {
  width: 41.6%;
}

.grid_6 {
  width: 50%;
}

.grid_7 {
  width: 58.4%;
}

.grid_8 {
  width: 66.67%;
}

.grid_9 {
  width: 75%;
}

.grid_10 {
  width: 83.33%;
}

.grid_11 {
  width: 91.67%;
}

.grid_12 {
  width: 100%;
}

.f14 {
  font-size: 14px;
}

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

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

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

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

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

.bold {
  font-weight: 700;
}

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

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

/* General */
/* Headings */
h1,
h2,
h3,
h4,
h5 {
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

h1, h2 {
  font-size: 60px;
}
h1.pbm, h2.pbm {
  padding-bottom: calc(0.75 * var(--gap));
}

h3 {
  font-size: 36px;
}

h4 {
  font-size: 22px;
  line-height: 2.1;
}

.center-content h4 {
  text-transform: none;
}

/* Navigation */
.leftalign {
  text-align: left;
}

#nav-toggle {
  width: 24px;
  height: 7px;
  position: absolute;
  transform: translateY(-50%);
  z-index: 10;
  right: 0;
  display: none;
}

#nav-toggle::after, #nav-toggle::before {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--mocha);
  position: absolute;
  left: 0;
  top: 0;
  transform-origin: left top;
  transition: all 0.5s;
}

#nav-toggle::after {
  top: 100%;
  transform-origin: left bottom;
}

#nav-toggle.active::after {
  transform: rotate(-45deg);
  background-color: var(--mocha);
}

#nav-toggle.active::before {
  transform: rotate(45deg) translate(-6px, -6px);
  background-color: var(--mocha);
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  width: 100%;
  padding: 0;
  z-index: 1000;
  background-color: var(--white);
  border-bottom: 1px solid rgba(242, 111, 61, 0.3);
  position: fixed;
  top: 0;
  left: 0;
  line-height: 1;
}

.navigation {
  padding: var(--col-gap);
  height: var(--header-height);
  background-color: var(--white);
  align-items: center;
}
.navigation .logo {
  max-width: 230px;
  margin-right: auto;
}
.navigation .businesshours {
  text-align: right;
}
.navigation .businesshours b {
  display: block;
  margin-bottom: 5px;
}
.navigation nav {
  display: flex;
  justify-content: center;
  align-items: center;
  width: -moz-max-content;
  width: max-content;
  padding: 0 0;
  overflow: hidden;
}
.navigation nav ul {
  list-style-type: none;
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 25px;
       column-gap: 25px;
}
.navigation nav ul li a {
  border-bottom: 1px solid transparent;
  display: block;
  transition: 0.5s;
  -webkit-transition: 0.5s;
}
.navigation nav ul li a.active, .navigation nav ul li a:hover {
  border-color: inherit;
  border-bottom: 1px solid;
}

.banner {
  width: 100%;
  padding: var(--col-gap);
  height: var(--banner-height);
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--gold);
  color: var(--white);
  font-weight: 700;
}
.banner p {
  text-align: center;
  display: flex;
}
.banner p span {
  display: block;
  margin-right: 2em;
}
.banner p span:last-child {
  margin-right: 0;
}
.banner p span:first-child {
  margin-left: 2em;
}

/* nav-toggle */
#nav-toggle {
  margin-right: 20px;
}
#nav-toggle > span:last-child {
  display: none;
}
#nav-toggle.active > span:first-child {
  display: none;
}
#nav-toggle.active > span:last-child {
  display: block;
}

nav[style*="display: block"] {
  display: flex !important;
}

/* enquiry */
.formbox {
  display: block;
  max-width: 750px;
  padding: 100px 0 0;
  width: 100%;
}
.formbox .grid_6 {
  width: calc(50% - 10px);
}

.privacy {
  font-size: 12px;
  line-height: 1.4;
}

input,
select,
textarea,
label {
  width: 100%;
  border: 0 none;
  background: transparent;
  border-radius: 0;
  text-align: left;
  padding: 40px 0 10px;
  font-size: 18px;
  border-bottom: 1px solid var(--mocha);
}
input option,
select option,
textarea option,
label option {
  padding: 10px 0;
  text-align-last: left;
  text-align: left;
  -ms-text-align-last: left;
  -moz-text-align-last: left;
  text-align-last: left;
  color: var(--mocha);
}

.check-box-wrapper {
  margin-bottom: 10px;
  padding-bottom: 10px;
}

.check-box-wrapper {
  border-bottom: 1px solid var(--mocha);
}

.check-box-holder {
  width: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: auto;
}
.check-box-holder .check-boxes {
  margin-bottom: 0;
}

.chk_holder {
  margin: auto 0 0 0;
  color: var(--white);
  width: 100%;
  text-align: left;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--mocha);
}

.checkboxes {
  border: 0 none;
  clip: rect(0px, 0px, 0px, 0px);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  cursor: pointer;
  display: inline-block;
  line-height: 25px;
  width: 20px;
  text-align: center;
}

.checkboxes + label {
  padding: 2px 0 2px 32px;
  position: relative;
  text-align: center;
  display: block;
  display: inline;
  margin: auto;
  border-bottom: 0 none;
}

.checkboxes + label:before {
  position: absolute;
  left: 0;
  width: 1.25em;
  height: 1.25em;
  top: 50%;
  transform: translateY(-50%);
  border: 1px solid var(--mocha);
  content: "";
  display: block;
}

.checkboxes + label:after {
  position: absolute;
  left: 0;
  width: 5px;
  height: 9px;
  top: 50%;
  left: 8px;
  transform: translateY(-60%) rotate(45deg) scale(0);
  border-bottom: 2px solid var(--mocha);
  border-right: 2px solid var(--mocha);
  content: "";
  display: block;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
}

.checkboxes:checked + label:after {
  transform: translateY(-60%) rotate(45deg) scale(1);
}

input:-webkit-input-placeholder,
textarea:-webkit-input-placeholder {
  color: var(--mocha);
  opacity: 1;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: var(--mocha);
  opacity: 1;
}

input:-moz-placeholder,
textarea:-moz-placeholder {
  color: var(--mocha);
  opacity: 1;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
  color: var(--mocha);
  opacity: 1;
}

input:focus::-webkit-input-placeholder,
textarea:focus::-webkit-input-placeholder {
  opacity: 0.5;
}

input:focus:-moz-placeholder,
textarea:focus:-moz-placeholder {
  opacity: 0.5;
}

input:focus::-moz-placeholder,
textarea:focus::-moz-placeholder {
  opacity: 0.5;
}

input:focus:-ms-input-placeholder,
textarea:focus:-ms-input-placeholder {
  opacity: 0.5;
}

#au_postcode,
#int_postcode,
#enquiryInternational1_HowDidYouHearHolder,
#enquiry1_HowDidYouHearHolder {
  width: 100%;
}

/* Token Style */
ul.token-input-list-project {
  border: none;
  width: 100%;
  max-width: 100%;
  text-align: left;
  -moz-text-align-last: left;
       text-align-last: left;
  text-align: -moz-left;
  text-align: -webkit-left;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0;
  clear: both;
}

li.token-input-input-token-project {
  margin: 0;
  padding: 0;
  list-style-type: none;
  width: 100%;
}

ul.token-input-list-project li input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100% !important;
}

li.token-input-token-project p {
  display: inline;
  padding: 0;
  margin: 0 5px 0 0;
  line-height: 20px;
  font-size: 11px;
}

li.token-input-token-project {
  overflow: hidden;
  height: 25px;
  margin: 0;
  padding: 2px 5px;
  background-color: #ccc;
  color: #000;
  cursor: default;
  border: 1px solid #525252;
  font-size: 12px;
  white-space: nowrap;
  list-style: none;
  display: inline-block;
}

div.token-input-dropdown-project {
  position: absolute;
  width: 100%;
  background-color: var(--white);
  overflow-x: hidden;
  cursor: default;
  font-size: 11px;
  z-index: 13;
  color: #000000;
}

div.token-input-dropdown-project ul {
  margin: 0;
  padding: 0;
  display: block !important;
  max-height: 205px;
}

div.token-input-dropdown-project ul li {
  background-color: var(--white);
  font-size: 14px;
  padding: 3px;
  margin: 0;
  list-style-type: none;
  font-weight: 100 !important;
}

div.token-input-dropdown-project ul li.token-input-dropdown-item-project {
  background-color: var(--white);
}

div.token-input-dropdown-project ul li.token-input-dropdown-item2-project {
  background-color: var(--white);
}

div.token-input-dropdown-project ul li em {
  font-weight: bold;
  font-style: normal;
}

div.token-input-dropdown-project ul li.token-input-selected-dropdown-item-project {
  background-color: #ccc;
  color: var(--white);
}

/* Parsley-error */
ul.parsley-errors-list.filled,
ul.parsley-errors-list {
  font-size: 10px;
  list-style: outside none none;
  margin: 0 auto;
  padding: 0;
  position: relative;
  text-align: left;
  top: 0;
  line-height: 1em;
  transform: translateY(-1.2em);
  -webkit-transform: translateY(-1.2em);
  -moz-transform: translateY(-1.2em);
  -ms-transform: translateY(-1.2em);
  -o-transform: translateY(-1.2em);
}

ul.parsley-errors-list.filled li,
ul.parsley-errors-list li {
  padding: 0;
  text-align: left;
  color: #f00d0d;
  letter-spacing: 2px;
}

.bg-creamlayer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f9f6f1;
  opacity: 0.6;
}

p.absolute {
  color: #fff;
  font-weight: bold;
  font-size: 36px;
}

/*footer*/
.no-intsa #instagram {
  display: none;
}

footer {
  display: flex;
  background-color: var(--gold);
  width: 100%;
  padding: 45px 0 60px;
  color: var(--white);
  text-align: left;
}

.content-holder {
  padding-left: 20px;
  padding-right: 20px;
}

.btn {
  text-decoration: underline;
  font-size: 16px;
  line-height: 1.5em;
  text-align: center;
  background-color: var(--white);
  text-decoration: underline;
  padding: 18px 20px;
  min-width: 200px;
  width: -moz-max-content;
  width: max-content;
  margin: auto;
  color: var(--mocha);
  display: flex;
  justify-content: center;
  cursor: pointer;
}
.btn.b-submit {
  background-color: var(--mocha);
  min-width: 125px;
  color: #fff;
  margin: 0;
}

.services {
  display: block;
}
.services span {
  display: block;
  text-align: left;
}
.services span.services-desc {
  padding: 20px;
  background-color: var(--nude);
  min-height: 7em;
}

.icon-container .icons {
  margin: auto auto 40px;
}
.icon-container .icons-title {
  display: block;
  margin-top: auto;
  height: 3em;
}

form .half {
  width: calc(50% - 15px);
}
form .check-box-holder {
  width: 100%;
}
form .check-box-holder label {
  text-align: left;
}
form textarea {
  min-height: 150px;
  resize: none;
}
form input,
form textarea {
  padding: 15px;
  border: 1px solid var(--mocha);
  line-height: 1.4em;
}
form input[type=submit] {
  border: none;
}

.search-bar {
  width: 600px;
  max-width: 90%;
  margin: auto;
  position: relative;
}
.search-bar label {
  width: -moz-max-content;
  width: max-content;
  margin-left: auto;
  margin-right: auto;
  border: none;
  font-family: "Apercu Pro";
  font-weight: normal;
  font-size: 14px;
  line-height: 1.5em;
  text-align: center;
  color: #f26f3d;
  padding: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  transition: 0.3s;
}
.search-bar input[type=text] {
  background-image: url(/images/svg/Search-Lamp.svg);
  background-position: right 85%;
  background-repeat: no-repeat;
  background-size: 18px;
  padding: 4px 0;
  border: 1px solid transparent;
  border-bottom: 1px solid #f26f3d;
  overflow: hidden;
}
.search-bar input[type=submit] {
  padding: 4px 10px;
  border: 1px solid #f26f3d;
  background-color: #f26f3d;
  color: #f9f6f1;
  cursor: pointer;
  width: -moz-max-content;
  width: max-content;
  position: absolute;
  right: 0;
  bottom: 0;
  max-height: 100%;
  transition: 0.3s;
  opacity: 0;
  pointer-events: none;
  border-radius: 5px;
}
.search-bar input[type=text]:focus {
  border: 1px solid #f26f3d;
  background-image: none;
  padding-left: 10px;
  border-radius: 5px;
}
.search-bar input[type=text]:focus + label {
  opacity: 0.2;
}
.search-bar input[type=text]:focus + label + input[type=submit] {
  opacity: 1;
  pointer-events: initial;
}

.search-box {
  margin-top: 40px;
}
.search-box .btn {
  font-size: 12px;
  padding: 8px 12px;
  min-width: initial;
  width: -moz-max-content;
  width: max-content;
  color: #4D4D4F;
  transition: 0.3s;
  margin: 0 4px;
  text-transform: initial;
}
.search-box .btn:hover, .search-box .btn.active {
  background-color: #f26f3d;
  color: #f9f6f1;
}

.stores {
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}
.stores img {
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1/1;
}
.stores .store-info {
  display: flex;
  flex-direction: column;
  padding: 20px;
  font-size: 14px;
  line-height: 1.2em;
}
.stores .store-info span {
  padding-top: 4px;
}
.stores .store-info span.store-name {
  font-size: 16px;
}
.stores:hover {
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}

.brand-logo {
  width: 300px;
  max-width: 80%;
}

.social-media {
  display: block;
  margin-bottom: 10px;
  font-weight: normal;
  font-size: 18px;
  line-height: 1.5em;
  text-align: left;
  color: var(--balck);
}
.social-media:last-child {
  margin-bottom: 0;
}
.social-media img {
  margin-right: 10px;
}

/* ------ */
.half {
  width: 50%;
}

.bg {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.flex,
.row {
  display: flex;
  position: relative;
}

.column {
  flex-direction: column;
}

.g15 {
  gap: var(--col-gap);
}

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

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

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

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

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

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

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

.left-align {
  text-align: left;
}

.underline {
  text-decoration: underline;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.mta {
  margin-top: auto;
}

.mla {
  margin-left: auto;
}

.mra {
  margin-right: auto;
}

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

.mtba {
  margin-top: auto;
  margin-bottom: auto;
}

.m0 {
  margin: 0;
}

.ma {
  margin: auto;
}

.mbm {
  margin-bottom: 70px;
}

.mr38 {
  margin-right: 38px;
}

.pl38 {
  padding-left: 38px;
}

.pr38 {
  padding-right: 38px;
}

.plr20 {
  padding-left: 20px;
  padding-right: 20px;
}

.pl120 {
  padding-left: 120px;
}

.pr120 {
  padding-right: 120px;
}

.ptxl {
  padding-top: 270px;
}

.pbxl {
  padding-bottom: 270px;
}

.mb15 {
  margin-bottom: 15px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb45 {
  margin-bottom: 45px;
}

.ptl {
  padding-top: calc(2 * var(--gap));
}

.pbl {
  padding-bottom: calc(2 * var(--gap));
}

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

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

.pts {
  padding-top: 40px;
}

.pbs {
  padding-bottom: 40px;
}

.mts {
  margin-top: 40px;
}

.mbs {
  margin-bottom: 40px;
}

.ptxs {
  padding-top: 15px;
}

.pbxs {
  padding-bottom: 20px;
}

.mbxs {
  margin-bottom: 20px;
}

.ptxxs {
  padding-top: 10px;
}

.pbxxs {
  padding-bottom: 10px;
}

.plr20 {
  padding-right: 20px;
  padding-left: 20px;
}

.fit-content {
  width: -moz-fit-content;
  width: fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
}

.full-width {
  width: 100%;
}

.full-height {
  height: 100%;
}

.full-vh {
  height: 100vh;
}

.aspect1by1 {
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}

.aspect3by2 {
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
}

.wrap {
  flex-wrap: wrap;
}

.abs {
  position: absolute;
}

.ofh {
  overflow: hidden;
}

.hidden {
  visibility: hidden;
}

.just-mobile {
  display: none;
}

.mw600 {
  width: 600px;
  max-width: 100%;
}

#metro.metro-icon {
  margin-right: 15px;
}
#metro .grid_12 .stations {
  font-size: 14px;
}

@media screen and (max-width: 1000px) {
  :root {
    --gap: 40px;
    --header-height: 60px;
    --col-gap: 20px;
  }
  body {
    font-size: 15px;
    padding: var(--banner-height) 0 0 0;
  }
  .banner {
    display: none;
  }
  h1, h2 {
    font-size: 29px;
  }
  h3 {
    font-size: 26px;
  }
  #nav {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    width: 100%;
    position: absolute;
    height: calc(100vh - var(--header-height));
    top: var(--header-height);
    transform: translateX(-100%);
    left: 0;
    transition: transform 0.7s;
  }
  #nav.active {
    transform: translateX(0);
  }
  .navigation nav ul {
    flex-wrap: wrap;
  }
  #nav li {
    display: block;
    width: 100%;
    padding: 8px 0;
    text-align: center;
  }
  .navigation nav ul li a {
    width: -moz-max-content;
    width: max-content;
    margin: auto;
  }
  #nav-toggle {
    display: block;
  }
  #logo {
    width: 160px;
  }
  .businesshours {
    display: none;
  }
  .grid_4 {
    width: 100%;
  }
  .flex, .row {
    flex-wrap: wrap;
  }
  .column {
    width: 100%;
    margin-bottom: var(--gap);
  }
  .fit-content {
    max-width: 100%;
  }
  .sq-mob {
    aspect-ratio: 1/1;
    -o-object-position: center;
       object-position: center;
    -o-object-fit: cover;
       object-fit: cover;
  }
  form .half {
    width: 100%;
  }
  form input {
    margin-bottom: 10px;
  }
  form .pbxs {
    padding-bottom: 0;
  }
  h4 {
    font-size: 16px;
  }
  input, select, textarea, label {
    font-size: 15px;
  }
}/*# sourceMappingURL=style.css.map */