@font-face {
  font-family: "Matter-TRIAL";
  src: url("/fonts/Matter-Regular.woff2") format("woff2"), url("/fonts/Matter-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Matter-TRIAL";
  src: url("/fonts/Matter-SemiBold.woff2") format("woff2"), url("/fonts/Matter-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Matter-TRIAL";
  src: url("/fonts/Matter-Light.woff2") format("woff2"), url("/fonts/Matter-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
:root {
  --header-height: 50px;
  --dark: #1E3A2B;
  --light: #EBE5D7;
  --grey:#8A997A;
  --spn: 50px;
  --gap:70px;
  --xs: 20px;
  --s: 34px;
  --m: 50px;
  --l: 100px;
  --xl: clamp(50px, 1490px, 8vh);
  --xxl: clamp(60px, 190px, 16vh);
}

body {
  background: var(--light);
  color: var(--dark);
  text-align: left;
  font-family: "Matter-TRIAL";
  overflow-x: hidden;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
}

.white {
  color: #fff;
}

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

.grid_4 {
  width: 33.33%;
}

.grid_6 {
  width: 50%;
}

a,
button {
  text-decoration: none;
  cursor: pointer;
  color: inherit;
  outline: none;
  background: transparent;
  border: none;
}

img {
  border: none;
  max-width: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

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

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

.fit-obj {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.full-width {
  width: 100%;
  height: auto;
}

.abs {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.full-h {
  max-height: calc(100vh - var(--spn) - var(--gap));
  max-height: calc(100svh - var(--spn) - var(--gap));
  min-width: 100%;
}

.min-h {
  min-height: calc(100vh - var(--spn) - var(--gap));
  min-height: calc(100svh - var(--spn) - var(--gap));
}

.full-height {
  height: 100vh;
  color: #fff;
  height: 100svh;
  width: 100%;
  background-position: center;
  background-size: cover;
  padding: 30px;
}

.dark-layer::after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
}

/* General */
.gap {
  gap: var(--gap);
}

.flex {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

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

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

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

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

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

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

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

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

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

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

.c_a {
  text-align: center;
}

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

.r-a {
  text-align: right;
}

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

.stretch {
  align-self: stretch;
}

.relative {
  position: relative;
  z-index: 2;
}

.mb10 {
  margin-bottom: 10px;
}

.mb15 {
  margin-bottom: 15px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb25 {
  margin-bottom: 26px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb40 {
  margin-bottom: 42px;
}

.mb50 {
  margin-bottom: 52px;
}

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

.fullwidth {
  width: 100%;
}

.fullheight {
  height: 100%;
}

.pad-g {
  padding: var(--gap);
}

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

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

.ptxxl {
  padding-top: var(--xxl);
}

.pbxxl {
  padding-bottom: var(--xxl);
}

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

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

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

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

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

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

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

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

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

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

.uppercase {
  text-transform: uppercase;
}

.o-hidden {
  overflow: hidden;
}

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

.box {
  padding: 108px 0 103px 0;
}

section {
  position: relative;
  background-color: inherit;
  z-index: 2;
}

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

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

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

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

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

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

.cap {
  text-transform: capitalize;
}

h1,
h2 {
  font-family: "miller-banner-compressed", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(30px, 70px, 11vw);
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.title {
  font-family: "archivo", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

h3 {
  font-family: "Matter-TRIAL";
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
}

.container {
  max-width: calc(100% - var(--gap) * 2);
  margin: 0 auto;
}
.container.w1186 {
  width: 1186px;
  text-align: center;
}
.container.w1186 h2 {
  line-height: 0.9;
  text-transform: none;
  margin-bottom: 5px;
}

.border-r {
  border-right: 1px solid var(--grey);
}

.btn {
  width: -moz-max-content;
  width: max-content;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  padding: 0px 41.5px;
  line-height: 1;
  transition: all 0.4s;
  border-radius: 0;
  border: 1px solid currentColor;
  cursor: pointer;
  font-size: 14px;
  min-width: 248px;
}

.mob {
  display: none !important;
}

.fadeIn {
  transition: opacity 1s;
  opacity: 0;
}
.fadeIn.animated {
  opacity: 1;
}

.line {
  display: block;
  height: 1px;
  background-color: var(--dark);
  width: 100%;
}
.line.grey {
  background-color: var(--grey);
}

.pad-r {
  padding-right: 20px;
}

.pad-l {
  padding-left: 20px;
}

.pad-rl {
  padding: 0 10px;
}

.landing .spn {
  background-color: #fff;
}

footer {
  position: relative;
}
footer a {
  display: block;
}
footer {
  color: #fff;
}

.f12 {
  font-size: 12px;
}

.legal {
  gap: 60px;
}

.border-b {
  padding: 20px 15px;
  border-bottom: 1px solid var(--grey);
  display: flex;
}
.border-b.active {
  background-color: var(--grey);
}

.w40 {
  width: 34%;
  text-align: left;
}

.w20 {
  width: 22%;
  text-align: left;
}

.path {
  fill: var(--grey);
  opacity: 0;
}
.path.active {
  opacity: 1;
}

.to-hover {
  cursor: pointer;
}

.g80 {
  gap: 100px;
  padding-right: 30px;
}

.logos {
  gap: 100px;
}

.trn {
  margin-top: -84px;
}

header {
  position: fixed;
  height: var(--header-height);
  left: 0;
  top: 0;
  width: 100%;
  z-index: 5;
  color: #fff;
  padding-left: 30px;
  border-bottom: 1px solid #fff;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0) 100%);
}
header.bg {
  color: var(--dark);
  background: var(--light);
  border-bottom: 1px solid var(--dark);
}
header.bg .enq {
  border-left: 1px solid var(--dark);
}

.logo {
  display: block;
  width: 168px;
}
.logo svg {
  width: 100%;
  height: auto;
}
.logo svg path {
  fill: currentColor;
}

.enq {
  display: flex;
  height: var(--header-height);
  border-left: 1px solid #fff;
  justify-content: center;
  align-items: center;
  color: var(--dark);
  width: 157px;
  text-align: center;
}

#enquire {
  padding: 156px 0 100px 0;
}

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

.register {
  max-width: 784px;
  margin: auto;
}

input:not([type=submit]),
textarea,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  color: #fff;
  border: none;
  font-family: inherit;
  font-size: 16px;
  padding: 24px 0 7px 0;
  border-bottom: 1px solid #8A997A;
  margin-bottom: 16px;
  resize: none;
  display: block;
  width: 100%;
  text-align: left;
}

select {
  -moz-text-align-last: left;
       text-align-last: left;
  background-position: 95% center;
  background-repeat: no-repeat;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-text-fill-color: #fff;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
  color: #fff !important;
}

.grid_12 {
  position: relative;
}

option {
  color: var(--light);
  background-color: var(--sage);
}

.b_submit {
  max-width: 100%;
  margin-bottom: 10px;
  border: none;
  background-color: transparent;
  border: 1px solid var(--grey);
  color: var(--grey);
}

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

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;
}

.privacy {
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.05em;
  text-decoration: underline;
  text-transform: uppercase;
}

.parsley-errors-list {
  list-style: none;
  font-size: 10px;
  color: #fff;
  position: absolute;
  bottom: -15px;
}

li {
  list-style: none;
}

.token-input-dropdown-project {
  background-color: var(--dark);
}

.token-input-token-project {
  display: flex;
  gap: 2px;
}

.check-holder {
  position: relative;
}

.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: var(--grey);
}

.check-holder label {
  padding-left: 72px;
  position: relative;
  margin: 20px 0 32px;
  font-weight: 300;
  display: block;
}

.check-holder label:before {
  position: absolute;
  left: 0;
  width: 40px;
  height: 40px;
  top: 0%;
  border: 1px solid var(--grey);
  content: "";
  display: block;
}

.check-holder label:after {
  position: absolute;
  left: 4px;
  width: 32px;
  height: 32px;
  top: 4px;
  content: "";
  display: block;
}

.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
  z-index: 1;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: "";
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
  width: 100%;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.slick-arrow {
  font-family: inherit;
  position: absolute;
  width: -moz-max-content;
  width: 114px;
  height: 17px;
  background-size: cover;
  bottom: -34px;
  transform: none;
  display: block;
  right: 0;
  background-image: url(/images/buttons/next.svg);
  border: none;
  cursor: pointer;
  z-index: 1;
  font-size: 0;
}
.slick-arrow.slick-prev {
  background-image: url(/images/buttons/prev.svg);
  right: 134px;
}

.pad-l {
  padding-left: 20px;
}

.pad-r {
  padding-left: 20px;
}

.multi-slider {
  transform: translateX(-10px);
  padding-top: 30px;
  width: calc(100% + 20px);
}
.multi-slider .slick-arrow {
  top: 0;
  bottom: auto;
  right: 5px;
}
.multi-slider .slick-arrow.slick-prev {
  right: 139px;
}

.slider-holder {
  position: relative;
}

.counter {
  padding-top: 12px;
  display: block;
  font-weight: 300;
}

@media screen and (max-width: 1300px) {
  :root {
    --gap: 30px;
  }
  .trn {
    margin-top: 0;
  }
}
@media screen and (max-width: 1000px) {
  :root {
    --gap: 20px;
    --header-height:35px ;
  }
  body {
    font-size: 13px;
  }
  header {
    padding-left: var(--gap);
  }
  .enq {
    width: 120px;
  }
  .title {
    font-size: 13px;
  }
  .logo {
    width: 120px;
  }
  .grid_6, .grid_4 {
    width: 100%;
  }
  .border-r {
    border: none;
  }
  .btn {
    height: 40px;
    min-width: 200px;
  }
  .gap-m {
    gap: 10px;
  }
  .pad-l {
    padding: 30px 0 0 0;
    margin: 0;
  }
  .pad-r {
    padding: 10px 0 0 0;
  }
  .slick-arrow {
    width: 57px;
    height: 8.5px;
    bottom: -25px;
  }
  .slick-arrow.slick-prev {
    right: 70px;
  }
  .multi-slider .slick-arrow {
    right: 10px;
  }
  .multi-slider .slick-arrow.slick-prev {
    right: 80px;
  }
  .border-b {
    padding: 15px 10px;
  }
  .full-m {
    max-width: 100%;
    padding-bottom: 0;
  }
  .full-m .title, .full-m p {
    font-size: 11px;
    letter-spacing: 0.1em;
  }
  .pad-m {
    padding: 0 var(--gap);
  }
  .w40, .w20 {
    width: 25%;
  }
  .w20 {
    text-align: right;
  }
  .icon-holder {
    flex-direction: column;
    gap: 40px;
  }
  .icon-holder .mb50 {
    margin-bottom: 40px;
  }
  .g80 {
    gap: 40px;
    padding-top: 40px;
  }
  .b_submit {
    width: 100%;
  }
  #enquire {
    padding: 80px 0 60px 0;
  }
  .logos {
    gap: 20px;
  }
  .logos a {
    max-width: calc(50% - 10px);
  }
  .logos img {
    height: auto;
    max-width: 75%;
    margin: auto;
  }
}/*# sourceMappingURL=style.css.map */