:root {
  --creame: #F2EDDD;
  --gap: 30px;
  --white: #ffffff;
  --dark: #111111;
  --padding: 165px;
  --header-height: 70px ;
}

@font-face {
  font-family: "Denton";
  src: url("/fonts/Denton-Regular.woff2") format("woff2"), url("/fonts/Denton-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
body {
  font-size: 16px;
  background: inherit;
  color: var(--creame);
  background-color: var(--dark);
  margin: 0;
  padding: 0;
  font-family: "franklin-gothic-urw", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.25;
  text-align: center;
  background-color: var(--dark);
}

.f14 {
  font-size: 0.875em;
}

strong {
  font-weight: 500;
}

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

.container {
  display: block;
  position: relative;
  width: calc(100% - var(--gap) - var(--gap));
  margin: auto;
  z-index: 2;
}

section {
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.full-h {
  height: calc(100vh - var(--header-height));
  background-size: cover;
}

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

.sticky {
  position: sticky;
  top: var(--header-height);
}
.sticky.gr6 {
  align-items: flex-start;
}
.sticky .inner-img:first-child {
  opacity: 1 !important;
}

.gr_half {
  width: calc(50% - 0.5 * var(--gap));
  margin-bottom: var(--gap);
  position: relative;
  display: block;
  background-size: cover;
  opacity: 0;
  transition: opacity 0.5s;
  text-align: left;
}
.gr_half.loaded {
  opacity: 1;
}

.innerSpn {
  display: block;
  background-size: cover;
  margin-bottom: 10px;
}

.project-name {
  font-family: "Denton";
  font-size: 40px;
  margin-bottom: 10px;
  display: block;
  line-height: 1;
}

.project-det {
  padding: 10px 0;
  border-top: 1px solid;
  border-bottom: 1px solid;
  display: flex;
  width: 100%;
  justify-content: space-between;
}

.gr2 {
  width: 50%;
  background-position: center top;
  background-size: cover;
}
.gr2.copy {
  background: var(--dark);
  padding: var(--gap);
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

.gr4 {
  width: 33.33%;
}

.gr3 {
  width: calc(25% - var(--gap) * 0.75);
  display: block;
  margin-right: var(--gap);
}
.gr3 span {
  display: block;
}
.gr3.mr30 {
  margin-right: var(--gap);
}
.gr3.mr30:nth-child(4n) {
  margin-right: 0;
}

.gr33 {
  width: 25%;
  display: block;
}

.gr4 span {
  display: block;
}

.gr8 {
  width: 75%;
}

.gr6 {
  width: 50%;
}

.break {
  display: block;
}

.underline {
  text-decoration: underline;
  display: block;
}

.border-bt {
  border-top: 1px solid #fff;
}

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

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

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

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

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

/* General */
.arrow {
  position: absolute;
  display: block;
  width: 25px;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 60px;
  transition: opacity 0.5s;
  z-index: 10;
}

.arrow svg {
  width: 100%;
  height: auto;
}

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

h1,
h2 {
  font-family: "Denton";
  font-size: 40px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.02em;
}

h3,
.h3 {
  font-family: "Denton";
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.02em;
}

h4 {
  font-weight: 500;
  font-size: 1em;
  margin-bottom: 1em;
}

.contact-info h4 {
  text-transform: uppercase;
}

.middle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  display: block;
  width: 100%;
  max-width: calc(100% - 40px);
}

h1.middle {
  width: 1200px;
}

.middle-h {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  width: 100%;
  z-index: 1;
  display: block;
}
.bg-video {
    background-position: 50%;
    background-size: cover;
    height: 100%;
    overflow: hidden;
    position: absolute;
    width: 100%;
    z-index: -1;
}
    .bg-video iframe {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 100vw;
        height: 100vh;
        transform: translate(-50%, -50%);
    }

@media (min-aspect-ratio: 16/9) {
    .bg-video iframe {
        height: 56.25vw;
    }
}

@media (max-aspect-ratio: 16/9) {
    .bg-video iframe {
        width: 177.78vh;
    }
}
.dark {
  display: block;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
}

/* Navigation */
header {
  position: fixed;
  height: var(--header-height);
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  margin: auto;
  z-index: 50;
  background: inherit;
  border-bottom: 1px solid var(--creame);
  overflow: hidden;
}

.ul {
  display: flex;
  -moz-column-gap: 30px;
       column-gap: 30px;
  width: auto;
  align-items: center;
}

#ul-right {
  justify-content: flex-end;
  right: var(--gap);
}

.btn {
  background-color: var(--creame);
  color: var(--dark);
  width: 135px;
  height: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 14px;
  cursor: pointer;
}
.btn.enq {
  right: var(--gap);
}
.btn.b_submit {
  width: 100%;
}

#page-projects a.projects,
#page-home a.home,
#page-contact a.contact,
#page-news a.news,
#page-insights a.insights,
#page-about a.about {
  color: #687A82;
}

.logo {
  display: block;
  width: 205px;
  left: var(--gap);
}

.ul li {
  list-style: none;
  color: #F2EDDD;
  text-transform: uppercase;
}
.ul li a {
  transition: color 0.5s;
}
.ul li a:hover {
  color: #687A82;
}

/* nav-toggle */
#nav-toggle {
  right: var(--gap);
  z-index: 10;
  display: none;
  width: 30px;
  height: 17px;
}
#nav-toggle span {
  height: 2px;
  width: 100%;
  background: var(--creame);
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  transition: opacity 0.7s;
}
#nav-toggle .sp2 {
  top: 8px;
}
#nav-toggle .sp3 {
  top: 16px;
}
#nav-toggle.active .sp1,
#nav-toggle.active .sp3 {
  opacity: 0;
}

.layer {
  position: absolute;
  width: 100%;
  top: 100%;
  height: 100vh;
  left: 0;
}
.layer .inner {
  border-top: 1px solid;
}
.layer .inner p {
  max-width: 460px;
}
.layer .inner::after {
  background-color: var(--dark);
  position: absolute;
  left: 0;
  top: 0;
  height: 100vh;
  content: "";
  display: block;
  width: 100%;
  z-index: -1;
}
.layer .mid {
  padding: 10px 0;
}
.layer .mid br {
  display: none;
}
.layer .mid strong {
  font-weight: normal;
}

.inner-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
}

.ptb30 {
  padding: 15px 0 50px 0;
}

.w200 {
  width: 200px;
}

.max210 {
  width: 210px;
}

.rightalign {
  text-align: right;
}

.v_w200 {
  width: calc(100% - 250px);
}

.displ p {
  margin-bottom: 10px;
}

.news-control {
  padding: 15px var(--gap);
  z-index: 5;
  border-bottom: 1px solid;
  margin-bottom: var(--gap);
  margin-top: var(--header-height);
  text-decoration: underline;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.05em;
  position: sticky;
  top: var(--header-height);
  background: inherit;
}

#newsInfo {
  width: 705px;
  margin: auto;
  max-width: 100%;
  text-align: left;
}

#newsDetail p {
  margin-bottom: 15px;
}

.news-date {
  display: block;
  font-size: 14px;
  margin-bottom: 5px;
}

.news-title {
  display: block;
  padding: 10px 0;
}

.news-link {
  text-decoration: underline;
  display: block;
  font-size: 14px;
}

.socialmedia_news {
  padding-top: var(--gap);
  border-top: 1px solid;
  padding-bottom: calc(2 * var(--gap));
}
.socialmedia_news a {
  display: inline-block;
  margin-right: 15px;
}
.socialmedia_news svg {
  display: block;
  height: 24px;
  width: auto;
}

#journal {
  position: fixed;
  left: 0;
  width: 100%;
  bottom: 0;
  width: 100%;
  transform: translateY(110%);
  transition: transform 0.7s;
  z-index: 40;
  background-color: var(--dark);
  padding: 50px 20px;
  border-top: 1px solid #fff;
}

#journal.active {
  transform: translateY(0);
}

.footer-contact {
  width: 460px;
  max-width: 100%;
  margin: auto;
}
.footer-contact input {
  border-bottom: 1px solid;
  padding: 0 0 10px 0;
  margin-bottom: 10px;
  display: block;
  color: inherit;
  width: 100%;
  text-align: center;
}
.footer-contact .b_submit {
  border: none;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
  margin: 0;
}

.footer-links {
  font-size: 12px;
  padding-top: 30px;
}

.others {
  border-top: 1px solid;
  padding-top: calc(2 * var(--gap));
}

.footer-logo {
  display: block;
  margin: auto;
  width: 50%;
}

.artist::before {
  position: absolute;
  display: block;
  bottom: 15px;
  left: 15px;
  font-size: 11px;
  letter-spacing: 1px;
  z-index: 5;
  content: "Artist impression";
}

input,
select,
textarea {
  border: 0 none;
  background: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: var(--cream);
  font-family: inherit;
  font-size: 14px;
}

.formbox .input,
.formbox select {
  margin: 0 auto;
  padding: 10px 0;
  margin-bottom: 10px;
  width: 100%;
  border: 0 none;
  background: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
  text-align: left;
  border-bottom: 1px solid;
}

.flex-f {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 20px 0;
}

.formbox select {
  -moz-text-align-last: left;
       text-align-last: left;
  text-align: left;
  -ms-text-align-last: left;
  text-align-last: left;
  background-image: url(/images/svg/arrow-down.svg);
  background-position: 100% 50%;
  background-size: 18px;
  background-repeat: no-repeat;
}

.formbox select option {
  padding: 7px 5px;
  background: #000;
  color: var(--creame);
  -moz-text-align-last: center;
       text-align-last: center;
  text-align: center;
  -ms-text-align-last: center;
  text-align-last: center;
}

.checkHolder {
  display: inline-block;
  margin-left: 20px;
}

.checkbox {
  border: 0 none;
  clip: rect(0px, 0px, 0px, 0px);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  color: var(--creame);
  cursor: pointer;
  display: inline-block;
  font-size: 13px;
  line-height: 25px;
  width: 20px;
  text-align: left;
}

.checkbox + label {
  text-transform: uppercase;
  position: relative;
  padding: 0 0 0 25px;
  cursor: pointer;
}

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

.checkbox + label:after {
  position: absolute;
  top: 6px;
  left: 3px;
  height: 10px;
  width: 10px;
  background: var(--creame);
  opacity: 0;
  content: "";
  display: block;
  transition: all 0.4s ease-in-out;
}

.checkbox:checked + label:after {
  opacity: 1;
}

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

/*footer*/
footer .top-cont {
  border-top: 1px solid;
  border-bottom: 1px solid;
  padding: 50px 0;
}
footer .bot-cont {
  padding: 30px 0;
}

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

ul.parsley-errors-list.filled li,
ul.parsley-errors-list li {
  padding: 0;
  text-align: left;
  color: #F00D0D;
}

.profile {
  display: block;
  text-align: left;
}
.profile span {
  display: block;
}
.profile .mb10 {
  text-transform: uppercase;
}

#popteam {
  position: fixed;
  display: none;
  transition: opacity 0.7s;
  opacity: 0;
  top: 0;
  width: 100%;
  z-index: 3;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  z-index: 50;
  background: rgba(0, 0, 0, 0.6);
}

#profileContent {
  max-height: 100vh;
  width: 100%;
}

#profileInner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
}

.team-name {
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
  color: #f5efdb;
  text-transform: uppercase;
}

.team-position {
  font-size: 15px;
  color: #f5efdb;
  padding-bottom: 20px;
  border-bottom: 1px solid #f5efdb;
  margin-bottom: 22px;
  text-transform: uppercase;
  width: 100%;
}

.team-copy {
  margin-bottom: 15px;
}

.team-copy:last-child {
  margin-bottom: 0;
}

.fixbg {
  position: fixed;
  z-index: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

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

.dark-bg::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  content: "";
  background-color: rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.darker:after {
  background-color: rgba(0, 0, 0, 0.2);
}

.fullwidth {
  width: 100%;
}

.fadeIn {
  opacity: 0;
  transition: opacity 0.7s;
}
.fadeIn.animated {
  opacity: 1;
}
.fadeIn.hasDelay:nth-child(2) {
  transition-delay: 0.2s;
}
.fadeIn.hasDelay:nth-child(3) {
  transition-delay: 0.4s;
}
.fadeIn.hasDelay:nth-child(4) {
  transition-delay: 0.6s;
}

.fullheight {
  height: 100vh;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.fullheight.slide {
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.7s;
  width: 100%;
  height: 100%;
  opacity: 0;
}

#page-projects .fullheight {
  height: calc(100vh - var(--header-height));
}

.centeralign {
  text-align: center;
}

.leftalign {
  text-align: left;
}

.flex-sb {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.flex-gap {
  display: flex;
  justify-content: center;
  -moz-column-gap: 20px;
       column-gap: 20px;
}

.flex-cc {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  flex-wrap: wrap;
}

.flex-s {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.flex-r {
  display: flex;
  justify-content: flex-start;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
}

.flex-r {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: flex-end;
}

.link {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  left: 0;
  z-index: 1;
  display: block;
}

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

@media screen and (max-aspect-ratio: 1920/1080) {
  .fullyvideo {
    height: 100vh;
  }
}
@media screen and (min-aspect-ratio: 1920/1080) {
  .fullyvideo {
    width: 100% !important;
  }
}
.navigation {
  width: 100%;
  left: 0;
  position: absolute;
  bottom: 0;
}
.navigation .home-links {
  border-top: 1px solid var(--creame);
  padding: 15px;
}
.navigation .home-links a {
  font-size: 40px;
  line-height: 1;
}

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

.pad-rl {
  padding-left: var(--gap);
  padding-right: var(--gap);
}

.pad-100 {
  padding-top: calc(var(--header-height) + var(--gap));
}

.pt50 {
  padding-top: calc(0.33 * var(--padding));
}

.pt100 {
  padding-top: calc(0.66 * var(--padding));
}

.pad-t {
  padding-top: var(--padding);
}

.pad-b {
  padding-bottom: var(--padding);
}

.contact-det {
  text-align: center;
  margin-bottom: 50px;
  padding-top: 50px;
}

.w583 {
  max-width: 583px;
  margin: auto;
}

.privacy {
  text-align: left;
}

.max930 {
  max-width: 930px;
  margin-left: auto;
  margin-right: auto;
}

#projectCopy h2 {
  margin-bottom: 1em;
}
#projectCopy p {
  max-width: 600px;
  margin: 0 auto 15px auto;
}

#projectDetail {
  max-width: 600px;
}

.prj-det {
  padding: 10px 0;
  border-top: 1px solid;
  display: flex;
  justify-content: flex-start;
  -moz-column-gap: 3px;
       column-gap: 3px;
  text-align: left;
}

.project-link {
  text-transform: uppercase;
  position: sticky;
  top: var(--header-height);
  padding: 20px;
  background: var(--dark);
  left: 0;
  width: 100%;
  bottom: 0;
  display: flex;
  height: 70px;
  z-index: 4;
}

.max460 {
  max-width: 460px;
}

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

.abs-heading {
  max-width: 475px;
  position: absolute;
  left: var(--gap);
  top: 30px;
  text-align: left;
}

.dwn {
  width: -moz-max-content;
  width: max-content;
  border: 1px solid #F2EDDD;
  color: #F2EDDD;
  padding: 7px 20px;
  display: block;
  margin-top: 30px;
  text-transform: uppercase;
}

.mb100 {
  margin-bottom: calc(0.66 * var(--padding));
}

.mb50 {
  margin-bottom: calc(0.33 * var(--padding));
}

.mb10 {
  margin-bottom: 10px;
  display: block;
}

.mb15 {
  margin-bottom: 15px;
}

.mb25 {
  margin-bottom: 25px;
}

.holder {
  position: relative;
}

.h-ancher {
  display: block;
}

.in-ancher {
  width: 0px;
  display: block;
  position: absolute;
  z-index: 11;
  opacity: 0;
}

footer {
  position: relative;
  z-index: 6;
  background-color: var(--dark);
}

.back,
.next {
  display: flex;
}

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

.back img {
  width: 25px;
  display: inline-block;
  margin-right: 15px;
}

.next img {
  width: 25px;
  display: inline-block;
  margin-left: 15px;
}

ul {
  list-style: none;
}

.project-name {
  display: block;
}

.status.active {
  opacity: 0.7;
  cursor: default;
}

.sec-link.active {
  opacity: 0.7;
  cursor: default;
}

.bar {
  display: inline-block;
  margin: 0 3px;
}

.bar:before {
  content: "|";
}

.popUp {
  position: fixed;
  display: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 500;
  display: none;
  opacity: 0;
  transition: opacity 0.7s;
  background: var(--dark);
}

.innerPop {
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  padding: 80px 0;
}

.innerPop .container {
  width: 1000px;
  text-align: left;
}

.innerPop p {
  margin-bottom: 20px;
}

.innerPop h4 {
  margin-bottom: 25px;
}

.close {
  position: absolute;
  top: 20px;
  right: 20px;
  margin: 0 auto;
  width: 50px;
  height: 50px;
  display: block;
  text-align: center;
  cursor: pointer;
  font-size: 0;
  z-index: 50;
}

.close:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 2px;
  height: 40px;
  transform: rotate(45deg);
  transform-origin: center;
  -webkit-transform: rotate(45deg);
  -webkit-transform-origin: center;
  background: #fff;
}

.close:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 2px;
  height: 40px;
  transform: rotate(-45deg);
  transform-origin: center;
  -webkit-transform: rotate(-45deg);
  -webkit-transform-origin: center;
  background: #fff;
}

.m {
  display: none;
}

.filterHolder {
  background: var(--dark);
  padding: 15px 0;
  position: sticky;
  width: 100%;
  top: var(--header-height);
  z-index: 50;
  text-align: left;
}
.filterHolder #toggleFilter::after {
  content: " +";
}
.filterHolder #toggleFilter.active::after {
  content: " -";
}

.filter {
  display: none;
  padding: 10px 0;
  border-top: 1px solid;
  border-bottom: 1px solid;
  margin-top: 10px;
}

#pop_sub {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
  z-index: 99999;
  width: 100%;
  height: 100%;
  transition: opacity 0.5s;
}

#span_close {
  display: block;
  background: rgba(0, 0, 0, 0.7);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}

#pop_content {
  width: 300px;
  padding: 30px;
  background-color: #fff;
  color: var(--dark);
  z-index: 3;
  position: relative;
}

#close_pop, #close {
  display: block;
  position: absolute;
  top: 10px;
  right: 10px;
  width: 15px;
  height: 15px;
}

#close {
  display: flex;
  justify-content: flex-end;
  -moz-column-gap: 5px;
       column-gap: 5px;
  align-items: center;
  width: 100px;
  letter-spacing: 0.05em;
  font-weight: 500;
}

#close_pop:before,
#close_pop:after {
  position: absolute;
  left: 0;
  content: " ";
  height: 15px;
  width: 1px;
  background-color: var(--dark);
}

#close_pop:before {
  transform: rotate(45deg);
}

#close_pop:after {
  transform: rotate(-45deg);
}

.mob {
  display: none;
}

@media screen and (max-width: 1000px) {
  :root {
    --gap: 15px;
    --padding: 95px;
    --header-height: 55px;
  }
  body {
    padding-top: var(--header-height);
  }
  .mob {
    display: block;
  }
  .break {
    display: none;
  }
  #page-contact {
    padding-top: var(--header-height);
  }
  .logo {
    width: 150px;
  }
  header {
    overflow: initial;
  }
  #nav {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    left: 0;
    width: 100%;
    height: calc(100vh - var(--header-height));
    top: var(--header-height);
    transform: translateX(-100%);
    background-color: var(--dark);
    transition: transform 0.7s;
    flex-wrap: wrap;
    flex-direction: column;
  }
  #nav.active {
    transform: translateX(0%);
  }
  #nav.active::after {
    position: absolute;
    top: 100%;
    content: "";
    background-color: inherit;
    left: 0;
    width: 100%;
    height: 100px;
    display: block;
  }
  #nav .ul {
    display: block;
    top: auto;
    right: auto;
    left: auto;
    position: relative;
    transform: none;
    width: 100%;
  }
  #nav .ul li {
    padding: 5px 0;
    font-family: "Denton";
    letter-spacing: 0.02em;
    font-size: 22px;
  }
  h1,
  h2,
  .project-name {
    font-size: 26px;
  }
  .gr4 {
    width: 100%;
  }
  .gr6,
  .gr3,
  .gr_half {
    width: 100%;
    margin-bottom: 30px;
  }
  div .gr6:last-child,
  div .gr3:last-child {
    margin-bottom: 0;
  }
  .layer {
    display: none;
  }
  .holder {
    display: inline;
    height: 0;
    overflow: hidden;
  }
  .abs-heading {
    position: relative;
    left: auto;
    top: auto;
    margin-bottom: 40px;
    padding: 0 var(--gap);
  }
  #page-about .sticky {
    position: relative;
    top: auto;
    height: auto;
  }
  .inner-img {
    background-size: 0;
    opacity: 1 !important;
    margin-bottom: 60px;
    position: relative;
    height: auto;
  }
  .inner-img .mid {
    border-top: 1px solid;
    padding: var(--gap);
  }
  .inner-img .mid br {
    display: none;
  }
  .inner-img p {
    padding: 0 var(--gap);
  }
  .inner-img h2 {
    padding: 0 var(--gap);
  }
  .inner-img .img-mob {
    height: 100vw;
    background-image: inherit;
    background-size: cover;
    margin: 35px 0 0 0;
  }
  .profile {
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
  }
  #nav-toggle {
    display: block;
  }
  .status {
    font-size: 12px;
  }
  .checkHolder {
    display: block;
    margin: 9px 0;
    font-size: 14px;
  }
  .btn.enq {
    right: 0;
    left: 0;
    margin: auto;
    bottom: auto;
    position: absolute;
    top: -45px;
  }
  .gr3.mr30 {
    margin-right: 0;
  }
  #ul-right {
    padding-top: 30px;
  }
  .w100m {
    height: 100vw;
  }
  .filterHolder {
    margin-bottom: 15px;
    border-bottom: 1px solid;
  }
  .filter {
    border: none;
  }
  .news-control {
    margin-top: 0;
  }
  .full-m {
    width: 100%;
  }
  .full-m .project-name, .full-m .project-det {
    padding-left: var(--gap);
    padding-right: var(--gap);
  }
  .gr2 {
    width: 100%;
    height: 50vh;
    overflow-y: scroll;
    min-height: 100px;
  }
  .gr2.copy {
    display: block;
  }
}/*# sourceMappingURL=style.css.map */