@media (min-width: 1400px) {
  /* <<< XL <<< */
}
/* <<< */
@media (min-width: 1050px) {
  /* <<< LARGE <<< */
}
/* <<< */
@media (max-width: 1049px) {
  /* <<< MEDIUM <<< */
}
/* <<< */
@media (max-width: 749px) {
  /* <<< SMALL <<< */
}
/* <<< */
p {
  -webkit-margin-before: 0;
  margin-block-start: 0;
  -webkit-margin-after: 0;
  margin-block-end: 0;
  margin-top: 5px;
  margin-bottom: 5px;
}

* {
  -webkit-overflow-scrolling: touch;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

html,
body {
  font-family: "Brandon Grotesque";
  font-weight: 400;
  /* <<< */
}
@media (max-width: 749px) {
  html,
  body {
    /* <<< SMALL <<< */
    font-weight: 500;
  }
}

html {
  max-width: 100%;
  overflow-x: hidden;
  /* <<< */
}
@media (max-width: 749px) {
  html {
    /* <<< SMALL <<< */
  }
}

body {
  max-width: 100%;
  overflow-y: visible;
  /* <<< */
}
@media (max-width: 749px) {
  body {
    /* <<< SMALL <<< */
  }
}

a {
  color: #111;
  text-decoration: none;
}
a:hover {
  color: #222;
  text-decoration: none;
}

img {
  width: auto;
}

.fade-in-on-load {
  opacity: 0;
  will-change: transition;
  transition: opacity 0.25s ease-out;
}

button {
  display: block;
  border: 0;
  outline: 0;
  cursor: pointer;
  background-color: transparent;
}
button:focus {
  border: 0;
  outline: 0;
}

.wrapper {
  width: 100%;
  overflow: hidden;
}
.wrapper.homepage .maincontent {
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
}
.wrapper.homepage .schleier {
  pointer-events: none;
  position: absolute;
  width: 100vw;
  height: 100vh;
  z-index: 1000;
  background-blend-mode: multiply;
  top: 0;
  left: 0;
  right: 0;
  border: 0;
  background-color: rgba(0, 0, 0, 0.4);
}
.wrapper.contentpage {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: inherit;
  justify-content: flex-start;
  /* <<< */
}
@media (max-width: 749px) {
  .wrapper.contentpage {
    /* <<< SMALL <<< */
    flex-wrap: wrap;
    flex-direction: column-reverse;
    box-sizing: border-box;
    padding: 0 0 0 10px;
  }
}
.wrapper.contentpage .sidebar_wrapper {
  height: 100vh;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  min-width: 280px;
  width: 280px;
  max-width: 280px;
  /* <<< */
  /* <<< */
}
@media (max-width: 1049px) {
  .wrapper.contentpage .sidebar_wrapper {
    /* <<< MEDIUM <<< */
    min-width: 240px;
    width: 240px;
    max-width: 240px;
  }
}
@media (max-width: 749px) {
  .wrapper.contentpage .sidebar_wrapper {
    /* <<< SMALL <<< */
    display: none;
  }
}
.wrapper.contentpage .sidebar_wrapper .sidebar {
  min-width: 280px;
  width: 280px;
  max-width: 280px;
  min-height: 750px;
  top: 0;
  left: 0;
  height: 100vh;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  position: fixed;
  /* <<< */
  /* <<< */
  /* <<< */
}
@media (max-width: 1049px) {
  .wrapper.contentpage .sidebar_wrapper .sidebar {
    /* <<< MEDIUM <<< */
    min-height: unset;
    min-width: 240px;
    width: 240px;
    max-width: 240px;
  }
}
@media (max-width: 749px) {
  .wrapper.contentpage .sidebar_wrapper .sidebar {
    /* <<< SMALL <<< */
    position: unset;
  }
}
.wrapper.contentpage .sidebar_wrapper .sidebar .logobox {
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: center;
  text-align: center;
}
.wrapper.contentpage .sidebar_wrapper .sidebar .logobox a {
  color: #000;
}
.wrapper.contentpage .sidebar_wrapper .sidebar .logobox a:hover {
  color: #000;
}
.wrapper.contentpage .sidebar_wrapper .sidebar .logobox .logo_wrapper .logo {
  padding: 55px 20px 0;
  max-width: 35%;
  /* <<< */
  /* <<< */
}
@media (max-width: 1049px) {
  .wrapper.contentpage .sidebar_wrapper .sidebar .logobox .logo_wrapper .logo {
    /* <<< MEDIUM <<< */
    padding-top: 45px;
    max-width: 40%;
  }
}
@media (max-height: 549px) {
  .wrapper.contentpage .sidebar_wrapper .sidebar .logobox .logo_wrapper .logo {
    /* <<< LOW HEIGHT <<< */
    padding: 10px 20px 20px;
    max-width: 25%;
  }
}
.wrapper.contentpage .sidebar_wrapper .sidebar .logobox .logo_wrapper .name {
  padding: 10px 20px 5px;
  width: 100%;
  height: auto;
  max-width: 65%;
  /* <<< */
  /* <<< */
}
@media (max-width: 1049px) {
  .wrapper.contentpage .sidebar_wrapper .sidebar .logobox .logo_wrapper .name {
    /* <<< MEDIUM <<< */
    max-width: 65%;
    padding: 5px 0px;
  }
}
@media (max-height: 549px) {
  .wrapper.contentpage .sidebar_wrapper .sidebar .logobox .logo_wrapper .name {
    /* <<< LOW HEIGHT <<< */
    display: none;
  }
}
.wrapper.contentpage .sidebar_wrapper .sidebar .logobox .logo_wrapper .subline {
  margin: 0 auto;
  width: 128px;
  height: auto;
  padding: 0 20px;
  text-transform: uppercase;
  /* <<< */
}
@media (max-height: 549px) {
  .wrapper.contentpage
    .sidebar_wrapper
    .sidebar
    .logobox
    .logo_wrapper
    .subline {
    /* <<< LOW HEIGHT <<< */
    display: none;
  }
}
.wrapper.contentpage .sidebar_wrapper .sidebar .menubox {
  width: 100%;
}
.wrapper.contentpage .sidebar_wrapper .sidebar .menubox .sidebarmenu {
  display: flex;
  flex-flow: column wrap;
  align-items: stretch;
  justify-content: center;
  width: 100%;
  text-align: center;
}
.wrapper.contentpage .sidebar_wrapper .sidebar .menubox .sidebarmenu .link {
  padding: 5px 10px;
  font-size: 26px;
  font-weight: 400;
  /* <<< */
}
@media (max-width: 1049px) {
  .wrapper.contentpage .sidebar_wrapper .sidebar .menubox .sidebarmenu .link {
    /* <<< MEDIUM <<< */
    font-size: 26px;
  }
}
.wrapper.contentpage
  .sidebar_wrapper
  .sidebar
  .menubox
  .sidebarmenu
  .link:hover {
  color: #555;
}
.wrapper.contentpage
  .sidebar_wrapper
  .sidebar
  .menubox
  .sidebarmenu
  .link.btwlink {
  color: black;
  margin-top: 10px;
  font-family: "Brandon Grotesque";
  display: inline-block;
  font-size: 28px;
  padding-left: 10px;
  position: relative;
  top: -10px;
  display: none;
  /* <<< */
}
@media (max-width: 1049px) {
  .wrapper.contentpage
    .sidebar_wrapper
    .sidebar
    .menubox
    .sidebarmenu
    .link.btwlink {
    /* <<< MEDIUM <<< */
    font-size: 27px;
  }
}
.wrapper.contentpage
  .sidebar_wrapper
  .sidebar
  .menubox
  .sidebarmenu
  .link.btwlink:hover {
  color: #555;
}
.wrapper.contentpage
  .sidebar_wrapper
  .sidebar
  .menubox
  .sidebarmenu
  .link.btwlink
  .dots {
  padding-left: 4px;
  letter-spacing: 0.08em;
}
.wrapper.contentpage .sidebar_wrapper .sidebar .contactbox {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-end;
  text-align: center;
  width: 100%;
  padding-bottom: 30px;
  /* <<< */
  /* <<< */
}
@media (max-width: 1049px) {
  .wrapper.contentpage .sidebar_wrapper .sidebar .contactbox {
    /* <<< MEDIUM <<< */
    padding-bottom: 0px;
  }
}
@media (max-width: 749px) {
  .wrapper.contentpage .sidebar_wrapper .sidebar .contactbox {
    /* <<< SMALL <<< */
    align-items: flex-start;
    text-align: left;
  }
}
.wrapper.contentpage .sidebar_wrapper .sidebar .contactbox .getintouch {
  font-family: "Honey Butter";
  font-size: 35px;
  /* <<< */
  /* <<< */
}
@media (max-width: 1049px) {
  .wrapper.contentpage .sidebar_wrapper .sidebar .contactbox .getintouch {
    /* <<< MEDIUM <<< */
    font-size: 40px;
  }
}
@media (max-width: 749px) {
  .wrapper.contentpage .sidebar_wrapper .sidebar .contactbox .getintouch {
    /* <<< SMALL <<< */
    font-size: 45px;
    padding: 0;
    margin: 0;
    margin-top: -10px;
    height: 40px;
  }
  .wrapper.contentpage .sidebar_wrapper .sidebar .contactbox .getintouch.anim {
    transform-origin: left bottom;
    -webkit-animation-name: getintouch;
    animation-name: getintouch;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
}
.wrapper.contentpage .sidebar_wrapper .sidebar .contactbox .textbox {
  margin-top: 10px;
  margin-bottom: 10px;
}
.wrapper.contentpage .sidebar_wrapper .sidebar .contactbox .textbox p {
  margin: 0;
  line-height: 1em;
  font-size: 18px;
  padding: 5px 0;
  font-weight: 400;
  /* <<< */
}
@media (max-width: 749px) {
  .wrapper.contentpage .sidebar_wrapper .sidebar .contactbox .textbox p {
    /* <<< SMALL <<< */
    font-size: 24px;
  }
}
.wrapper.contentpage .sidebar_wrapper .sidebar .contactbox .socialmedia {
  padding-bottom: 20px;
}
.wrapper.contentpage
  .sidebar_wrapper
  .sidebar
  .contactbox
  .socialmedia
  .link
  img {
  max-height: 22px;
  padding: 5px;
  /* <<< */
}
@media (max-width: 749px) {
  .wrapper.contentpage
    .sidebar_wrapper
    .sidebar
    .contactbox
    .socialmedia
    .link
    img {
    /* <<< SMALL <<< */
    padding: 5px;
    padding-left: 0;
    max-height: 30px;
  }
}
@media (max-height: 549px) {
  .wrapper.contentpage .sidebar_wrapper .sidebar {
    /* <<< LOW HEIGHT <<< */
  }
  .wrapper.contentpage .sidebar_wrapper .sidebar .contactbox .getintouch {
    display: none;
  }
  .wrapper.contentpage .sidebar_wrapper .sidebar .contactbox .socialmedia {
    display: none;
  }
}
.wrapper.contentpage .maincontent {
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
  box-sizing: border-box;
}

#home .swiper-home {
  width: 100vw;
  height: 100vh;
  position: absolute;
}
#home .swiper-home .swiper-wrapper .swiper-slide .slider-image {
  width: 100vw;
  height: 100vh;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
#home .swiper-home .swiper-button-prev,
#home .swiper-home .swiper-button-next {
  z-index: 5000;
  margin-top: -50px;
  padding: 50px 35px;
  width: 22px;
  background-size: 22px 44px;
  opacity: 0.5;
  /* <<< */
}
#home .swiper-home .swiper-button-prev:hover,
#home .swiper-home .swiper-button-next:hover {
  opacity: 1;
}
@media (max-width: 749px) {
  #home .swiper-home .swiper-button-prev,
  #home .swiper-home .swiper-button-next {
    /* <<< SMALL <<< */
    display: none;
  }
}
#home .logobox_wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
#home .logobox_wrapper .logobox {
  z-index: 1000;
  width: 500px;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  max-width: 65%;
  /* <<< */
}
@media (max-width: 749px) {
  #home .logobox_wrapper .logobox {
    /* <<< SMALL <<< */
    max-width: 80%;
    height: 320px;
    width: 480px;
  }
}
#home .logobox_wrapper .logobox a {
  color: white;
}
#home .logobox_wrapper .logobox a:hover {
  color: white;
}
#home .logobox_wrapper .logobox .logolink {
  width: 100%;
}
#home .logobox_wrapper .logobox .logolink .name {
  width: 100%;
  padding: 50px 0 0 0;
  height: auto;
  text-align: center;
  text-align: center;
  /* <<< */
  /* <<< */
}
@media (max-width: 1049px) {
  #home .logobox_wrapper .logobox .logolink .name {
    /* <<< MEDIUM <<< */
  }
}
@media (max-width: 749px) {
  #home .logobox_wrapper .logobox .logolink .name {
    /* <<< SMALL <<< */
    padding: 10px 0;
  }
}

@-webkit-keyframes logo {
  0% {
    transform: rotateY(0deg);
  }
  20% {
    transform: rotateY(360deg);
  }
  100% {
    transform: rotateY(360deg);
  }
}

@keyframes logo {
  0% {
    transform: rotateY(0deg);
  }
  20% {
    transform: rotateY(360deg);
  }
  100% {
    transform: rotateY(360deg);
  }
}
@-webkit-keyframes getintouch {
  0% {
    transform: scale(1);
  }
  20% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes getintouch {
  0% {
    transform: scale(1);
  }
  20% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
#portfolio .maincontent {
  max-width: 1400px;
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  padding-right: 5px;
}
.wrapper.contentpage .maincontent .mobile_intro_logo {
  display: none;
}
@media (max-width: 749px) {
  .wrapper.contentpage .maincontent .mobile_intro_logo {
    display: flex;
    width: 100%;
    justify-content: center;
    padding: 52px 10px 64px 0;
    box-sizing: border-box;
    text-align: center;
  }
}
.wrapper.contentpage .maincontent .mobile_intro_logo .mobile_intro_logo_link {
  color: #000;
  border: 0;
  background: transparent;
  padding: 0;
}
.wrapper.contentpage
  .maincontent
  .mobile_intro_logo
  .mobile_intro_logo_link:hover {
  color: #000;
}
@media (max-width: 749px) {
  .wrapper.contentpage .maincontent .mobile_intro_logo .mobile_intro_logo_link {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
  }
}
.wrapper.contentpage .maincontent .mobile_intro_logo .logo_mark {
  display: none;
}
@media (max-width: 749px) {
  .wrapper.contentpage .maincontent .mobile_intro_logo .logo_mark {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: black;
    border-radius: 50%;
    overflow: hidden;
  }
}
@media (max-width: 749px) {
  .wrapper.contentpage .maincontent .mobile_intro_logo .logo_mark .logo {
    width: 100%;
    display: block;
  }
}
@media (max-width: 749px) {
  .wrapper.contentpage .maincontent .mobile_intro_logo .logo_wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 14px;
  }
}
@media (max-width: 749px) {
  .wrapper.contentpage .maincontent .mobile_intro_logo .logo_wrapper .name {
    width: 150px;
    padding: 4px 0;
  }
}
@media (max-width: 749px) {
  .wrapper.contentpage .maincontent .mobile_intro_logo .logo_wrapper .subline {
    width: 80px;
    padding-top: 6px;
  }
}
#portfolio .maincontent .filterbox {
  width: 100%;
  height: 130px;
  max-width: 1400px;
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-end;
  padding-bottom: 20px;
  text-align: center;
  box-sizing: border-box;
  /* <<< */
  /* <<< */
}
@media (max-width: 1049px) {
  #portfolio .maincontent .filterbox {
    /* <<< MEDIUM <<< */
    height: 125px;
    padding-bottom: 15px;
  }
}
@media (max-width: 749px) {
  #portfolio .maincontent .filterbox {
    /* <<< SMALL <<< */
    padding-top: 0;
    height: auto;
    padding-bottom: 10px;
  }
}
#portfolio .maincontent .filterbox .headline {
  display: none;
  text-align: left;
  font-size: 38px;
  padding-bottom: 10px;
  font-weight: 400;
  /* <<< */
}
@media (max-width: 749px) {
  #portfolio .maincontent .filterbox .headline {
    /* <<< SMALL <<< */
    font-size: 38px;
    padding-left: 2px;
    padding-bottom: 30px;
    color: #000;
    display: block;
  }
}
#portfolio .maincontent .filterbox .links {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-end;
  width: 100%;
  /* <<< */
}
@media (max-width: 749px) {
  #portfolio .maincontent .filterbox .links {
    /* <<< SMALL <<< */
    max-width: 85%;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
  }
}
#portfolio .maincontent .filterbox .links .link {
  padding: 5px 5px 0px;
  letter-spacing: 0em;
  color: #999;
  border: 0;
  outline: 0;
  cursor: pointer;
  font-weight: 400;
  font-size: 26px;
  /* <<< */
  /* <<< */
  /* <<< */
}
@media (min-width: 1400px) {
  #portfolio .maincontent .filterbox .links .link {
    /* <<< XL <<< */
    font-size: 26px;
  }
}
@media (max-width: 1049px) {
  #portfolio .maincontent .filterbox .links .link {
    /* <<< MEDIUM <<< */
    padding: 5px 5px;
    font-size: 24px;
  }
  #portfolio .maincontent .filterbox .links .link:first-child {
    padding-left: 0px;
  }
  #portfolio .maincontent .filterbox .links .link:last-child {
    padding-right: 5px;
  }
}
@media (max-width: 749px) {
  #portfolio .maincontent .filterbox .links .link {
    /* <<< SMALL <<< */
    letter-spacing: 0.02em;
    font-size: 22px;
    border: 1px solid #ddd;
    border-radius: 20px;
    margin: 0px 5px 5px 0;
    padding: 4px 10px 5px 10px;
    font-weight: 400;
  }
  #portfolio .maincontent .filterbox .links .link:first-child {
    padding-left: 10px;
  }
  #portfolio .maincontent .filterbox .links .link:last-child {
    padding-right: 8px;
  }
}
#portfolio .maincontent .filterbox .links .link:hover {
  color: #000;
  /* <<< */
}
@media (max-width: 749px) {
  #portfolio .maincontent .filterbox .links .link:hover {
    /* <<< SMALL <<< */
    color: #999;
    border: 1px solid #aaa;
  }
}
#portfolio .maincontent .filterbox .links .link.is-checked {
  color: #000;
  /* <<< */
}
@media (max-width: 749px) {
  #portfolio .maincontent .filterbox .links .link.is-checked {
    /* <<< SMALL <<< */
    border: 1px solid #000;
  }
}
#portfolio .maincontent .filterbox .links .link:last-child {
  padding-right: 12px;
}
#portfolio .maincontent .portfolio_grid {
  width: 100%;
  max-width: 1400px;
  float: left;
  overflow-y: hidden;
  box-sizing: border-box;
  padding-bottom: 50px;
}
#portfolio .maincontent .portfolio_grid img {
  width: 100%;
}
#portfolio .maincontent .portfolio_grid .project_wrapper {
  overflow: hidden;
  display: block;
  float: left;
  box-sizing: border-box;
  padding: 0;
  padding: 0px 8px 8px 0px;
  min-height: 0;
  position: relative;
  max-width: 33.33%;
  width: 33.33%;
  /* <<< */
  /* <<< */
  /* <<< */
}
@media (min-width: 1400px) {
  #portfolio .maincontent .portfolio_grid .project_wrapper {
    /* <<< XL <<< */
    max-width: 33.33%;
    width: 33.33%;
  }
}
@media (max-width: 1049px) {
  #portfolio .maincontent .portfolio_grid .project_wrapper {
    /* <<< MEDIUM <<< */
    max-height: 525px;
    width: 50%;
    max-width: 50%;
  }
}
@media (max-width: 749px) {
  #portfolio .maincontent .portfolio_grid .project_wrapper {
    /* <<< SMALL <<< */
  }
}
#portfolio
  .maincontent
  .portfolio_grid
  .project_wrapper.variation-present.filter-active.portrait
  .project_link.mainimage {
  display: none;
}
#portfolio
  .maincontent
  .portfolio_grid
  .project_wrapper.variation-present.filter-active.portrait
  .project_link.variation {
  display: flex;
}
#portfolio
  .maincontent
  .portfolio_grid
  .project_wrapper.variation-present:not(.filter-active)
  .project_link.mainimage {
  display: flex;
}
#portfolio
  .maincontent
  .portfolio_grid
  .project_wrapper.variation-present:not(.filter-active)
  .project_link.variation {
  display: none;
}
#portfolio
  .maincontent
  .portfolio_grid
  .project_wrapper:not(.variation-present)
  .project_link.mainimage {
  display: flex;
}
#portfolio
  .maincontent
  .portfolio_grid
  .project_wrapper:not(.variation-present)
  .project_link.variation {
  display: none;
}
#portfolio .maincontent .portfolio_grid .project_wrapper .project_link {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: flex-end;
  justify-content: center;
  min-height: 100px;
  height: 100%;
  width: 100%;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
#portfolio .maincontent .portfolio_grid .project_wrapper .project_link:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 8px;
  bottom: 8px;
  background-color: rgba(0, 0, 0, 0.7);
  opacity: 0;
  z-index: 1000;
  transition: all 0.4s;
  /* <<< */
  /* <<< */
}
@media (max-width: 1049px) {
  #portfolio .maincontent .portfolio_grid .project_wrapper .project_link:after {
    /* <<< MEDIUM <<< */
    bottom: 8px;
  }
}
@media (max-width: 749px) {
  #portfolio .maincontent .portfolio_grid .project_wrapper .project_link:after {
    /* <<< SMALL <<< */
    bottom: 8px;
  }
}
#portfolio .maincontent .portfolio_grid .project_wrapper .project_link .title {
  position: absolute;
  right: 0;
  left: 0;
  text-align: center;
  color: #ffffff;
  z-index: 1050;
  text-transform: lowercase;
  opacity: 0;
  transition: opacity 0.25s;
  font-size: 2.2vw;
  font-weight: 400;
  padding: 15px 10%;
  /* <<< */
  /* <<< */
  /* <<< */
}
@media (min-width: 1400px) {
  #portfolio
    .maincontent
    .portfolio_grid
    .project_wrapper
    .project_link
    .title {
    /* <<< XL <<< */
    font-size: 28px;
  }
}
@media (max-width: 1049px) {
  #portfolio
    .maincontent
    .portfolio_grid
    .project_wrapper
    .project_link
    .title {
    /* <<< MEDIUM <<< */
    font-size: 26px;
  }
}
@media (max-width: 749px) {
  #portfolio
    .maincontent
    .portfolio_grid
    .project_wrapper
    .project_link
    .title {
    /* <<< SMALL <<< */
    font-size: 20px;
  }
}
#portfolio
  .maincontent
  .portfolio_grid
  .project_wrapper
  .project_link:hover
  .title {
  opacity: 1;
  transition: all 0.4s;
}
#portfolio
  .maincontent
  .portfolio_grid
  .project_wrapper
  .project_link:hover:after {
  opacity: 1;
  transition: all 0.4s;
}
#portfolio
  .maincontent
  .portfolio_grid
  .project_wrapper
  .project_link:hover
  img {
  transform: scale(1.05);
  transition: all 0.4s;
}
#portfolio .maincontent .portfolio_grid .project_wrapper .project_link img {
  transform: scale(1);
  transition: all 1s;
  width: 100%;
}

#portfolio_project .maincontent {
  max-width: 1200px;
  padding-right: 15px;
  /* <<< */
}
@media (max-width: 749px) {
  #portfolio_project .maincontent {
    /* <<< SMALL <<< */
    padding-right: 10px;
  }
}
#portfolio_project .maincontent .title_wrapper {
  padding-top: 10px;
  width: 100%;
  display: flex;
  flex-flow: row nowrap;
  align-content: flex-end;
  align-items: flex-end;
  justify-content: flex-end;
  min-height: 122px;
  position: relative;
  cursor: pointer;
  /* <<< */
  /* <<< */
}
@media (max-width: 1049px) {
  #portfolio_project .maincontent .title_wrapper {
    /* <<< MEDIUM <<< */
    padding-top: 0;
    margin-top: 12px;
    height: unset;
    min-height: 100px;
    justify-content: flex-end;
  }
}
@media (max-width: 749px) {
  #portfolio_project .maincontent .title_wrapper {
    /* <<< SMALL <<< */
    margin-top: 10px;
    justify-content: flex-start;
    align-content: flex-start;
    align-items: flex-start;
    height: auto;
    min-height: 80px;
  }
}
#portfolio_project .maincontent .title_wrapper .title {
  max-width: 70%;
  text-align: right;
  font-size: 36px;
  color: #222;
  text-transform: lowercase;
  font-weight: 400;
  padding-bottom: 15px;
  margin-top: 30px;
  order: 2;
  /* <<< */
  /* <<< */
  /* <<< */
}
@media (min-width: 1400px) {
  #portfolio_project .maincontent .title_wrapper .title {
    /* <<< XL <<< */
    font-size: 36px;
  }
}
@media (max-width: 1049px) {
  #portfolio_project .maincontent .title_wrapper .title {
    /* <<< MEDIUM <<< */
    max-width: 85%;
    padding-bottom: 10px;
    padding-top: 20px;
    font-size: 34px;
  }
}
@media (max-width: 749px) {
  #portfolio_project .maincontent .title_wrapper .title {
    /* <<< SMALL <<< */
    font-size: 32px;
    line-height: 1.2em;
    padding: 10px 0;
    margin-top: 3px;
    text-align: left;
    max-width: 85%;
    padding-top: 40px;
    padding-bottom: 10px;
    order: 1;
  }
}
@-webkit-keyframes arrowdown {
  from {
    opacity: 0;
  }
  to {
    opacity: 0.2;
  }
}
@keyframes arrowdown {
  from {
    opacity: 0;
  }
  to {
    opacity: 0.2;
  }
}
#portfolio_project .maincontent .title_wrapper .arrow-wrapper {
  order: 1;
  position: relative;
  padding: 10px;
  /* <<< */
}
@media (max-width: 749px) {
  #portfolio_project .maincontent .title_wrapper .arrow-wrapper {
    /* <<< SMALL <<< */
    order: 2;
  }
}
#portfolio_project .maincontent .title_wrapper .arrow-wrapper .arrow-down {
  opacity: 0;
  -webkit-animation-name: arrowdown;
  animation-name: arrowdown;
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  width: 20px;
  height: 20px;
  position: absolute;
  top: -23px;
  left: -12px;
  transition: all 0.2s;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg width='44' height='26' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.391.33L22.12 19.059 40.849.33l3.05 3.05L22.12 25.159.341 3.38 3.391.33z' fill='%23000' fill-rule='evenodd'/%3E%3C/svg%3E");
  /* <<< */
  /* <<< */
}
@media (max-width: 1049px) {
  #portfolio_project .maincontent .title_wrapper .arrow-wrapper .arrow-down {
    /* <<< MEDIUM <<< */
    width: 16px;
    top: -13px;
    left: -5px;
  }
}
@media (max-width: 749px) {
  #portfolio_project .maincontent .title_wrapper .arrow-wrapper .arrow-down {
    /* <<< SMALL <<< */
    top: 60px;
    left: 9px;
  }
}
#portfolio_project
  .maincontent
  .title_wrapper:hover
  .arrow-wrapper
  .arrow-down {
  top: -16px;
  transition: all 0.2s;
  /* <<< */
  /* <<< */
}
@media (max-width: 1049px) {
  #portfolio_project
    .maincontent
    .title_wrapper:hover
    .arrow-wrapper
    .arrow-down {
    /* <<< MEDIUM <<< */
    top: -6px;
  }
}
@media (max-width: 749px) {
  #portfolio_project
    .maincontent
    .title_wrapper:hover
    .arrow-wrapper
    .arrow-down {
    /* <<< SMALL <<< */
    top: 62px;
  }
}
#portfolio_project .maincontent .images_wrapper {
  display: flex;
  flex-flow: column nowrap;
  align-content: flex-start;
  justify-content: flex-start;
  width: 100%;
}
#portfolio_project .maincontent .images_wrapper .image {
  width: 100%;
}
#portfolio_project .maincontent .images_wrapper .image img {
  height: auto;
  max-width: 100%;
  padding-bottom: 0px;
  margin-bottom: -1px;
  /* <<< */
}
#portfolio_project .maincontent .images_wrapper .image img.landscape {
  width: 100%;
}
#portfolio_project .maincontent .images_wrapper .image img.portrait {
  width: 66.66%;
  max-width: 66.66%;
}
#portfolio_project .maincontent .images_wrapper .image img.square {
  width: 100%;
  max-width: 100%;
  /* <<< */
}
@media (min-width: 1050px) {
  #portfolio_project .maincontent .images_wrapper .image img.square {
    /* <<< LARGE <<< */
    width: 66.66%;
    max-width: 66.66%;
  }
}
@media (max-width: 1049px) {
  #portfolio_project .maincontent .images_wrapper .image img {
    /* <<< MEDIUM <<< */
    padding-bottom: 0;
  }
}
#portfolio_project .maincontent #infos-anchor {
  position: relative;
  height: 0;
  top: -100px;
}
#portfolio_project .maincontent .infos_wrapper {
  margin-top: 30px;
  margin-bottom: 120px;
  width: 100%;
  display: flex;
  flex-flow: column nowrap;
  align-content: flex-end;
  align-items: flex-end;
  justify-content: center;
  /* <<< */
  /* <<< */
}
#portfolio_project .maincontent .infos_wrapper a {
  text-decoration: none;
  color: #666;
}
#portfolio_project .maincontent .infos_wrapper a:hover {
  color: black;
}
@media (max-width: 1049px) {
  #portfolio_project .maincontent .infos_wrapper {
    /* <<< MEDIUM <<< */
    margin-bottom: 70px;
  }
}
@media (max-width: 749px) {
  #portfolio_project .maincontent .infos_wrapper {
    /* <<< SMALL <<< */
    margin-top: 0px;
    align-items: flex-start;
    align-content: flex-start;
    margin-bottom: 30px;
  }
}
#portfolio_project .maincontent .infos_wrapper .text_wrapper {
  display: flex;
  flex-flow: column nowrap;
  align-content: flex-end;
  align-items: flex-end;
  justify-content: center;
  width: 60%;
  max-width: 400px;
  /* <<< */
  /* <<< */
}
@media (max-width: 1049px) {
  #portfolio_project .maincontent .infos_wrapper .text_wrapper {
    /* <<< MEDIUM <<< */
    width: 80%;
    max-width: 400px;
  }
}
@media (max-width: 749px) {
  #portfolio_project .maincontent .infos_wrapper .text_wrapper {
    /* <<< SMALL <<< */
    align-items: flex-start;
    align-content: flex-start;
  }
}
#portfolio_project .maincontent .infos_wrapper .text_wrapper .headline {
  font-size: 28px;
  color: #222;
  text-transform: lowercase;
  font-weight: 500;
  padding: 5px 0;
}
#portfolio_project .maincontent .infos_wrapper .text_wrapper .textbox {
  margin-top: 0px;
  text-align: right;
  color: #222;
  font-weight: 400;
  font-size: 16px;
  /* <<< */
}
#portfolio_project .maincontent .infos_wrapper .text_wrapper .textbox p {
  padding-top: 10px;
  font-size: 17px;
  line-height: 1.35em;
}
@media (max-width: 749px) {
  #portfolio_project .maincontent .infos_wrapper .text_wrapper .textbox {
    /* <<< SMALL <<< */
    text-align: left;
  }
}
#portfolio_project .maincontent .prevnext {
  align-self: flex-end;
  width: 100px;
  height: 100px;
  position: relative;
  margin-bottom: 0px;
  right: -10px;
  /* <<< */
}
@media (max-width: 749px) {
  #portfolio_project .maincontent .prevnext {
    /* <<< SMALL <<< */
    align-self: flex-start;
    right: 20px;
    margin-bottom: 0;
  }
}
#portfolio_project .maincontent .prevnext .prev,
#portfolio_project .maincontent .prevnext .next {
  position: absolute;
  top: 50%;
  width: 30px;
  height: 30px;
  margin-top: -22px;
  cursor: pointer;
  background-size: 20px 30px;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1010;
  opacity: 0.2;
  transition: opacity 0.15s;
  padding: 10px;
  display: block;
  /* <<< */
}
@media (max-width: 749px) {
  #portfolio_project .maincontent .prevnext .prev,
  #portfolio_project .maincontent .prevnext .next {
    /* <<< SMALL <<< */
    width: 30px;
  }
}
#portfolio_project .maincontent .prevnext .prev:hover,
#portfolio_project .maincontent .prevnext .next:hover {
  transition: opacity 0.15s;
  opacity: 0.5;
}
#portfolio_project .maincontent .prevnext .prev {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
  left: 10px;
  right: auto;
  /* <<< */
}
@media (max-width: 749px) {
  #portfolio_project .maincontent .prevnext .prev {
    /* <<< SMALL <<< */
    left: 5px;
  }
}
#portfolio_project .maincontent .prevnext .next {
  right: -10px;
  left: auto;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
  /* <<< */
}
@media (max-width: 749px) {
  #portfolio_project .maincontent .prevnext .next {
    /* <<< SMALL <<< */
    right: 0;
  }
}
#portfolio_project .maincontent .back {
  align-self: flex-end;
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 100px;
  /* <<< */
}
@media (max-width: 749px) {
  #portfolio_project .maincontent .back {
    /* <<< SMALL <<< */
    align-self: flex-start;
    margin-bottom: 40px;
  }
}
#portfolio_project .maincontent .back a {
  color: #666;
}
#portfolio_project .maincontent .back a:hover {
  color: #222;
}
#portfolio_project #footer {
  padding-right: 0;
}
#portfolio_project #footer .link:last-child {
  padding-right: 0;
}

#bytheway {
  padding-left: 0;
}
#bytheway .maincontent {
  width: 100%;
  padding-top: 10px;
  padding-right: 0px;
  max-width: 1400px;
}
#bytheway .maincontent .headline {
  font-family: "Honey Butter";
  position: fixed;
  top: 50px;
  left: 10px;
  font-size: 45px;
  z-index: 2050;
  display: none;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  transition: opacity 0.3s;
  transition-delay: 2s;
  opacity: 1;
  display: none;
  /* <<< */
  /* <<< */
}
@media (max-width: 749px) {
  #bytheway .maincontent .headline {
    /* <<< SMALL <<< */
    display: inline-block;
  }
}
#bytheway .maincontent .headline a {
  color: white;
  display: inline-block;
}
#bytheway .maincontent .headline .dots {
  padding-left: 5px;
  letter-spacing: 0.08em;
}
@media (max-width: 749px) {
  #bytheway .maincontent .headline {
    /* <<< SMALL <<< */
    display: inline-block;
    padding: 1px;
    color: white;
    font-size: 22vw;
  }
}
#bytheway .maincontent .bytheway_grid {
  width: 100%;
  height: auto;
  max-width: 1200px;
  overflow: visible;
  margin-top: -20px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-rows: -webkit-max-content;
  grid-auto-rows: max-content;
  grid-column-gap: 0px;
  /* <<< */
  /* <<< */
}
@media (max-width: 1049px) {
  #bytheway .maincontent .bytheway_grid {
    /* <<< MEDIUM <<< */
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: -webkit-max-content;
    grid-auto-rows: max-content;
    margin-bottom: 100px;
  }
}
@media (max-width: 749px) {
  #bytheway .maincontent .bytheway_grid {
    /* <<< SMALL <<< */
    grid-auto-rows: -webkit-max-content;
    grid-auto-rows: max-content;
    margin-top: -20px;
    margin-bottom: 10vw;
  }
}
#bytheway .maincontent .bytheway_grid .project_wrapper {
  display: inline-block;
  width: 100%;
  box-sizing: border-box;
  padding: 0;
  padding: 0px 0px 0px 0px;
  min-height: 0;
  max-height: 16.4vw;
  height: 16.4vw;
  position: relative;
  margin-bottom: 1px !important;
  /* <<< */
  /* <<< */
  /* <<< */
  /* <<< */
}
#bytheway .maincontent .bytheway_grid .project_wrapper:empty {
  display: none;
}
#bytheway .maincontent .bytheway_grid .project_wrapper:nth-child(2):before {
  position: absolute;
  display: block;
  content: "";
  z-index: 1000;
  top: -145px;
  left: 0px;
  width: 100%;
  height: 220px;
  background-image: url("../img/placeholder_bytheway.jpg");
  background-size: cover;
  /* <<< */
  /* <<< */
}
@media (max-width: 1049px) {
  #bytheway .maincontent .bytheway_grid .project_wrapper:nth-child(2):before {
    /* <<< MEDIUM <<< */
    display: none;
  }
}
@media (max-width: 749px) {
  #bytheway .maincontent .bytheway_grid .project_wrapper:nth-child(2):before {
    /* <<< SMALL <<< */
    display: none;
  }
}
#bytheway .maincontent .bytheway_grid .project_wrapper:first-child:before {
  position: absolute;
  display: none;
  content: "";
  z-index: 1000;
  top: -148px;
  left: 0px;
  width: 100%;
  height: 220px;
  background-image: url("../img/placeholder_bytheway.jpg");
  background-size: cover;
  /* <<< */
  /* <<< */
}
@media (max-width: 1049px) {
  #bytheway .maincontent .bytheway_grid .project_wrapper:first-child:before {
    /* <<< MEDIUM <<< */
    display: block;
    top: unset;
    bottom: 17.5vw;
  }
}
@media (max-width: 749px) {
  #bytheway .maincontent .bytheway_grid .project_wrapper:first-child:before {
    /* <<< SMALL <<< */
    top: unset;
    bottom: 25.8vw;
    display: block;
  }
}
@media (min-width: 1400px) {
  #bytheway .maincontent .bytheway_grid .project_wrapper {
    /* <<< XL <<< */
    max-height: 230px;
  }
}
@media (max-width: 1049px) {
  #bytheway .maincontent .bytheway_grid .project_wrapper {
    /* <<< MEDIUM <<< */
    height: 25vw;
    max-height: 25vw;
  }
}
@media (max-width: 749px) {
  #bytheway .maincontent .bytheway_grid .project_wrapper {
    /* <<< SMALL <<< */
    height: 33vw;
    max-height: 33vw;
  }
}
#bytheway .maincontent .bytheway_grid .project_wrapper:nth-of-type(3n + 1) a {
  margin-top: -20px;
  /* <<< */
}
@media (max-width: 1049px) {
  #bytheway .maincontent .bytheway_grid .project_wrapper:nth-of-type(3n + 1) a {
    /* <<< MEDIUM <<< */
    margin-top: 0;
  }
}
#bytheway
  .maincontent
  .bytheway_grid
  .project_wrapper:nth-of-type(3n + 1)
  a:after {
  top: -20px;
  bottom: 20px;
  /* <<< */
}
@media (max-width: 1049px) {
  #bytheway
    .maincontent
    .bytheway_grid
    .project_wrapper:nth-of-type(3n + 1)
    a:after {
    /* <<< MEDIUM <<< */
    top: 0;
    bottom: 0;
    right: 0;
  }
}
#bytheway .maincontent .bytheway_grid .project_wrapper:nth-of-type(3n + 2) a {
  margin-top: 80px;
  /* <<< */
}
@media (max-width: 1049px) {
  #bytheway .maincontent .bytheway_grid .project_wrapper:nth-of-type(3n + 2) a {
    /* <<< MEDIUM <<< */
    margin-top: 0;
  }
}
#bytheway
  .maincontent
  .bytheway_grid
  .project_wrapper:nth-of-type(3n + 2)
  a:after {
  top: 80px;
  bottom: -80px;
  /* <<< */
}
@media (max-width: 1049px) {
  #bytheway
    .maincontent
    .bytheway_grid
    .project_wrapper:nth-of-type(3n + 2)
    a:after {
    /* <<< MEDIUM <<< */
    top: 0;
    bottom: 0;
    right: 0;
  }
}
#bytheway .maincontent .bytheway_grid .project_wrapper:nth-of-type(3n) a {
  margin-top: 0px;
  /* <<< */
}
#bytheway .maincontent .bytheway_grid .project_wrapper:nth-of-type(3n) a:after {
  top: 0px;
  bottom: 0px;
  /* <<< */
}
@media (max-width: 1049px) {
  #bytheway
    .maincontent
    .bytheway_grid
    .project_wrapper:nth-of-type(3n)
    a:after {
    /* <<< MEDIUM <<< */
    top: 0;
    bottom: 0;
    right: 0;
  }
}
@media (max-width: 1049px) {
  #bytheway .maincontent .bytheway_grid .project_wrapper:nth-of-type(3n) a {
    /* <<< MEDIUM <<< */
    margin-top: unset;
  }
}
@media (max-width: 1049px) {
  #bytheway .maincontent .bytheway_grid .project_wrapper {
    /* <<< MEDIUM <<< */
  }
  #bytheway .maincontent .bytheway_grid .project_wrapper:nth-of-type(2n + 1) a {
    margin-top: 8vw;
  }
  #bytheway
    .maincontent
    .bytheway_grid
    .project_wrapper:nth-of-type(2n + 1)
    a:after {
    top: 8vw;
    bottom: -8vw;
  }
  #bytheway .maincontent .bytheway_grid .project_wrapper:nth-of-type(2n) {
    padding-right: 0;
  }
  #bytheway .maincontent .bytheway_grid .project_wrapper:nth-of-type(2n) a {
    margin-top: 0px;
  }
  #bytheway .maincontent .bytheway_grid .project_wrapper:nth-of-type(2n):after {
    top: 0px;
    bottom: 10px;
  }
}
#bytheway .maincontent .bytheway_grid .project_wrapper .project_link {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  height: 98%;
  width: 100%;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  /* <<< */
}
@media (max-width: 749px) {
  #bytheway .maincontent .bytheway_grid .project_wrapper .project_link {
    /* <<< SMALL <<< */
    line-height: 1.8em;
  }
}
#bytheway .maincontent .bytheway_grid .project_wrapper .project_link:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 10px;
  background-color: rgba(255, 255, 255, 0.85);
  opacity: 0;
  z-index: 1000;
  transition: opacity 0.25s;
}
#bytheway .maincontent .bytheway_grid .project_wrapper .project_link .title {
  padding: 0 20px;
  font-family: "Honey Butter";
  text-align: center;
  color: #222;
  z-index: 2000;
  font-size: 48px;
  opacity: 0;
  transition: opacity 0.25s;
  /* <<< */
  /* <<< */
}
@media (max-width: 1049px) {
  #bytheway .maincontent .bytheway_grid .project_wrapper .project_link .title {
    /* <<< MEDIUM <<< */
    font-size: 36px;
  }
}
@media (max-width: 749px) {
  #bytheway .maincontent .bytheway_grid .project_wrapper .project_link .title {
    /* <<< SMALL <<< */
    font-size: 10vw;
    padding: 0 5px;
  }
}
#bytheway
  .maincontent
  .bytheway_grid
  .project_wrapper
  .project_link:hover
  .title {
  opacity: 1;
  transition: opacity 0.15s;
}
#bytheway
  .maincontent
  .bytheway_grid
  .project_wrapper
  .project_link:hover:after {
  opacity: 1;
  transition: opacity 0.15s;
}
#bytheway .maincontent .bytheway_grid .project_wrapper .project_link img {
  width: 100%;
}
#bytheway .maincontent #footer {
  height: 250px;
  padding-right: 10px;
}
#bytheway .maincontent #footer .contactbox {
  padding-left: 10px;
}
#bytheway .maincontent #footer .links {
  /* <<< */
}
@media (max-width: 749px) {
  #bytheway .maincontent #footer .links {
    /* <<< SMALL <<< */
    padding-left: 10px;
  }
}

#bytheway_project {
  /* <<< */
}
@media (max-width: 749px) {
  #bytheway_project {
    /* <<< SMALL <<< */
    padding-left: 0;
  }
}
#bytheway_project .maincontent {
  width: 100%;
  padding-right: 15px;
  max-width: 1200px;
}
#bytheway_project .maincontent .title_wrapper {
  width: 100%;
  display: flex;
  flex-flow: column nowrap;
  align-content: flex-start;
  align-items: flex-start;
  justify-content: center;
  height: 140px;
}
#bytheway_project .maincontent .title_wrapper .title {
  max-width: 70%;
  text-align: left;
  font-size: 40px;
  color: #222;
  text-transform: lowercase;
  font-weight: 500;
}
#bytheway_project .maincontent .mainimage_wrapper {
  /* <<< */
}
@media (min-width: 1400px) {
  #bytheway_project .maincontent .mainimage_wrapper {
    /* <<< XL <<< */
    padding-left: 0;
  }
}
#bytheway_project .maincontent .mainimage_wrapper .image {
  width: 75%;
  /* <<< */
  /* <<< */
}
@media (max-width: 1049px) {
  #bytheway_project .maincontent .mainimage_wrapper .image {
    /* <<< MEDIUM <<< */
    width: 95%;
  }
}
@media (max-width: 749px) {
  #bytheway_project .maincontent .mainimage_wrapper .image {
    /* <<< SMALL <<< */
    width: 85%;
  }
}
#bytheway_project .maincontent .infos_wrapper {
  width: 100%;
}
#bytheway_project .maincontent .infos_wrapper .text_wrapper {
  margin-top: 40px;
  margin-bottom: 40px;
  max-width: 80%;
  display: flex;
  flex-flow: column nowrap;
  align-content: flex-start;
  align-items: flex-start;
  justify-content: center;
  padding-left: 10%;
  /* <<< */
  /* <<< */
  /* <<< */
}
#bytheway_project .maincontent .infos_wrapper .text_wrapper a {
  text-decoration: none;
  color: #666;
}
#bytheway_project .maincontent .infos_wrapper .text_wrapper a:hover {
  color: black;
}
@media (min-width: 1400px) {
  #bytheway_project .maincontent .infos_wrapper .text_wrapper {
    /* <<< XL <<< */
    margin-left: 80px;
  }
}
@media (max-width: 1049px) {
  #bytheway_project .maincontent .infos_wrapper .text_wrapper {
    /* <<< MEDIUM <<< */
    margin-left: 0;
    max-width: 100%;
    padding-right: 10%;
  }
}
@media (max-width: 749px) {
  #bytheway_project .maincontent .infos_wrapper .text_wrapper {
    /* <<< SMALL <<< */
    margin-top: 20px;
    padding-left: 10%;
    margin-bottom: 20px;
  }
}
#bytheway_project .maincontent .infos_wrapper .text_wrapper .headline {
  font-size: 55px;
  color: #222;
  font-weight: 500;
  padding: 5px 0;
  font-family: "Honey Butter";
  width: auto;
  /* <<< */
  /* <<< */
}
@media (max-width: 1049px) {
  #bytheway_project .maincontent .infos_wrapper .text_wrapper .headline {
    /* <<< MEDIUM <<< */
    font-size: 7vw;
  }
}
@media (max-width: 749px) {
  #bytheway_project .maincontent .infos_wrapper .text_wrapper .headline {
    /* <<< SMALL <<< */
    font-size: 15vw;
  }
}
#bytheway_project .maincontent .infos_wrapper .text_wrapper .textbox {
  text-align: left;
  font-size: 18px;
  line-height: 1.4em;
  color: #222;
  font-weight: 400;
  /* <<< */
}
@media (max-width: 1049px) {
  #bytheway_project .maincontent .infos_wrapper .text_wrapper .textbox {
    /* <<< MEDIUM <<< */
    font-size: 18px;
  }
}
#bytheway_project .maincontent .images_wrapper {
  display: block;
  overflow: hidden;
  box-sizing: border-box;
  padding-left: 5%;
  height: auto;
  width: 100%;
  /* <<< */
  /* <<< */
}
@media (min-width: 1400px) {
  #bytheway_project .maincontent .images_wrapper {
    /* <<< XL <<< */
    padding-left: 7%;
  }
}
@media (max-width: 1049px) {
  #bytheway_project .maincontent .images_wrapper {
    /* <<< MEDIUM <<< */
    padding-left: 5%;
  }
}
#bytheway_project .maincontent .images_wrapper .image_wrapper {
  min-width: 200px;
  max-width: 45%;
  display: block;
  overflow: hidden;
  padding: 0;
  margin-bottom: -4px;
  /* <<< */
}
#bytheway_project
  .maincontent
  .images_wrapper
  .image_wrapper:nth-child(6n + 1) {
  max-width: 40%;
  padding-left: 10%;
}
#bytheway_project
  .maincontent
  .images_wrapper
  .image_wrapper:nth-child(6n + 2) {
  max-width: 37%;
}
#bytheway_project
  .maincontent
  .images_wrapper
  .image_wrapper:nth-child(6n + 3) {
  max-width: 45%;
  padding-left: 5%;
}
#bytheway_project
  .maincontent
  .images_wrapper
  .image_wrapper:nth-child(6n + 4) {
  max-width: 35%;
  padding-left: 5%;
}
#bytheway_project
  .maincontent
  .images_wrapper
  .image_wrapper:nth-child(6n + 5) {
  max-width: 45%;
}
#bytheway_project .maincontent .images_wrapper .image_wrapper:nth-child(6n) {
  max-width: 30%;
}
@media (max-width: 1049px) {
  #bytheway_project .maincontent .images_wrapper .image_wrapper {
    /* <<< MEDIUM <<< */
    min-width: 55%;
  }
  #bytheway_project
    .maincontent
    .images_wrapper
    .image_wrapper:nth-child(6n + 1) {
    max-width: 80%;
    padding-left: 5%;
  }
  #bytheway_project
    .maincontent
    .images_wrapper
    .image_wrapper:nth-child(6n + 2) {
    max-width: 72%;
  }
  #bytheway_project
    .maincontent
    .images_wrapper
    .image_wrapper:nth-child(6n + 3) {
    max-width: 88%;
    padding-left: 5%;
  }
  #bytheway_project
    .maincontent
    .images_wrapper
    .image_wrapper:nth-child(6n + 4) {
    max-width: 68%;
    padding-left: 5%;
  }
  #bytheway_project
    .maincontent
    .images_wrapper
    .image_wrapper:nth-child(6n + 5) {
    max-width: 75%;
  }
  #bytheway_project .maincontent .images_wrapper .image_wrapper:nth-child(6n) {
    max-width: 85%;
  }
}
#bytheway_project .maincontent .images_wrapper .image_wrapper .image {
  width: 100%;
  height: auto;
}
#bytheway_project .maincontent .prevnext {
  align-self: flex-end;
  width: 100px;
  height: 100px;
  position: relative;
  margin-bottom: 0px;
  right: -10px;
  /* <<< */
}
@media (max-width: 749px) {
  #bytheway_project .maincontent .prevnext {
    /* <<< SMALL <<< */
    align-self: flex-start;
    right: 20px;
    margin-bottom: 0;
  }
}
#bytheway_project .maincontent .prevnext .prev,
#bytheway_project .maincontent .prevnext .next {
  position: absolute;
  top: 50%;
  width: 30px;
  height: 30px;
  margin-top: -22px;
  cursor: pointer;
  background-size: 20px 30px;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1010;
  opacity: 0.2;
  transition: opacity 0.15s;
  padding: 10px;
  display: block;
  /* <<< */
}
@media (max-width: 749px) {
  #bytheway_project .maincontent .prevnext .prev,
  #bytheway_project .maincontent .prevnext .next {
    /* <<< SMALL <<< */
    width: 30px;
  }
}
#bytheway_project .maincontent .prevnext .prev:hover,
#bytheway_project .maincontent .prevnext .next:hover {
  transition: opacity 0.15s;
  opacity: 0.5;
}
#bytheway_project .maincontent .prevnext .prev {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
  left: 10px;
  right: auto;
  /* <<< */
}
@media (max-width: 749px) {
  #bytheway_project .maincontent .prevnext .prev {
    /* <<< SMALL <<< */
    left: 5px;
  }
}
#bytheway_project .maincontent .prevnext .next {
  right: -10px;
  left: auto;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
  /* <<< */
}
@media (max-width: 749px) {
  #bytheway_project .maincontent .prevnext .next {
    /* <<< SMALL <<< */
    right: 0;
  }
}
#bytheway_project .maincontent .prevnext {
  margin-top: 100px;
  margin-left: 20px;
  align-self: flex-start;
  /* <<< */
  /* <<< */
}
@media (max-width: 1049px) {
  #bytheway_project .maincontent .prevnext {
    /* <<< MEDIUM <<< */
    margin-left: 4%;
  }
}
@media (max-width: 749px) {
  #bytheway_project .maincontent .prevnext {
    /* <<< SMALL <<< */
    margin-top: 50px;
    margin-left: 8%;
  }
}
#bytheway_project .maincontent .back {
  text-align: right;
  text-align: left;
  align-self: stretch;
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 80px;
  font-family: "Honey Butter";
  margin-left: 50px;
  /* <<< */
}
@media (max-width: 1049px) {
  #bytheway_project .maincontent .back {
    /* <<< MEDIUM <<< */
    text-align: left;
    font-size: 32px;
    margin-left: 8%;
  }
}
#bytheway_project .maincontent .back a {
  color: #555;
}
#bytheway_project .maincontent .back a:hover {
  color: #222;
}
#bytheway_project #footer {
  padding-right: 0;
  padding-left: 10px;
}
#info .maincontent {
  max-width: 1500px;
  width: 100%;
  padding-top: 150px;
  padding-left: 6%;
  padding-right: 40px;
  /* <<< */
}
@media (max-width: 1049px) {
  #info .maincontent {
    /* <<< MEDIUM <<< */
    padding-top: 90px;
    padding-left: 3%;
    padding-right: 20px;
  }
}
@media (max-width: 749px) {
  #info .maincontent {
    /* <<< SMALL <<< */
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }
}
#info .maincontent .images_collage {
  position: relative;
  width: min(100%, 960px);
  min-height: 0;
  margin-top: 35px;
  display: flex;
  align-items: flex-start;
}
#info .maincontent .headline_mobile {
  display: none;
}
#info .maincontent .images_collage:not(.single-image) {
  padding-bottom: 40px;
}
#info .maincontent .images_collage .image_card {
  position: relative;
  margin: 0;
  border: 0;
  padding: 0;
  background: transparent;
}
#info .maincontent .images_collage .image_card.is-toggleable {
  cursor: pointer;
  transition: transform 0.32s ease;
}
#info .maincontent .images_collage .image_card.is-toggleable:focus-visible {
  outline: 2px solid #222;
  outline-offset: 6px;
}
#info .maincontent .images_collage .image {
  display: block;
  width: 100%;
  height: auto;
}
#info .maincontent .images_collage .image_card_primary {
  width: min(33vw, 430px);
  max-width: calc(100% - 120px);
  z-index: 2;
}
#info .maincontent .images_collage .image_card_secondary {
  position: relative;
  top: auto;
  left: auto;
  width: min(36vw, 470px);
  max-width: calc(100% - 120px);
  margin-left: -52px;
  margin-top: 54px;
  z-index: 1;
}
#info
  .maincontent
  .images_collage.is-interactive[data-active-image="primary"]
  .image_card_primary {
  z-index: 2;
}
#info
  .maincontent
  .images_collage.is-interactive[data-active-image="primary"]
  .image_card_secondary {
  z-index: 1;
}
#info
  .maincontent
  .images_collage.is-interactive[data-active-image="secondary"]
  .image_card_primary {
  z-index: 1;
}
#info
  .maincontent
  .images_collage.is-interactive[data-active-image="secondary"]
  .image_card_secondary {
  z-index: 2;
}
@media (hover: hover) and (pointer: fine) {
  #info .maincontent .images_collage.is-interactive:hover .image_card_primary {
    transform: translate3d(-28px, -18px, 0);
  }
}
@media (hover: hover) and (pointer: fine) {
  #info
    .maincontent
    .images_collage.is-interactive:hover
    .image_card_secondary {
    transform: translate3d(40px, 30px, 0);
  }
}
#info .maincontent .images_collage.is-interactive.is-spread .image_card_primary {
  transform: translate3d(-22px, -18px, 0);
}
#info .maincontent .images_collage.is-interactive.is-spread .image_card_secondary {
  transform: translate3d(36px, 30px, 0);
}
#info .maincontent .images_collage.single-image {
  min-height: 0;
  display: block;
}
#info .maincontent .images_collage.single-image .image_card_primary {
  width: min(36vw, 470px);
  max-width: 100%;
}
@media (max-width: 1049px) {
  #info .maincontent .images_collage {
    /* <<< MEDIUM <<< */
    width: min(100%, 760px);
    margin-top: 45px;
  }
}
@media (max-width: 1049px) {
  #info .maincontent .images_collage:not(.single-image) {
    padding-bottom: 30px;
  }
}
@media (max-width: 1049px) {
  #info .maincontent .images_collage .image_card_primary {
    width: min(34vw, 300px);
    max-width: calc(100% - 90px);
  }
}
@media (max-width: 1049px) {
  #info .maincontent .images_collage .image_card_secondary {
    width: min(37vw, 330px);
    max-width: calc(100% - 90px);
    margin-left: -38px;
    margin-top: 44px;
  }
}
@media (max-width: 749px) {
  #info .maincontent .headline_mobile {
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding-left: 4vw;
    padding-right: 4vw;
    margin-top: 0;
    margin-bottom: 18px;
    font-size: 45px;
    letter-spacing: 0;
    color: #222;
    font-weight: 500;
    line-height: 0.95em;
    font-family: "Honey Butter";
  }
}
@media (max-width: 749px) {
  #info .maincontent .images_collage {
    /* <<< SMALL <<< */
    min-height: 0;
    margin-top: 18px;
    width: 100%;
    padding-left: 5vw;
    padding-right: 5vw;
    box-sizing: border-box;
    display: flex;
    flex-flow: column nowrap;
    align-items: flex-start;
  }
}
@media (max-width: 749px) {
  #info .maincontent .images_collage:not(.single-image) {
    padding-bottom: 44px;
  }
}
@media (max-width: 749px) {
  #info .maincontent .images_collage .image_card_primary {
    width: clamp(180px, 58vw, 240px);
    max-width: 100%;
  }
}
@media (max-width: 749px) {
  #info .maincontent .images_collage .image_card_secondary {
    position: relative;
    top: auto;
    left: auto;
    width: clamp(165px, 54vw, 225px);
    max-width: 100%;
    margin-left: clamp(56px, 14vw, 88px);
    margin-top: -26px;
    margin-right: 0;
    align-self: flex-start;
  }
}
@media (max-width: 749px) {
  #info .maincontent .images_collage.single-image .image_card_primary {
    width: clamp(190px, 60vw, 250px);
  }
}
@media (max-width: 749px) {
  #info
    .maincontent
    .images_collage.is-interactive.is-spread
    .image_card_primary {
    transform: translate3d(0, -28px, 0);
  }
}
@media (max-width: 749px) {
  #info
    .maincontent
    .images_collage.is-interactive.is-spread
    .image_card_secondary {
    transform: translate3d(0, 60px, 0);
  }
}
#info .maincontent .text_wrapper {
  margin-top: 95px;
  margin-bottom: 60px;
  width: min(54%, 720px);
  max-width: 720px;
  display: flex;
  flex-flow: column nowrap;
  align-content: flex-start;
  align-items: flex-start;
  justify-content: center;
  margin-left: clamp(120px, 18vw, 280px);
  padding-left: 0;
  /* <<< */
  /* <<< */
}
@media (max-width: 1049px) {
  #info .maincontent .text_wrapper {
    /* <<< MEDIUM <<< */
    margin-top: 80px;
    width: min(72%, 620px);
    max-width: 620px;
    margin-left: clamp(30px, 7vw, 90px);
  }
}
@media (max-width: 749px) {
  #info .maincontent .text_wrapper {
    /* <<< SMALL <<< */
    margin-top: 38px;
    margin-left: 0;
    width: auto;
    max-width: none;
    padding-left: 4vw;
    padding-right: 4vw;
  }
}
@media (max-width: 749px) {
  #info .maincontent .text_wrapper .headline {
    display: none;
  }
}
#info .maincontent .text_wrapper .headline {
  font-size: 45px;
  letter-spacing: 0;
  color: #222;
  font-weight: 500;
  padding: 5px 0;
  font-family: "Honey Butter";
}
#info .maincontent .text_wrapper .textbox {
  text-align: left;
  color: #222;
  font-weight: 400;
}
#info .maincontent .text_wrapper .quote_block {
  max-width: 620px;
  margin: 24px 0 64px;
  color: #222;
}
#info .maincontent .text_wrapper .quote_block p {
  margin: 0;
  font-size: 24px;
  line-height: 1.18em;
  letter-spacing: -0.01em;
}
#info .maincontent .text_wrapper .quote_block .quote_source {
  display: block;
  padding-top: 12px;
  font-size: 0.62em;
  line-height: 1.2em;
  letter-spacing: 0;
}
#info .maincontent .text_wrapper .about_block {
  font-size: 19px;
  line-height: 1.52em;
  margin-bottom: 92px;
}
#info .maincontent .text_wrapper .clients_block {
  font-size: 18px;
  line-height: 1.42em;
  opacity: 0.8;
}
#info .maincontent .text_wrapper .textbox p {
  padding-top: 10px;
}
#info .maincontent .text_wrapper .textbox p:first-child {
  padding-top: 0;
  margin-top: 0;
}
@media (max-width: 1049px) {
  #info .maincontent .text_wrapper .quote_block {
    margin: 20px 0 52px;
    max-width: 560px;
  }
}
@media (max-width: 1049px) {
  #info .maincontent .text_wrapper .quote_block p {
    font-size: 22px;
  }
}
@media (max-width: 1049px) {
  #info .maincontent .text_wrapper .about_block {
    font-size: 18px;
    margin-bottom: 74px;
  }
}
@media (max-width: 1049px) {
  #info .maincontent .text_wrapper .clients_block {
    font-size: 17px;
  }
}
@media (max-width: 749px) {
  #info .maincontent .text_wrapper .quote_block {
    margin: 0 0 34px;
  }
}
@media (max-width: 749px) {
  #info .maincontent .text_wrapper .quote_block p {
    font-size: 21px;
    line-height: 1.18em;
  }
}
@media (max-width: 749px) {
  #info .maincontent .text_wrapper .quote_block .quote_source {
    padding-top: 10px;
    font-size: 0.68em;
  }
}
@media (max-width: 749px) {
  #info .maincontent .text_wrapper .about_block {
    font-size: 17px;
    line-height: 1.5em;
    margin-bottom: 58px;
  }
}
@media (max-width: 749px) {
  #info .maincontent .text_wrapper .clients_block {
    font-size: 15px;
    line-height: 1.4em;
  }
}
#info .maincontent #footer {
  padding-right: 10px;
}
@media (max-width: 749px) {
  #info .maincontent #footer {
    padding-left: 4vw;
    padding-right: 4vw;
  }
}

#basicpage {
  /* <<< */
}
@media (max-width: 749px) {
  #basicpage {
    /* <<< SMALL <<< */
    flex-direction: column;
  }
}
#basicpage .maincontent {
  width: 100%;
  padding-top: 80px;
  padding-right: 10px;
  justify-content: space-between;
  max-width: 1400px;
  /* <<< */
}
@media (max-width: 749px) {
  #basicpage .maincontent {
    /* <<< SMALL <<< */
    padding-top: 40px;
  }
}
#basicpage .maincontent .content_wrapper {
  display: block;
}
#basicpage .maincontent .content_wrapper .title {
  padding-top: 25px;
  font-size: 36px;
  text-transform: lowercase;
  padding-bottom: 10px;
}
#basicpage .maincontent .content_wrapper .textbox {
  color: #444;
  padding-right: 10%;
}
#basicpage .maincontent .content_wrapper .textbox h3 {
  font-size: 16px;
  font-weight: 500;
  color: #444;
  padding: 0;
  margin: 20px 0 5px 0;
}
#basicpage .maincontent .content_wrapper .textbox h4 {
  font-size: 14px;
  margin: 10px 0 5px;
  font-weight: 400;
}
#basicpage .maincontent .content_wrapper .textbox p {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4em;
}
#basicpage .maincontent .content_wrapper .textbox ul {
  margin: 10px 0 15px;
}
#basicpage .maincontent .content_wrapper .textbox ul li {
  font-size: 14px;
  padding: 1px 0;
  font-weight: 400;
  line-height: 1.4em;
}
#basicpage .maincontent .content_wrapper .textbox strong {
  font-weight: 500;
}
#basicpage .maincontent .content_wrapper .textbox .downloads {
  padding: 20px 0;
}
#basicpage .maincontent .content_wrapper .textbox .downloads .link {
  color: #444;
  display: inline-block;
  font-size: 16px;
  padding: 15px 10px 0px 0px;
}
#basicpage .maincontent #footer {
  margin-top: 50px;
  height: 100px;
  justify-self: flex-end;
  padding-right: 10px;
  /* <<< */
}
@media (max-width: 749px) {
  #basicpage .maincontent #footer {
    /* <<< SMALL <<< */
    min-height: 100px;
    height: auto;
  }
}
@media (max-width: 749px) {
  #portfolio .maincontent,
  #portfolio_project .maincontent,
  #bytheway .maincontent,
  #bytheway_project .maincontent,
  #info .maincontent,
  #basicpage .maincontent {
    padding-top: 0;
  }
}

#footer {
  margin-top: auto;
  align-self: flex-end;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  width: 100%;
  height: 150px;
  max-width: 1400px;
  box-sizing: border-box;
  padding-right: 5px;
  padding-bottom: 20px;
  /* <<< */
}
#footer .contactbox {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-end;
  text-align: center;
  width: 100%;
  padding-bottom: 30px;
  /* <<< */
  /* <<< */
}
@media (max-width: 1049px) {
  #footer .contactbox {
    /* <<< MEDIUM <<< */
    padding-bottom: 0px;
  }
}
@media (max-width: 749px) {
  #footer .contactbox {
    /* <<< SMALL <<< */
    align-items: flex-start;
    text-align: left;
  }
}
#footer .contactbox .getintouch {
  font-family: "Honey Butter";
  font-size: 35px;
  /* <<< */
  /* <<< */
}
@media (max-width: 1049px) {
  #footer .contactbox .getintouch {
    /* <<< MEDIUM <<< */
    font-size: 40px;
  }
}
@media (max-width: 749px) {
  #footer .contactbox .getintouch {
    /* <<< SMALL <<< */
    font-size: 45px;
    padding: 0;
    margin: 0;
    margin-top: -10px;
    height: 40px;
  }
  #footer .contactbox .getintouch.anim {
    transform-origin: left bottom;
    -webkit-animation-name: getintouch;
    animation-name: getintouch;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
}
#footer .contactbox .textbox {
  margin-top: 10px;
  margin-bottom: 10px;
}
#footer .contactbox .textbox p {
  margin: 0;
  line-height: 1em;
  font-size: 18px;
  padding: 5px 0;
  font-weight: 400;
  /* <<< */
}
@media (max-width: 749px) {
  #footer .contactbox .textbox p {
    /* <<< SMALL <<< */
    font-size: 24px;
  }
}
#footer .contactbox .socialmedia {
  padding-bottom: 20px;
}
#footer .contactbox .socialmedia .link img {
  max-height: 22px;
  padding: 5px;
  /* <<< */
}
@media (max-width: 749px) {
  #footer .contactbox .socialmedia .link img {
    /* <<< SMALL <<< */
    padding: 5px;
    padding-left: 0;
    max-height: 30px;
  }
}
#footer .contactbox {
  display: none;
}
@media (max-width: 749px) {
  #footer {
    /* <<< SMALL <<< */
    padding-top: 50px;
    height: auto !important;
    align-items: flex-start;
    display: block;
    padding-bottom: 20px;
  }
  #footer .contactbox {
    display: flex;
  }
}
#footer .links {
  text-align: right;
  /* <<< */
}
@media (max-width: 749px) {
  #footer .links {
    /* <<< SMALL <<< */
    text-align: left;
  }
}
#footer .links .link {
  color: #999;
  font-size: 16px;
  font-weight: 400;
  padding: 5px 0px 15px 10px;
  /* <<< */
}
#footer .links .link:hover {
  color: #222;
}
@media (max-width: 749px) {
  #footer .links .link {
    /* <<< SMALL <<< */
    padding: 5px 10px 15px 0px;
  }
}

#mobilemenu {
  display: none;
  position: fixed;
  width: 100%;
  height: auto;
  top: 0;
  left: 0;
  color: black;
  background-color: white;
  z-index: 3100;
  /* <<< */
}
@media (max-width: 749px) {
  #mobilemenu {
    /* <<< SMALL <<< */
    display: block;
  }
  #mobilemenu.contentpage-intro-enabled {
    --mobilemenu-intro-offset: 0px;
  }
  #mobilemenu.contentpage-intro-enabled.intro-pending:not(.menuopen)
    .hamburger_wrapper {
    opacity: 0;
  }
  #mobilemenu.contentpage-intro-enabled.intro-visible:not(.menuopen) {
    background-color: transparent;
  }
  #mobilemenu.contentpage-intro-enabled.intro-visible:not(.menuopen)
    .hamburger_wrapper
    .hamburger {
    background-color: rgba(255, 255, 255, 0.92);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
  }
  #mobilemenu.contentpage-intro-enabled.intro-visible:not(.menuopen)
    .hamburger_wrapper
    .hamburger
    .hamburger_inner,
  #mobilemenu.contentpage-intro-enabled.intro-visible:not(.menuopen)
    .hamburger_wrapper
    .hamburger
    .hamburger_inner:after,
  #mobilemenu.contentpage-intro-enabled.intro-visible:not(.menuopen)
    .hamburger_wrapper
    .hamburger
    .hamburger_inner:before {
    background-color: #5f5f5f;
  }
}
#mobilemenu .clickcatcher {
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  background: transparent;
  z-index: 1000;
  width: 100vw;
  height: 100vh;
  transition: background-color 0.15s;
}
#mobilemenu .hamburger_wrapper {
  position: absolute;
  width: 100%;
  text-align: right;
  pointer-events: none;
  z-index: 3500;
}
@media (max-width: 749px) {
  #mobilemenu.contentpage-intro-enabled:not(.menuopen) .hamburger_wrapper {
    transform: translate3d(0, 0, 0);
  }
}
#mobilemenu .hamburger_wrapper .hamburger {
  pointer-events: all;
  z-index: 3010;
  position: relative;
  right: 0;
  top: 0;
  display: inline-block;
  margin: 10px;
  height: 50px;
  width: 50px;
  background-color: black;
  border-radius: 50%;
  text-align: right;
  transition: all 0.15s;
}
#mobilemenu .hamburger_wrapper .hamburger .hamburger_inner {
  opacity: 1;
  transition: all 0.15s;
  position: relative;
  top: 23px;
  width: 60%;
  height: 3px;
  background-color: white;
  margin: 0 auto;
}
#mobilemenu .hamburger_wrapper .hamburger .hamburger_inner:after,
#mobilemenu .hamburger_wrapper .hamburger .hamburger_inner:before {
  position: absolute;
  content: "";
  left: 0;
  width: 100%;
  height: 3px;
  background-color: white;
}
#mobilemenu .hamburger_wrapper .hamburger .hamburger_inner:after {
  top: -9px;
}
#mobilemenu .hamburger_wrapper .hamburger .hamburger_inner:before {
  bottom: -9px;
}
#mobilemenu .hamburger_wrapper .hamburger .logo {
  opacity: 0;
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  transition: all 0.15s;
}
#mobilemenu .hamburger_wrapper .hamburger .logo.showfe {
  transition: opacity 0.4s;
  opacity: 1;
}
#mobilemenu .hamburger_wrapper .hamburger .homelink {
  pointer-events: none;
}
#mobilemenu .hamburger_wrapper .logo_wrapper {
  position: relative;
  width: 100%;
  text-align: center;
  opacity: 0;
  z-index: 10000;
  height: 0;
  transition-delay: 0;
  transition: all 0s;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#mobilemenu .hamburger_wrapper .logo_wrapper .name {
  opacity: 0;
  transition: opacity 0.15s;
  width: 160px;
  padding: 4px 0;
}
#mobilemenu .hamburger_wrapper .logo_wrapper .subline {
  transition: opacity 0.15s;
  opacity: 0;
  padding-top: 6px;
  width: 110px;
}
#mobilemenu .hamburger_wrapper .cross {
  opacity: 0;
  transition: all 0.15s;
  z-index: 100;
  position: fixed;
  right: 10px;
  top: 10px;
  border: 0;
  outline: 0;
  background: transparent;
}
#mobilemenu .hamburger_wrapper .cross img {
  padding: 12px 7px;
  background: transparent;
  width: 26px;
  height: 26px;
  border: 0;
  outline: 0;
}
#mobilemenu .hamburger_wrapper.menuopen {
  pointer-events: all;
  transform: translate3d(0, 0, 0);
}
#mobilemenu .hamburger_wrapper.menuopen .cross {
  opacity: 0.5;
  z-index: 1090;
  transition: all 0.15s;
  transition-delay: 0.15s;
  transition-duration: 0.5s;
}
#mobilemenu .hamburger_wrapper.menuopen .hamburger {
  transition: all 0.15s;
  right: 50%;
  width: 70px;
  height: 70px;
  margin-right: -35px;
  margin-top: 20px;
  margin-bottom: 0;
}
#mobilemenu .hamburger_wrapper.menuopen .hamburger .hamburger_inner {
  opacity: 0;
}
#mobilemenu .hamburger_wrapper.menuopen .hamburger .logo {
  opacity: 1;
}
#mobilemenu .hamburger_wrapper.menuopen .hamburger .homelink {
  pointer-events: all;
  cursor: pointer;
}
#mobilemenu .hamburger_wrapper.menuopen .logo_wrapper {
  height: auto;
  opacity: 1;
}
#mobilemenu .hamburger_wrapper.menuopen .logo_wrapper .name {
  transition: opacity 0.4s;
  transition-delay: 0.1s;
  opacity: 1;
}
#mobilemenu .hamburger_wrapper.menuopen .logo_wrapper .subline {
  transition: opacity 0.4s;
  transition-delay: 0.1s;
  opacity: 1;
}
#mobilemenu .menuwrapper {
  transition: all 0.15s;
  position: absolute;
  top: -300px;
  opacity: 0;
  height: 70px;
  overflow-y: hidden;
  width: 100%;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  background-color: white;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  z-index: 2500;
}
#mobilemenu .menuwrapper .menu .menuitems_wrapper {
  padding-top: 35px;
  padding-bottom: 10px;
  text-align: center;
  opacity: 0;
}
#mobilemenu .menuwrapper .menu .menuitems_wrapper .menuitem {
  font-size: 32px;
  padding: 0 0 8px 0;
  font-weight: 400;
}
#mobilemenu .menuwrapper .menu .menuitems_wrapper .menuitem.btwlink {
  color: black;
  margin-top: 10px;
  margin-bottom: 20px;
  font-family: "Brandon Grotesque";
  display: inline-block;
  font-size: 28px;
  padding-left: 5px;
  position: relative;
  top: -10px;
}
#mobilemenu .menuwrapper .menu .menuitems_wrapper .menuitem.btwlink:hover {
  color: #222;
}
#mobilemenu .menuwrapper .menu .menuitems_wrapper .menuitem.btwlink .dots {
  padding-left: 4px;
  letter-spacing: 0.08em;
}
#mobilemenu .menuwrapper .menu .menuitems_wrapper .menuitem:last-child {
  margin-top: 50px;
}
#mobilemenu .menuwrapper .menu .menuitems_wrapper .menuitem .contactlink {
  text-transform: unset;
  padding-top: 20px;
  font-family: "Honey Butter";
  font-size: 34px;
}
#mobilemenu.menuopen .menuwrapper {
  top: 0;
  opacity: 1;
  height: auto;
  padding-top: 170px;
}
#mobilemenu.menuopen .menuwrapper .menu .menuitems_wrapper {
  transition: opacity 0.4s;
  transition-delay: 0.1s;
  opacity: 1;
}
#mobilemenu.menuopen .clickcatcher {
  pointer-events: all;
  background-color: rgba(0, 0, 0, 0.4);
  transition: background-color 0.15s;
}

.pwcmb--bottom_overlay {
  z-index: 10000;
}
.pwcmb--bottom_overlay .pwcmb-widget {
  background-color: white;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
.pwcmb--bottom_overlay .pwcmb-widget .pwcmb-widget__title {
  margin-top: 0px;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 500;
  color: #333;
}
.pwcmb--bottom_overlay .pwcmb-widget .pwcmb-widget__text {
  color: #333;
  line-height: 1.4;
  font-size: 16px;
  font-weight: 400;
}
.pwcmb--bottom_overlay .pwcmb-widget button {
  padding: 5px 10px;
  color: #999;
  background-color: white;
  border-radius: 4px;
  margin: 5px;
  border: 1px solid #999;
  width: 100%;
}
.pwcmb--bottom_overlay .pwcmb-widget button:first-child {
  font-size: 18px;
  font-weight: 500;
  color: white;
  margin-bottom: 10px;
  border: 1px solid #00b346;
  background-color: #00b346;
}
.pwcmb--bottom_overlay .pwcmb-widget button:first-child:hover {
  border: 1px solid #00d855;
  background-color: #00d855;
  color: #fff;
}
.pwcmb--bottom_overlay .pwcmb-widget button:hover {
  color: #fff;
  border: 1px solid #999;
  background-color: #999;
}
.pwcmb--bottom_overlay .pwcmb-widget .pwcmb-option-wrapper {
  padding: 5px 10px;
  margin: 10px 0;
}
.pwcmb--bottom_overlay .pwcmb-widget .pwcmb-option-wrapper:first-child {
  margin-top: 20px;
}
.pwcmb--bottom_overlay .pwcmb-widget .pwcmb-option-wrapper input {
  height: 20px;
  width: 20px;
}
.pwcmb--bottom_overlay .pwcmb-widget .pwcmb-option-wrapper label {
  font-size: 16px;
  font-weight: 400;
  padding: 0 10px;
  position: relative;
  top: -5px;
}
