:root {
  --greenColor: #A7D4CD;
  --architekturColor: #A7D4CD;
  --redColor: #F36E64;
  --interiorColor: #F36E64;
  --blueColor:#A5CDE1;
  --consultingColor:#A5CDE1;
  --greyColor: #bebeb4;
  --art-directionColor: #bebeb4;

  --margin-main: 20px;

  --font-size-xs: 16px;
  --font-size-s: 20px;
  --font-size-m: 24px;
  --font-size-l: 32px;
  --font-size-xl: 64px;

  --font-stack-serif: 'Oranienbaum-Regular', serif;
  --font-stack-sans: 'Inter-Regular', sans-serif;
  --font-stack-sans-medium: 'Inter-Medium', sans-serif;
}

body {
  background-color: white;
  font-size: var(--font-size-m);
  font-family: var(--font-stack-sans);
  /* line-height: 1.4em; */
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  scroll-behavior: smooth;
}
h2 {
  font-weight: inherit;
  font-size: inherit;
  margin-bottom: 20px;
}

ul {
  list-style: none;
}

footer {
  font-family: var(--font-stack-sans-medium);
}

p {
  line-height: inherit;
}

/* utils */
.mobileOnly {
  display: none;
}

.placeImg, .placeImg img {
  background-color: pink;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.widthContain {
  width: calc(100% - var(--margin-main) * 2);
  margin: 0 var(--margin-main);
}

.invert {
  filter: invert(1);
}

.red,
.colorinterior {
  color: var(--redColor);
}
.redBg,
.interiorBg {
  background-color: var(--redColor);
}
.green,
.colorarchitektur {
  color: var(--greenColor);
}
.grey,
.colorart-direction {
  color: var(--greyColor);
}
.blue,
.colorconsulting {
  color: var(--blueColor);
}
.greenBg,
.architekturBg {
  background-color: var(--greenColor);
}
.blueBg,
.consultingBg {
  background-color: var(--blueColor);
}
.greyBg,
.art-directionBg {
  background-color: var(--greyColor);
}


.menuBar {
  position: fixed;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;

  width: 100%;
  top: 0;
  height: 100px;
  padding: 10px 20px;

  background-color: white;

  z-index: 10000;

  font-family: var(--font-stack-sans-medium);
}

.menuLeft {
  height: 70px;
  width: 70px;
  margin-bottom: 5px;
  /* margin-left: 1px; */
}

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

.menuRight > * + * {
  margin-left: var(--margin-main);
}

.socialHolder {
  display: flex;
}

.socialHolder > * + * {
  margin-left: calc(var(--margin-main) / 2);
}

.socialElem {
  width: 20px;
  /* height: 20px; */
}

.socialImg {
  filter: invert(0%) sepia(84%) saturate(7435%) hue-rotate(329deg) brightness(0%) contrast(114%);
}

.arrow {
  height: var(--font-size-xs);
  margin: 0 5px;
}

.arrow.up {
  rotate: 0deg;
}
.arrow.right {
  rotate: 90deg;
}
.arrow.down {
  rotate: 180deg;
}
.arrow.left {
  rotate: 270deg;
}

.width1000 {
  width: 100%;
  max-width: 1000px;
  margin: auto;
}

.width800 {
  max-width: 800px;
}

.width600 {
  max-width: 600px;
}

.title {
  text-decoration: underline;
  margin-bottom: 20px;
  font-family: var(--font-stack-sans-medium);
}

/* LANDING PAGE */

.lpHeaderSlide {
  /* width: calc(100vw - var(--margin-main)); */
  height: 100vh !important;

  width: 100vw;
}

.lpHeaderSlide img {
  cursor: grab;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.lpHeaderSlide img:active {
  cursor: grabbing;
}

.lpProjects {
  margin-bottom: 100px;
}

.lpProjectsFlex {
  display: flex;
  margin-top: 40px;
  flex-wrap: wrap;
  gap: var(--margin-main);
}

.lpImg {
  width: 100%;
  aspect-ratio: 16/9;
  /* width: calc(100% - 40px); */
  /* margin: 0 20px 50px; */
  position: relative;
  height: 100vh;

  width: 100%;
  padding: 0 20px 50px;
  margin-bottom: 50px;

}
.lpImg img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
  object-position: center;
}

.sliderLogoOverlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 500px;
  width: 500px;
  /* width: 100px; */
  z-index: 100;
  filter: invert(1);
  pointer-events: none;
}

.lpProjectElem {
  width: calc((100% - 40px)/3);

}

.lpProjectElemTitle {
  font-size: var(--font-size-s);
}

.lpProjectElemImg {
  /* width: calc((100% - 40px)/3); */
  aspect-ratio: 4/5;
  margin-bottom: 10px;

  position: relative;
}

.lpProjectElemImgInner {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lpProjectElemSymbol {
  position: absolute;
  width: 50%;
  /* width: 200px; */
  /* height: 200px; */
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.lpProjectElemSymbol img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}


.lpProjectElemType {
  font-size: var(--font-size-xs);
  font-family: var(--font-stack-serif);
  line-height: 1.2em;
}

.projectsMore {
  margin-top: 30px;
  font-family: var(--font-stack-serif);
}



.lpText {
  margin-bottom: 100px;
  font-size: var(--font-size-l);
  font-family: var(--font-stack-sans-medium);
  line-height: 1.2em;
  max-width: 1200px;
}
.lpText h2 {
  margin-bottom: 0;
}


.lpInt {
  width: 100%;
  /* background-color: var(--redColor); */
  /* min-height: 100vh; */
  max-height: 100vh;
  display: flex;
  padding: 20px;
  /* margin-bottom: 50px; */
  gap: var(--margin-main);

}

.lpIntTop {
  display: flex;
  align-items: center;
  font-family: var(--font-stack-serif);
}

.lpIntLeft {
  flex: 400px 1 1;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.lpIntRight {
  flex: 400px 1 1;
}
.lpIntRight img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lpCategMore {
  margin-top: 40px;
  font-size: var(--font-size-s);
}
.lpCategMore a {
  text-decoration: underline;
}

.lpCategIntro {
  font-family: var(--font-stack-sans-medium);
}
.lpCategIntro p {
  text-align: left !important;
}
.lpCategIntro h2 {
  font-size: var(--font-size-l);
}

.smallSymbol {
  margin-right: 5px;
}

.smallSymbol img {
    width: 20px;
    height: 20px;
    display: block;
}

.lpBigText {
  font-size: var(--font-size-xl);
  /* max-width: 800px; */
  margin-bottom: 50px;
  line-height: 1.1em;
  max-width: 1200px;
  margin-top: 200px;
  font-family: var(--font-stack-sans-medium);
}

.lpText2 {
  margin-top: 100px;
  margin-bottom: 100px;
  font-size: var(--font-size-l);
  max-width: 1200px;
  line-height: 1.2em;
  font-family: var(--font-stack-sans-medium);
}

.lpSmallText3 {
  max-width: 1200px;
  font-size: var(--font-size-m);
  font-family: var(--font-stack-sans-medium);
  margin-bottom: 100px;
}

.formDepotLogo {
  height: var(--font-size-m);
  margin-top: 20px;
}
.footerBlock .formDepotLogo {
  margin-top: 5px;
  height: var(--font-size-s);
}

.lpTour {
  width: calc(100% - 2 * var(--margin-main));
  aspect-ratio: 16/9;

  position: relative;

  margin: 0 var(--margin-main);
  margin-top: 200px;
  height: calc(100vh - 100px);
}

.lpTourText {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  text-align: center;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: var(--font-size-l);
  font-family: var(--font-stack-sans-medium);
}

.lpTourEmbed iframe {
  width: 100%;
  height: 100%;
  position: absolute;
}

.highlightProjectBottom {
  margin-top: 100px;
}

.highlightProjectBottom.highlightProjectBottom2 {
  margin-top: 0;
}

.lpQuotesSection {
  background-color: #ddd;
  margin-bottom: 100px;
  padding-top: 50px;
  padding-bottom: 50px;
  display: flex;
  justify-content: center;
  width: 100%;
  column-gap: 100px;
  max-height: unset;
}

.lpQuoteElem {
  width: 25%;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
}

.lpQuoteElem.reversed {
  flex-direction: column-reverse;
}

.lpQuoteElem.reversed .lpQuoteElemSplitImages {
  display: flex;
  flex-direction: column-reverse;
}

.lpQuoteElem.reversed .lpQuoteIconElem {
  margin-top: 0;
  margin-bottom: -30px;
}

.lpQuoteElem.reversed .lpQuoteIcon {
  z-index: 100;
  margin-top: 30px;
}


.lpQuoteText {
  margin-top: 30px;
  margin-bottom: 30px;
  font-family: var(--font-stack-sans-medium);
  font-size: var(--font-size-s);
}

.lpQuoteName,
.lpQuoteCompany {
  font-family: var(--font-stack-serif);
  font-size: var(--font-size-s);
}

.lpQuoteImageElem {
  max-height: 400px;
  display: block;
}

.lpQuoteIconElem {
  max-height: 60px;
  margin-top: -30px;
}



/* PROJECTS */
.projectsNav {
  padding-right: 0;
  position: fixed;
  right: 0;
  background-color: #fff;
  width: 100%;
  padding: 0 var(--margin-main);
  padding-bottom: calc(var(--margin-main)/2);
  z-index: 8000;
}

.projectsNavElems {
  display: flex;
  justify-content: right;
  align-items: center;
  column-gap: var(--margin-main);
}

.projectsNavElem {
  display: flex;
  flex-wrap: nowrap;
  height: 100%;
  font-family: var(--font-stack-serif);
}

.projectsNavElem img {
  height: 1.5em;
  margin-right: 5px;
}

.projectsIntro {
  padding-top: 75px;
}

.filterHeader {
  cursor: pointer;
}

.filterContent {
  max-height: 0px;
  transition: .5s all ease;
  overflow-y: hidden;
}

.filterSection {
  font-family: var(--font-stack-serif);
}

.filterSection.open .filterContent {
  max-height: 1000px;
}

.filterArrow img {
  transform: rotate(180deg);
}

.filterSection.open .filterArrow img {
  transform: rotate(0deg);
}

.filterContent {
  margin-top: var(--margin-main);
  display: flex;
  flex-wrap: wrap;
  gap: var(--margin-main);
}

.filterColumn {
  width: 300px;
}

.filterTitle {
  margin-bottom: var(--margin-main);
}

.filterReset {
  width: calc(100% - 900px - var(--margin-main)*3);
  min-width: 300px;
  text-align: right;
}

.filterButton {
  cursor: pointer;
}

.filterButton.active {
  text-decoration: underline;
}

.projectsSection {
  display: flex;
  flex-wrap: wrap;
  gap: var(--margin-main);
  margin-top: 100px;
  margin-bottom: var(--margin-main);
  justify-content: left;
}

.projectElem {
  /* width: calc(20% - var(--margin-main)*.8); */
  width: 300px;
}
.projectElem.hidden {
  display: none;
}
.projectTitle {
  font-size: var(--font-size-s);
}

.projectImage {
  height: 400px;
  margin-bottom: 10px;
}

.projectImage img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.projectCategory {
  font-size: var(--font-size-s);
  font-family: var(--font-stack-serif);
  display: flex;
  align-items: center;
}
.projectCategory img {
  height: 1em;
  margin-right: 5px;
}



/* PROJECT CATEGORY PAGE */
.projectsCategoryPage {
  padding: var(--margin-main);
}
.categoryPageTitle {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  height: var(--font-size-xl);
  font-family: var(--font-stack-serif);
  font-size: var(--font-size-xl);
  margin-bottom: 50px;
}
.categoryPageTitle img {
  height: 50px;
  padding-right: 20px;
}

.categoryPageSplit {
  display: flex;
  font-family: var(--font-stack-sans-medium);
  gap: var(--margin-main);
  margin-bottom: 100px;
  flex-wrap: wrap;
}
.splitSection {
  max-width: 1000px;
  min-width: 500px;
  width: calc(50% - 10px);
}
.sectionTitle {
  font-size: var(--font-size-l);
  margin-bottom: var(--margin-main);
}

.categoryProjectsSection {
  display: flex;
  flex-wrap: wrap;
  gap: var(--margin-main);
  margin-top: 50px;
  margin-bottom: var(--margin-main);
  justify-content: left;
}


.allImgWrapper {
  max-width: 1600px;
}

.bestImgWrapper {

  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  width: 100%;
  margin-bottom: 5px;
}

.outerRest {
  display: none;
}

.restImgWrapper {

  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  width: 100%;
}

.pElem {
  height: 250px;
}

.moreE {
  cursor: pointer;
  font-size: 20px;
  text-decoration: underline;
}

/* #lightbox {
  top: 100px !important;
  height: 100vh !important;
} */







/* BRANDS */
.brands .filterContent {
  justify-content: space-between;
  margin-bottom: 50px;
}

.brands .filterColumn {
  width: unset;
}

.brands .filterReset {
  width: unset;
  min-width: unset;
  text-align: right;
}

.brandSection {
  margin-bottom: 50px;
}
.brandSection.hidden {
  display: none;
}

.brandHeader {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-stack-sans-medium);
  margin-bottom: calc(var(--margin-main)/2);
}
.brandArrows span {
  cursor: pointer;
}

.brandContent {
  height: calc(500px + var(--margin-main)*2);
  font-size: var(--font-size-s);
  font-family: var(--font-stack-sans-medium);
  margin: 0 var(--margin-main);
}

  /* the slides */
  .slick-slide {
    padding: calc(var(--margin-main));
    padding-left: 0;
  }

.brandContentImage {
  /* max-width: 800px; */
}
.brandContentImage img {
  max-height: 500px;
  /* height: 100%; */
  /* width: 100%; */
  /* object-fit: contain; */
}

.brandContentText {
  max-width: 500px;
}




/* ABOUT US */
.aboutNav {
  padding-right: 0;
  position: fixed;
  right: 0;
  width: 100%;
  padding: 0 var(--margin-main);
  padding-bottom: calc(var(--margin-main)/2);
  z-index: 10;
}

.aboutNavElems {
  font-family: var(--font-stack-sans-medium);
  right: 180px;
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: right;
  align-items: flex-start;
  column-gap: var(--margin-main);
  width: 300px;
  background-color: white;
  padding: var(--margin-main);
  padding-top: 0;
}

.aboutNavElems li{
  cursor: pointer;
}

.aboutNavElem {
  display: flex;
  flex-wrap: nowrap;
  height: var(--font-size-m);
  font-family: var(--font-stack-sans-medium);
}

.aboutMoreLink {
  display: flex;
  align-items: center;
  gap: 10px;
}

.about.lpBigText {
  margin-top: 50px;
}

.aboutImages {
  display: flex;
  gap: var(--margin-main);
  margin-bottom: 50px;
}
.aboutImages div {
  width: 50%;
  height: 600px;
}
.aboutImages img {
  object-fit: cover;
  height: 100%;
  width: 100%;
  object-position: center;
}

.aboutSection {
  margin-top: 150px;
  margin-bottom: 50px;
}

.aboutImage {
  height: 800px;
  margin-bottom: 50px;
}

.aboutMore {
  font-family: var(--font-stack-serif)
}
.aboutMore p {
  display: inline-block;
}

.about.title {
  margin-bottom: var(--margin-main);
}

.aboutSectionImage {
  margin-bottom: var(--margin-main);
  max-width: 1000px;
}

.about.lpText {
  margin-bottom: 50px;
}

.toTeam {
  text-align: right;
  font-family: var(--font-stack-serif);
}

.teamArrows {
  text-align: right;
}

.arrowPrev, .arrowNext {
  cursor: pointer;
}

.teamImage img {
  width: 250px;
  height: 350px;
  object-fit: cover;
}

.detailGalleryImage img {
  /* height: 400px; */
  object-fit: cover;
}

.detailGallerySlickSlide.halfWidth {
  max-width: 50% !important;
  display: inline !important;
}

.detailGalleryDynamic {
  width: fit-content;
  display: flex;
  gap: 5px;
}

.detailGallerySlick.halfWidth {
  display: flex;
  gap: 10px;
  justify-content: left;
}

.about.title:before {
  content: '';
  display: block;
  position: relative;
  width: 0;
  height: 100px;
  margin-top: -100px;
}



/* NEWSLETTER */
.newsletter {
  margin-top: 50px;
}



/* 404 */
.fourOhFour {
  margin-top: 50px;
}



/* BRAND SINGLE */
.brandSingle {
  margin-top: 50px;
}



/* detail */

.module_sectiontitle.bigHeaderSize {
  font-size: var(--font-size-xl) !important;
  font-family: var(--font-stack-sans-medium) !important;
  margin: var(--margin-main) 0;
  max-width: 1200px !important;
}

.module_sectiontitle.subheaderSize {
  font-size: var(--font-size-m) !important;
  font-family: var(--font-stack-sans-medium) !important;
  margin: var(--margin-main) 0;
  max-width: 1200px !important;
}

.module_sectiontitle.subsubheaderSize {
  font-size: var(--font-size-s) !important;
  font-family: var(--font-stack-sans-medium) !important;
  text-decoration: underline;
  margin-top: 50px;
  margin-bottom: var(--margin-main);
  max-width: 1200px !important;
}

.module.module_text {
  max-width: 1200px;
}

.module,
.item_container {
  font-family: var(--font-stack-sans) !important;
  font-size: var(--font-size-m) !important;
  line-height: 1.25em !important;
}

 #item_container {
  margin-bottom: var(--margin-main);
  overflow: unset !important;
  margin-bottom: 100px;
  max-height: none !important;
 }

 #container {
  min-height: calc(100% - 100px);
 }

.item_container {
  margin-bottom: var(--margin-main) !important;
  margin-top: var(--margin-main) !important;
  overflow-y: unset !important;
}

.item_container.fullWidth {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding: var(--margin-main);
}

.detContainer {

  padding: var(--margin-main);
  background-color: var(--greenColor);
}

.detailBack {
  font-family: var(--font-stack-serif);
  font-size: var(--font-size-s);
}

.detailSplitHolder {
  display: flex;
  justify-content: left;
  margin-bottom: 50px;

}

.detailTitle h2 {
  font-size: var(--font-size-l);
  font-family: var(--font-stack-sans-medium);
  line-height: 1.2em;
  margin: var(--margin-main) 0;
}

.detailText {
  max-width: 1200px;
  padding-right: 30px;
}

.detailText p {
  font-family: var(--font-stack-sans-medium);
  text-align: left !important;
}

.detailSmallHolder {
  font-size: var(--font-size-s);
  font-family: var(--font-stack-serif);
  margin-top: 40px;
}

.detailSplitLeft {
  /* flex: 0 0 500px; */
  width: 50%;
}

.detailSplitRight {
  width: 50%;
  max-width: 700px;
}

.window {
  width: 100%;
  /* margin: 0 20%; */
    /* background-image: url('../img/hoipi.jpg'); */
    /* min-height: 500px; */
    /* background-attachment: fixed; */
    background-position: right;
    background-repeat: no-repeat;
    /* background-size: 50vw; */
    /* background-size: contain; */
    background-size: cover;

}

.seeThrough img {
  display: block;
}



.manyPicsHolder {
  /* padding: 20px; */
  margin-bottom: 150px;
}



.holderImages {
  position: relative;

  display: flex;
  flex-wrap: wrap;
  margin-bottom: 30px;

  max-height: 310px;
  overflow: hidden;

  transition: all 300ms ease;
}

.holderImages.opened {
  max-height: 5000px;
  transition: all 300ms ease;
}

.holderImages.opened .transparentBottom {
  opacity: 0;
  transition: all 300ms ease;
}

.transparentBottom {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), white);

  opacity: 1;
  transition: all 300ms ease;
}

.imageHolderMore,
.imageHolderMorePhoto {
  cursor: pointer;
}

.artimg {
  width: 100px;
  height: 150px;
  background-color: pink;
  margin-right: 5px;
  margin-bottom: 5px;
}
.artimg2 {
  width: 200px;
  height: 150px;
  background-color: pink;
  margin-right: 5px;
  margin-bottom: 5px;
}

.detailQuoteSection {
  border-top: 2px solid black;
  border-bottom: 2px solid black;
  padding: 50px;
  margin-top: 50px;
  margin-bottom: 50px;
}

.detailQuoteElem {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.detailQuoteText {
  font-family: var(--font-stack-sans-medium);
  font-size: var(--font-size-m);
  margin-bottom: 40px;
}

.detailQuoteName,
.detailQuoteCompany {
  font-family: var(--font-stack-serif);
  font-size: var(--font-size-m);
}

.similarProjects {
  margin-top: 100px;
  margin-bottom: 100px;
}


.simProjElemHolder {
  width: 100%;

  display: flex;

}

.simProjElemHolder > * + * {
  margin-left: 20px;

}

.simProjElem {
  width: 200px;
}

.simProjImg {
  background-color: lightyellow;
  aspect-ratio: 4/5;
}

.simProjTitle {
  font-size: 16px;
  margin-top: 10px;
}

.noSliderGrid {
  margin: var(--margin-main) 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: left;
  max-width: 1800px;
}
.noSliderGrid > * {
  /* max-width: 20%; */
  height: 200px;
  /* min-width: 200px; */
}

.noSliderGrid img {
  max-height: 200px;
  max-width: 100%;
}

.noSliderGrid {
  max-height: 200px;
  overflow: hidden;
}

.noSliderGrid.open {
  max-height: unset;
}

.showMoreGallery {
  cursor: pointer;
  text-decoration: underline;
}

.similarProjects {

}

.similarProjectElems {
  display: flex;
  flex-wrap: wrap;
  gap: var(--margin-main);
}

#col_container .module_form .module_contact_input {
  outline: none;
  border: none;
  border-bottom: 1px solid black;
  font-family: var(--font-stack-sans);
}

#col_container .module_form textarea.module_contact_input {
  height: 300px;
  border: none;
  height: unset;
}

#col_container .module_form .module_contact_input::placeholder {
  color: lightgrey;
  font-size: 18px;
  font-family: var(--font-stack-sans);
}

#col_container .module_contact .module_contact_send {
  font-family: var(--font-stack-sans);
  height: 32px;
    line-height: 29px;
    color: #fff;
    background: #000;
    font-weight: unset;
    font-size: 18px;
    text-align: center;
    margin: 10px auto;
    padding: 2px 10px;
    width: 200px;
    cursor: pointer;
}


.module_contact_error,
.module_contact_success {
  margin-top: var(--margin-main);
  font-family: var(--font-stack-sans-medium);
  color:black;
  text-align: center;
}


#col_container:has(.module_contact_send)  {
  max-width: unset;
}

.lb-data {
  font-family: var(--font-stack-sans) !important;
}


@media screen and (max-width: 1000px) {

  :root {
    --font-size-xs: 22px !important;
    --font-size-s: 24px !important;
    --font-size-m: 24px;
    --font-size-l: 32px;
    --font-size-xl: 42px !important;
  }

  .desktopOnly {
    display: none;
  }

  .mobileOnly {
    display: unset;
  }

  .mobileNav.mobileOnly {
    display: flex;
    justify-content: space-between;
    padding: var(--margin-main);
    /* padding-bottom: 0; */
    position: fixed;
    width: 100%;
    background-color: white;
    top: 0;
    z-index: 10000;
    font-family: var(--font-stack-sans-medium);
  }

  #container {
    margin-top: 100px !important;
  }

  .mobileNavOpen {
    font-family: var(--font-stack-sans-medium);
    background-color: white;
    position: fixed;
    height: calc(100% - 100px);
    width: 100%;
    z-index: 9000;
    bottom: 100%;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    font-size: var(--font-size-l);
    transition: all .35s ease;
  }

  .mobileNavOpen.active {
    bottom: 0;
  }

  body.active {
    position: fixed;
    overflow-y: hidden;
  }

  .socialElem {
    width: 30px;
    margin-top: var(--margin-main);
  }

  .menuButton {
    cursor: pointer;
  }

  .sliderLogoOverlay {
    height: 150px;
    width: 150px;
  }

  .lpProjectElem {
    width: 100%;
  }

  .lpInt {
    flex-wrap: wrap;
    max-height: unset;
  }

  .lpHeaderSlide {
    height: 50vh !important;
  }

  .lpImg {
    height: 50vh;
  }

  .lpQuotesSection {
    flex-direction: column;
    align-items: center;
    gap: 75px;
  }

  .lpQuoteElem {
    width: 100%;
  }

  .lpQuoteElem.reversed {
    flex-direction: column;
  }
  
  .lpQuoteElem.reversed .lpQuoteElemSplitImages {
    display: block;
  }
  
  .lpQuoteElem.reversed .lpQuoteIconElem {
    margin-top: -30px;
    margin-bottom: 0;
  }
  
  .lpQuoteElem.reversed .lpQuoteIcon {
    z-index: 100;
    margin-top: 0;
  }

  .projectsNav {
    top: 105px;
    padding-top: 10px;
  }

  .projectsNavElems {
    flex-wrap: wrap;
    gap: 10px;
    justify-content: space-between;
  }

  .projectsNavElem {
    width: calc(50% - 5px);
  }

  .projectsIntro {
    padding-top: 25px;
  }

  .projectsIntro.projects {
    padding-top: 125px;
  }

  .projectElem {
    width: calc(50% - 10px);
  }

  .projectImage {
    height: 350px;
  }

  .filterColumn {
    width: calc(50% - var(--margin-main));
  }

  .filterReset {
    text-align: left;
  }

  .detailSplitHolder {
    flex-wrap: wrap;
    gap: var(--margin-main);
    flex-direction: column-reverse;
  }

  .detailSplitLeft,
  .detailSplitRight {
    width: 100%;
  }

  .detailSplitRight {
    max-width: unset;
  }

  .detailGallerySlickSlide.halfWidth {
    max-width: 100% !important;
  }
  
  .detailGallerySlick.halfWidth {
    flex-direction: column;
  }

  .window {
    background-position: center;
    background-size: unset;
    background-attachment: scroll;
  }

  .aboutNav {
    top: 110px;
    right: 0px;
  }

  .aboutNavElems {
    right: 0;
    /* display: none; */
    align-items: flex-end;
  }

  .about.lpBigText {
    /* margin-top: 200px; */
  }

  .aboutImages {
    flex-wrap: wrap;
  }
  .aboutImages div {
    width: 100%;
    height: 700px;
  }

  .brandContentImage {
    /* max-width: 100vw; */
  }

  .lpTour {
    height: calc(100vh - 250px);
  }

  .footerBlock,
  .footerBlock .sendInput,
  .footerBlock .sendButton {
    font-size: var(--font-size-xs) !important;
  }

  .footerBlock input {
    border-radius: 0;
  }

  .footerHolder {
    flex-direction: column;
  }

  .fourOhFour {
    margin-top: 0;
  }


  .aboutNavElems {
    display: none;
  }

  .about.title:before {
    height: 120px;
  }

}