* {
  box-sizing: border-box;
  margin: 0;
  font: 0;
}

ol,
ul,
li {
  list-style: none;
  margin: 0;
  padding: 0;
}

img {
  display: block;
}

::selection {
  background-color: #c8f01e;
}

h1,
h2,
h3,
h4,
a,
p,
b,
strong,
li,
span,
input,
::placeholder,
label,
textarea,
div {
  font-family: "Work Sans", Arial, Helvetica, sans-serif;
  color: #4b4b4b;
  font-size: 18px;
  font-weight: 300;
  line-height: 150%;
  list-style-type: none;
}

h1,
h2,
h3,
h4 {
  display: inline;
}

.title {
  position: relative;
  margin-top: 20px;
  margin-bottom: 50px;
  height: 30px;
}

.title::before {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  background-color: #4b4b4b;
  height: 1px;
  width: 100%;
}

.headline1 {
  font-size: 32px;
  text-transform: uppercase;
  font-weight: 300;
  display: block;
}

.headline1--top {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: #d0ccc8;
  padding-right: 50px;
}

.headline2 {
  font-size: 32px;
  font-weight: 400;
  line-height: 100%;
  margin-bottom: 20px;
  display: block;
}

.headline3 {
  font-weight: 500;
  margin-bottom: 10px;
  margin-top: 30px;
  display: block;
}

b,
strong {
  font-weight: 500;
}

a {
  text-decoration: none;
}

.button {
  display: inline-block;
  background-color: #4b4b4b;
  color: #d0ccc8;
  width: unset !important;
  padding: 6px 40px;
  margin-top: 20px;
  transition: 0.25s;
  cursor: pointer;
  font-weight: 500;
  -webkit-appearance: none;
  outline: none !important;
}

.button:hover {
  color: #c8f01e;
}

@media only screen and (max-width: 766px) {
  h1,
  h2,
  h3,
  h4,
  a,
  p,
  b,
  strong,
  li,
  span,
  input,
  ::placeholder,
  label,
  textarea,
  div {
    font-size: 16px;
  }

  .headline1 {
    font-size: 24px;
    font-weight: 400;
  }

  .headline2 {
    font-size: 24px;
    font-weight: 400;
  }
}

body {
  background-color: #d0ccc8;
  min-width: 360px;
}

.wrapper {
  padding-left: 50px;
  padding-right: 50px;
}

@media only screen and (max-width: 766px) {
  .wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.page strong {
  display: block;
  padding-top: 20px;
}

.menu {
  display: grid;
  grid-template-columns: auto auto;
  align-content: stretch;
  grid-auto-flow: column;
  top: 50px;
  padding-inline-start: 0;
  height: 120px;
}

.menu__logo {
  display: grid;
  align-items: center;
}

.menu__logo img {
  height: 50px;
}

.menu__nav {
  display: grid;
  grid-auto-flow: column;
  align-items: center;
  justify-content: end;
  gap: 30px;
}

.menu__nav i {
  font-size: 20px;
  transition: 0.25s;
}

.menu__nav li {
  height: 50px;
}

.menu__nav li.social a::before {
  display: none;
}

.menu__nav a {
  display: block;
  position: relative;
  top: 0;
  left: 0;
  line-height: 50px;
  font-weight: 400;
}

.menu__nav a::before {
  display: block;
  content: "";
  position: absolute;
  bottom: 17px;
  left: -6px;
  width: calc(100% + 12px);
  background-color: #c8f01e;
  height: 6px;
  transition: 0.25s;
  z-index: -1;
  opacity: 0;
}

.menu__nav a:hover::before {
  opacity: 1;
}

.menu-mobile {
  display: none;
}

@media only screen and (max-width: 1200px) {
  .menu__nav {
    gap: 20px;
  }
}

@media only screen and (max-width: 1024px) {
  .menu {
    display: none;
  }

  body {
    padding-top: 100px;
  }

  .menu-mobile {
    display: block;
    position: fixed;
    left: 0;
    top: 0;
    background-color: #d0ccc8;
    height: 100%;
    width: 100%;
    z-index: 3;
  }

  .menu-mobile__logo {
    position: absolute;
    top: 30px;
    left: 50px;
  }

  .menu-mobile__x {
    position: absolute;
    right: 50px;
    top: 40px;
    cursor: pointer;
  }

  .menu-mobile__ham {
    display: none;
    position: absolute;
    right: 50px;
    top: 45px;
    cursor: pointer;
  }

  .menu-mobile__nav {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .menu-mobile__nav li {
    text-align: center;
  }

  .menu-mobile__nav a {
    width: fit-content;
    text-align: center;
    line-height: 50px;
    font-weight: 400;
    font-size: 24px;
  }

  .menu-mobile.close {
    height: 100px;
  }

  .menu-mobile.close .menu-mobile__nav,
  .menu-mobile.close .menu-mobile__x {
    display: none;
    display: none;
  }

  .menu-mobile.close .menu-mobile__ham {
    display: block;
  }
}

@media only screen and (max-width: 766px) {
  body {
    padding-top: 80px;
  }

  .menu-mobile__logo {
    top: 20px;
    left: 20px;
  }

  .menu-mobile__x {
    right: 20px;
    top: 30px;
  }

  .menu-mobile__ham {
    right: 20px;
    top: 35px;
  }

  .menu-mobile.close {
    height: 80px;
  }
}

.home {
  display: grid;
  grid-template-columns: auto 1fr;
  position: absolute;
  gap: 100px;
  left: 50px;
  bottom: 50px;
  width: calc(100% - 100px);
}

.home__text {
  border-top: 1px solid #4b4b4b;
  border-bottom: 1px solid #4b4b4b;
  display: grid;
  align-content: center;
  justify-items: start;
  padding-bottom: 50px;
  height: calc(100vh - 220px);
  max-width: 600px;
}

.home__text span {
  margin-top: 50px;
  z-index: 2;
}

.home__text p,
.home__text h1,
.home__text h2,
.home__text h3,
.home__text h4 {
  font-weight: 400;
  display: inline;
}

.home__text .headline {
  font-size: 90px;
  font-weight: 100;
  line-height: 100%;
  text-transform: uppercase;
}

.home__img {
  width: 100%;
  object-fit: cover;
  height: calc(100vh - 220px);
}

.home__img--small {
  display: none;
}

.home .button {
  margin-top: 50px;
  position: relative;
}

.home .button::before {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  top: 0;
  left: 0;
  height: 400px;
  background-color: #c8f01e;
  transform: translateY(-100%);
  z-index: 1;
  background: linear-gradient(to top, #c8f01e, rgba(200, 240, 30, 0));
}

.home .saw {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: #d0ccc8;
  padding: 16px 20px 20px;
}

.home .saw strong {
  font-size: 14px;
}

@media only screen and (max-width: 1200px) {
  .home__text p {
    max-width: 400px;
  }

  .home__text .headline {
    font-size: 60px;
    font-weight: 200;
    line-height: 100%;
    text-transform: uppercase;
  }
}

@media only screen and (max-width: 1024px) {
  .home {
    gap: 50px;
    bottom: 40px;
  }

  .home__text {
    padding-bottom: 20px;
  }

  .home__text p {
    max-width: 350px;
    margin-top: 20px;
  }

  .home__text .headline {
    font-size: 50px;
    font-weight: 200;
    line-height: 100%;
    text-transform: uppercase;
  }
}

@media only screen and (max-width: 767px) {
  .home {
    left: 20px;
    bottom: 50px;
    width: calc(100% - 40px);
  }
}

@media only screen and (max-width: 766px) {
  .home {
    position: unset;
    grid-template-columns: 100%;
    grid-template-rows: 500px auto;
    gap: 50px;
    width: 100%;
  }

  .home__text {
    width: 100%;
    margin-bottom: 50px;
    margin-top: 0;
    padding-top: 50px;
    padding-bottom: 50px;
    height: unset;
  }

  .home__text p {
    width: 100%;
    max-width: unset;
    margin-top: 20px;
  }

  .home__text .headline {
    margin-top: 0;
  }

  .home__img {
    display: none;
  }

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

  .home .button::before {
    height: 600px;
  }

  .home .saw {
    top: 350px;
  }
}

.projects {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 50px;
}

.projects--publications {
  grid-template-columns: repeat(5, 1fr);
}

.projects__single {
  display: block;
}

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

.projects__single .name b {
  display: block;
  margin-top: 20px;
}

.projects__single .name p {
  font-size: 15px;
  font-weight: 300;
}

.projects__image {
  position: relative;
}

.projects__cover {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: 0.25s;
}

.projects__cover .plus {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 50px;
  height: 2px;
  transform: translate(-50%, -50%);
  background-color: #c8f01e;
}

.projects__cover .plus--portait {
  width: 2px;
  height: 50px;
}

.projects__cover:hover {
  opacity: 1;
}

@media only screen and (max-width: 1024px) {
  .projects {
    grid-template-columns: 1fr 1fr;
  }

  .projects--publications {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media only screen and (max-width: 766px) {
  .projects {
    grid-template-columns: 1fr;
  }

  .projects--publications {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 20px;
  }
}

.project {
  width: 100%;
}

.project__thumbnail {
  width: 100%;
  height: auto;
  margin-bottom: 50px;
}

.project__info {
  display: grid;
  grid-template-columns: auto repeat(4, minmax(100px, 200px)) auto;
  grid-template-rows: auto;
  grid-template-areas: "empty-1 label-name label-localization label-area label-year empty-2" "empty-3 content-name content-localization content-area content-year empty-4" "empty-5 content-description content-description content-description content-description empty-6";
}

.project__info b {
  font-size: 14px;
  font-weight: 600;
}

.project .empty {
  padding: 20px;
  border-bottom: 1px #4b4b4b solid;
}

.project .empty--1 {
  grid-area: empty-1;
  border-top: 1px #4b4b4b solid;
}

.project .empty--2 {
  grid-area: empty-2;
  border-top: 1px #4b4b4b solid;
}

.project .empty--3 {
  grid-area: empty-3;
}

.project .empty--4 {
  grid-area: empty-4;
}

.project .empty--5 {
  grid-area: empty-5;
}

.project .empty--6 {
  grid-area: empty-6;
}

.project .label {
  padding: 12px 20px;
  border-top: 1px #4b4b4b solid;
  border-bottom: 1px #4b4b4b solid;
}

.project .label--name {
  grid-area: label-name;
  border-right: 1px #4b4b4b solid;
}

.project .label--year {
  grid-area: label-year;
}

.project .label--area {
  grid-area: label-area;
  border-right: 1px #4b4b4b solid;
}

.project .label--localization {
  grid-area: label-localization;
  border-right: 1px #4b4b4b solid;
}

.project .content {
  padding: 20px;
  border-bottom: 1px #4b4b4b solid;
}

.project .content--name {
  grid-area: content-name;
  border-right: 1px #4b4b4b solid;
}

.project .content--year {
  grid-area: content-year;
}

.project .content--area {
  grid-area: content-area;
  border-right: 1px #4b4b4b solid;
}

.project .content--localization {
  grid-area: content-localization;
  border-right: 1px #4b4b4b solid;
}

.project .content--description {
  grid-area: content-description;
}

.project .content--description p {
  font-size: 16px;
}

.project__others {
  padding-top: 100px;
  border-top: 1px solid #4b4b4b;
}

.project__gallery {
  margin: 50px 0 100px;
}
/* 
.modula-fancybox-caption,
.modula-fancybox-infobar {
  display: none !important;
}

.modula-fancybox-button {
  background-color: #4b4b4b !important;
}

.modula-fancybox-button svg path {
  fill: #c8f01e !important;
}

.figc.no-description {
  width: 0px !important;
  padding: 0 !important;
}

.figc {
  background: linear-gradient(
    to top,
    #c8f01e,
    rgba(200, 240, 30, 0)
  ) !important;
  display: grid !important;
  align-content: end !important;
  justify-content: start !important;
  padding: 20px !important;
  width: 200px !important;
  width: 200px !important;
  height: 100% !important;
}

.modula-item-content {
  display: grid !important;
  justify-content: stretch !important;
  width: 0px !important;
  height: 100% !important;
  transition: none !important;
}

.figc p {
  font-size: 14px !important;
  text-align: left !important;
  padding: 0 !important;
}

.modula-item-image-continer {
  position: absolute !important;
  left: 0 !important;
  top: 0 !important;
  width: 100% !important;
  height: 100% !important;
}

.pic {
  transition: none !important;
} */

@media only screen and (max-width: 766px) {
  .project__thumbnail {
    width: 100%;
    height: 250px;
    object-fit: cover;
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 766px) {
  .project__info {
    grid-template-columns: auto 1fr;
    align-items: stretch;
    grid-template-rows: auto;
    grid-template-areas: "label-name content-name" "label-localization content-localization" "label-area content-area" "label-year content-year" "content-description content-description";
  }

  .project .content {
    padding: 12px;
  }

  .project .content p {
    font-size: 18px;
  }

  .project .content--description p {
    font-size: 14px;
    font-weight: 400;
  }

  .project .label,
  .project .content {
    border: none;
  }

  .project .label {
    border-bottom: 1px solid #4b4b4b;
    border-right: 1px solid #4b4b4b;
  }

  .project .label--name {
    border-top: 1px solid #4b4b4b;
  }

  .project .content {
    border-bottom: 1px solid #4b4b4b;
  }

  .project .content--name {
    border-top: 1px solid #4b4b4b;
  }

  .project .empty {
    display: none;
  }
}

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

.about .marta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 50px;
  margin-bottom: 50px;
  margin-top: 50px;
  min-height: 400px;
}

.about .more {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-flow: row;
  grid-gap: 100px;
  margin-bottom: 100px;
}

.about li {
  margin-bottom: 8px;
}

.about .image {
  position: relative;
}

.about .image--small {
  height: 300px;
  margin-bottom: 30px;
}

.about .image--small::before {
  top: 300px !important;
  height: 80px !important;
}

.about .image::before {
  position: absolute;
  left: 0;
  top: 400px;
  transform: translateY(-100%);
  display: block;
  content: "";
  height: 120px;
  width: 100%;
  background: linear-gradient(to top, #c8f01e, rgba(200, 240, 30, 0));
  z-index: -1;
}

.about .image img {
  width: auto;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  height: 400px;
}

.about .team {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-flow: row;
  grid-gap: 100px;
  margin-bottom: 100px;
}

.about .team__designer img {
  margin-bottom: 20px;
  height: 300px;
  width: auto;
}

.about .team__designer .headline1 {
  margin-bottom: 20px;
  line-height: 100%;
}

.about .team__designer b {
  display: inline-block;
  margin-bottom: 20px;
}

@media only screen and (max-width: 1024px) {
  .about .marta {
    margin-bottom: 0px;
  }

  .about .image::before {
    top: 300px;
  }

  .about .image img {
    height: 300px;
  }

  .about .image--small {
    height: 200px;
    margin-bottom: 20px;
  }

  .about .image--small::before {
    top: 200px !important;
    height: 80px !important;
  }

  .about .team {
    grid-template-columns: 1fr 1fr;
    grid-gap: 50px;
    margin-bottom: 50px;
  }

  .about .team__designer img {
    height: 200px;
    margin-bottom: 0;
  }
}

@media only screen and (max-width: 766px) {
  .about .marta {
    grid-template-columns: 1fr;
    grid-template-rows: 300px auto;
    gap: 20px;
  }

  .about .image img {
    top: unset;
    bottom: 0;
  }

  .about .team {
    grid-template-columns: 1fr;
  }
}

.contact .form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  margin-top: -20px;
  margin-bottom: 100px;
}

.contact .form p {
  margin-bottom: 20px;
}

.contact span,
.contact label,
.contact input,
.contact textarea {
  display: block;
  width: 100% !important;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #d0ccc8;
}

.contact .info {
  margin-top: 30px;
}

.contact .wpcf7 label,
.contact .wpcf7 p {
  font-size: 14px;
  margin-top: 20px;
  font-weight: 600;
}

.contact input,
.contact textarea {
  height: 40px;
  border-radius: 0;
  border: 1px solid #4b4b4b;
  padding-left: 8px;
  margin-top: 4px;
}

.contact input:focus,
.contact input:active,
.contact textarea:focus,
.contact textarea:active {
  border: 1px solid #c8f01e;
  outline: 1px solid #c8f01e;
}

.contact .button-wrapper {
  display: grid;
  grid-template-columns: auto auto;
  justify-content: end;
}

.contact .button-wrapper::before {
  margin-top: 20px;
  display: block;
  content: "";
  width: 200px;
  height: 40px;
  right: 0;
  top: 0;
  background: linear-gradient(to left, #c8f01e, rgba(200, 240, 30, 0));
}

.contact .wpcf7-submit {
  display: inline-block;
  background-color: #4b4b4b;
  color: #d0ccc8;
  width: unset !important;
  padding: 6px 40px;
  margin-top: 0px;
  transition: 0.25s;
  cursor: pointer;
  font-weight: 500;
  -webkit-appearance: none;
  outline: none !important;
}

.contact .wpcf7-submit:hover {
  color: #c8f01e;
}

.contact .wpcf7-submit:focus,
.contact .wpcf7-submit:active {
  border: none;
}

.contact textarea {
  min-height: 80px;
  padding-top: 8px;
}

.contact .ajax-loader {
  display: none !important;
}

.contact .map {
  position: relative;
  overflow: hidden;
  height: 400px;
}

.contact .map iframe {
  filter: grayscale(1);
  position: absolute;
  top: -60px;
  width: 100%;
  border: none;
  height: calc(100% + 60px);
}

.contact .wpcf7-response-output {
  border: none !important;
  margin: 20px 0 0 !important;
  padding: 0 !important;
}

.contact form.invalid .wpcf7-response-output,
.contact form.unaccepted .wpcf7-response-output,
.contact .wpcf7-not-valid-tip {
  color: #b12727 !important;
  font-size: 16px;
  font-weight: 500;
}

.contact .wpcf7 form.sent .wpcf7-response-output {
  color: white;
  font-size: 16px;
  font-weight: 500;
}

@media only screen and (max-width: 1024px) {
  .contact .form {
    gap: 50px;
  }
}

@media only screen and (max-width: 766px) {
  .contact .form {
    grid-template-columns: 1fr;
    margin-bottom: 50px;
  }

  .contact .info {
    margin-top: 0;
  }
}

.footer {
  display: grid;
  grid-auto-flow: row;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  border-top: 1px solid #4b4b4b;
  padding: 100px 0;
  gap: 50px;
}

.footer a {
  display: block;
  width: fit-content;
  position: relative;
}

.footer a::before {
  display: block;
  content: "";
  position: absolute;
  bottom: 4px;
  left: -6px;
  width: calc(100% + 12px);
  background-color: #c8f01e;
  height: 6px;
  transition: 0.25s;
  z-index: -1;
  opacity: 0;
}

.footer a:hover::before {
  opacity: 1;
}

.footer strong {
  display: inline-block;
  margin-bottom: 10px;
}

.footer i {
  font-size: 20px;
  transform: translateY(1px);
  width: 30px;
}

.footer--first {
  margin-top: 100px;
}

.footer--last {
  grid-template-columns: auto 1fr;
  align-items: center;
}

.footer--last .logo {
  justify-self: end;
}

.footer--last a {
  display: inline;
}

.footer--last a::before {
  display: none;
}

@media only screen and (max-width: 1024px) {
  .footer {
    padding: 50px 0;
    grid-template-columns: 1fr 1fr;
  }

  .footer--first {
    margin-top: 50px;
  }
}

@media only screen and (max-width: 766px) {
  .footer {
    grid-template-columns: 1fr;
  }

  .footer--last .logo {
    justify-self: start;
  }
}

.offer__single {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  margin-bottom: 100px;
  padding-bottom: 50px;
  border-bottom: 1px solid #4b4b4b;
}

.offer__single p {
  display: inline;
}

.offer__single:last-of-type {
  padding-bottom: 0;
  border-bottom: 0;
}

@media only screen and (max-width: 766px) {
  .offer__single {
    grid-template-columns: 1fr;
    margin-bottom: 50px;
    gap: 50px;
  }
}
