@font-face {
  font-family: "CaliforniaSansW90";
  src: url("/fonts/CaliforniaSansW90-Regular.eot");
  src: url("/fonts/CaliforniaSansW90-Regular.eot?#iefix") format("embedded-opentype"), url("/fonts/CaliforniaSansW90-Regular.woff2") format("woff2"), url("/fonts/CaliforniaSansW90-Regular.woff") format("woff"), url("/fonts/CaliforniaSansW90-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
:root {
  --header-height: 64px;
  --dark: #2A2D32;
  --sage: #585F4E;
  --gray: #505050;
  --light: #f5f3eb;
  --gap: 31px;
  --xs: 20px;
  --s: 34px;
  --m: 65px;
  --l: clamp(30px, 90px, 5vh);
  --xl: clamp(50px, 100px, 10vh);
  --xxl: clamp(60px, 190px, 12vh);
}

body {
  background: var(--light);
  color: var(--gray);
  text-align: center;
  font-family: "bely", serif;
  overflow-x: hidden;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.3;
}

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

.DM {
  font-family: "dm-sans", sans-serif;
}

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

h4.bg-dark {
  padding: 12px;
  width: 100%;
}

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

.grid_6 {
  width: calc(50% - var(--gap) * 0.5);
}

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-height {
  height: 100vh;
  color: var(--light);
  height: 100svh;
  width: 100%;
  background-position: center;
  background-size: cover;
  padding-top: 44px;
}

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

.team-flex {
  width: 1041px;
  gap: 100px 45px;
  padding-top: 15px;
}

.play-btn {
  position: relative;
  display: block;
}

.grid_4 {
  width: calc(33.33% - 30px);
}

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

.gap60 {
  gap: 45px;
}

.g10 {
  gap: 10px;
}

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

.reverse {
  display: flex;
  flex-direction: row-reverse;
  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;
}

.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: 34px;
}

.mb40 {
  margin-bottom: 42px;
}

.mb60 {
  margin-bottom: 60px;
}

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

.cap {
  text-transform: capitalize;
}

h1,
h2,
h4, h5 {
  font-family: "CaliforniaSansW90";
  font-weight: 400;
  text-transform: uppercase;
}

h1 {
  letter-spacing: 0.28em;
  font-size: clamp(32px, 90px, 9vw);
  transform: translateX(0.1em);
}
h1 span {
  display: block;
  font-size: 0.26em;
  letter-spacing: 0.25em;
  padding-top: 0.5em;
}

h2 {
  font-size: 34px;
  line-height: 1.2;
  letter-spacing: 0.15em;
}
h2.big {
  font-size: 36px;
}
h2.f40 {
  font-size: 40px;
  line-height: 1.1;
}

.l1 {
  letter-spacing: 0.1em;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 17px;
  letter-spacing: 0.25em;
}

h5 {
  font-size: 22px;
  line-height: 1;
  letter-spacing: 0.1em;
  color: var(--dark);
  white-space: nowrap;
}

h6 {
  letter-spacing: 0.2em;
  font-weight: 400;
  font-size: 14px;
  text-transform: uppercase;
  font-family: "dm-sans", sans-serif;
}

.f20 {
  font-size: 20px;
}

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

.btn {
  width: -moz-max-content;
  width: max-content;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 24px;
  padding: 0px 20px;
  line-height: 1;
  transition: all 0.4s;
  border-radius: 0;
  cursor: pointer;
  color: #000;
  background-color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: "dm-sans", sans-serif;
}

.mob {
  display: none !important;
}

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

.line {
  display: block;
  margin: auto;
  width: 0;
  transition: width 0.8s;
  height: 1px;
  background-color: var(--sage);
}
.line.animated {
  width: 100%;
}

.br {
  display: block;
}

.timeline {
  position: relative;
  font-size: 16px;
  padding-bottom: var(--xl);
}
.timeline h2 {
  line-height: 1;
}
.timeline:after {
  display: block;
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--sage);
  left: 50%;
  transform: translateX(-50%) scale(0);
  top: 0;
  position: absolute;
  top: 0;
  transition: transform 0.7s;
}
.timeline:before {
  display: block;
  content: "";
  width: 1px;
  height: 0;
  background-color: var(--sage);
  left: 0;
  right: 0;
  margin: auto;
  top: 20px;
  position: absolute;
  transition: height 0.7s;
}
.timeline.l-a {
  display: flex;
  justify-content: flex-end;
}
.timeline.l-a .grid_6 {
  padding: 0 0 0 15px;
}
.timeline .grid_6 {
  padding: 0 15px 0 0;
}
.timeline.animated::after {
  transform: translateX(-50%) scale(1);
}
.timeline.animated::before {
  height: calc(100% - 20px);
}
.timeline.no-bef::before {
  display: none;
}

footer {
  background-color: var(--sage);
  color: var(--light);
  position: relative;
  font-family: "dm-sans", sans-serif;
  font-size: 12px;
}
footer .container {
  padding: 22px 0;
  border-top: 1px solid var(--light);
}

.social, .links {
  gap: 18px;
}

header {
  position: fixed;
  height: var(--header-height);
  left: 0;
  top: 0;
  width: 100%;
  z-index: 5;
  padding: 0 var(--gap);
}

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

#enquire {
  background-color: var(--sage);
  color: var(--light);
  padding: 106px var(--gap) 121px var(--gap);
}

.formbox {
  width: 380px;
  max-width: 100%;
  margin: auto;
}

input:not([type=submit]),
textarea,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  color: inherit;
  border: none;
  font-family: "dm-sans", sans-serif;
  font-size: 15px;
  font-weight: 300;
  padding: 12px 0 11px;
  line-height: 1;
  resize: none;
  display: block;
  width: 100%;
  border: none;
  border-bottom: 1px solid currentColor;
  color: var(--light);
  text-align: center;
}

select {
  -moz-text-align-last: center;
       text-align-last: center;
  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: var(--white);
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
  color: var(--white) !important;
}

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

.b_submit {
  margin: 17px auto 10px auto;
  background: transparent;
  border: 1px solid currentColor;
  color: var(--light);
  height: 32px;
  min-width: 136px;
  text-transform: none;
}

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: red;
  position: absolute;
  bottom: -15px;
}

li {
  list-style: none;
}

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

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

p.DM {
  font-family: "dm-sans", sans-serif;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 55px;
}

@media screen and (max-width: 768px) {
  :root {
    --l: 40px;
    --xl: 60px;
    --m: 40px;
    --gap: 15px;
  }
  body {
    font-size: 16px;
  }
  h2.big, h2.f40 {
    font-size: 28px;
  }
  h2 {
    font-size: 24px;
  }
  h3 {
    font-size: 18px;
  }
  .br {
    display: none;
  }
  .form-field {
    width: 100%;
  }
  .grid_6 {
    width: 100%;
  }
  .grid_4 {
    width: 100%;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
  .box {
    padding: 60px 0 0 0;
  }
  h5 {
    font-size: 18px;
    white-space: initial;
  }
  h6 {
    font-size: 13px;
  }
  .desk {
    display: none !important;
  }
  .timeline::before, .timeline::after {
    left: 0;
    right: auto;
  }
  .r-a {
    text-align: left;
    padding-left: 15px;
    padding-right: 0;
  }
  footer .container {
    padding: 60px 0;
  }
  footer .flex {
    justify-content: center;
    padding-bottom: 10px;
  }
  footer h4 {
    font-size: 14px;
  }
  footer .team-flex {
    padding-top: 0;
    gap: 50px;
  }
  footer .logo-f {
    position: relative;
    display: block;
    transform: none;
    margin: 0 auto 40px auto;
    left: auto;
    right: auto;
    max-width: 90%;
  }
  #enquire {
    padding: 60px var(--gap);
  }
}/*# sourceMappingURL=style.css.map */