@font-face {
  font-family: "Neues Bauen";
  src: url("../fonts/neues-bauen.ttf?v=3") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Futura";
  src: url("../fonts/Futura-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Futura";
  src: url("../fonts/Futura-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Futura";
  src: url("../fonts/Futura-Medium-Italic.ttf") format("truetype");
  font-weight: 500;
  font-style: italic;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Futura", sans-serif;
}

html, body {
  background: #E7DFD8;
  scroll-behavior: smooth;
  overflow-x: hidden;
  position: relative;
}

html {
  text-rendering: optimizeLegibility;
  font-feature-settings: "kern";
  font-kerning: normal;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.h1 {
  font-size: 110px;
  font-family: "Neues Bauen", sans-serif;
  letter-spacing: -5px;
  text-transform: uppercase;
  word-spacing: -10px;
  position: relative;
  line-height: 1em;
  color: #1D1D1B;
}
.h1.left::before {
  left: 0;
  transform: translateX(-10vw);
}
.h1.right::before {
  right: 0;
  transform: translateX(10vw);
}
.h1::before {
  content: "";
  position: absolute;
  top: 0;
  height: 95px;
  background: #1D1D1B;
  width: 7.5vw;
}
.h1 .dot {
  color: #E84E1B;
  margin-left: 10px;
}

@media only screen and (max-width: 1300px) {
  .h1 {
    font-size: 80px;
  }
  .h1::before {
    height: 60px;
  }
  .h1::after {
    height: 11px;
    width: 11px;
    right: -20px;
  }
}
@media only screen and (max-width: 900px) {
  .h1 {
    font-size: 60px;
    letter-spacing: -1px;
  }
  .h1::before {
    height: 45px;
  }
}
@media only screen and (max-width: 700px) {
  .h1 {
    font-size: 40px;
    line-height: 1.3;
  }
  .h1::before {
    height: 33px;
    top: 0.15em;
  }
  .h1::after {
    display: none;
  }
  .h1 .dot {
    margin-left: 3px;
  }
}
header {
  height: 5rem;
  width: 100vw;
  display: flex;
  justify-content: end;
  align-items: center;
  padding: 0 5%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 50;
}
header::before {
  content: "";
  height: 41px;
  width: 80%;
  position: absolute;
  left: 5%;
  top: 50%;
  transform: translateY(-50%);
  background: #1D1D1B;
}
header .logo {
  font-size: 2em;
}
header .logo a {
  color: #000;
  text-decoration: none;
}
header nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  background: #E7DFD8;
  z-index: 2;
  min-height: 43px;
  padding-left: 2rem;
  transform: translateX(-2rem);
}
header nav a {
  color: #000;
  font-size: 19px;
  font-weight: 600;
  text-decoration: none;
  position: relative;
}
header nav a::after {
  content: "";
  height: 2px;
  width: 0;
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  background: #000;
  transition: 0.25s ease;
}
header nav a:hover::after, header nav a.active::after {
  width: 70%;
}
header .ham {
  display: none;
  justify-content: center;
  align-items: center;
  background: none;
  border: none;
}
header .ham svg {
  height: 35px;
  width: 35px;
  color: #000;
  stroke-width: 2.5;
}
header .logout__btn {
  background: none;
  border: none;
}
header .logout__btn a {
  color: #000;
  text-decoration: none;
}
header .logout__btn a svg {
  color: #000;
  height: 30px;
  width: 30px;
}

.offcanvas {
  display: none;
  justify-content: center;
  align-items: center;
  flex-flow: column wrap;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  transform: translateX(100%);
  transition: 0.5s ease-in-out;
  z-index: 60;
  background: #101010;
  overflow-x: hidden;
}
.offcanvas #close__offcanvas {
  position: absolute;
  top: 25px;
  right: 25px;
  background: none;
  border: none;
  z-index: 2;
}
.offcanvas #close__offcanvas svg {
  height: 35px;
  width: 35px;
  color: #E7DFD8;
  stroke-width: 2.5;
}
.offcanvas a {
  display: block;
  width: 80%;
  text-align: center;
  color: #E7DFD8;
  padding: 1rem 0;
  font-size: 1em;
  text-decoration: none;
  border-bottom: 2px solid #E7DFD8;
}
.offcanvas a:last-child {
  border-bottom: none;
}
.offcanvas .offcanvas-active {
  text-decoration: underline;
}
.offcanvas .circle {
  height: 250px;
  width: 250px;
  background: #E84E1B;
  border-radius: 50%;
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(50%, -50%);
}

@media only screen and (max-width: 900px) {
  header .logo {
    font-size: 1.5em;
  }
  header nav {
    gap: 1.75rem;
  }
  header nav a {
    font-size: 0.9em;
  }
  header nav a::after {
    bottom: -3px;
  }
}
@media only screen and (max-width: 700px) {
  header {
    padding: 0 10%;
  }
  header::before {
    width: 70%;
  }
  header nav {
    display: none;
  }
  header .ham {
    display: flex;
  }
  .offcanvas {
    display: flex;
  }
}
.btn {
  border: none;
  background: none;
}
.btn a {
  font-size: 1em;
  border: 3px solid #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  border-radius: 15px;
  text-decoration: none;
  padding: 0.75em 1.5em;
  font-weight: 500;
  transition: 0.2s ease;
}

footer {
  padding: 5rem 7.5%;
  background: #181818;
}
footer .footer__content {
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  display: flex;
  justify-content: space-between;
  align-items: start;
}
footer .footer__content .left {
  width: 40%;
}
footer .footer__content .left h2 {
  font-size: 3em;
  color: #fff;
  margin-bottom: 1rem;
}
footer .footer__content .left p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
  line-height: 1.75em;
}
footer .footer__content .right {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-flow: column;
  gap: 1.15rem;
}
footer .footer__content .right a {
  text-decoration: none;
  color: #fff;
  font-size: 1.25em;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: 1px;
}
footer .footer__content .right a svg {
  height: 1.35em;
  width: 1.35em;
  color: #fff;
  stroke-width: 3;
}

@media only screen and (max-width: 1300px) {
  footer .footer__content .left h2 {
    font-size: 2.5em;
  }
  footer .footer__content .left p {
    font-size: 0.85em;
  }
  footer .footer__content .right {
    justify-content: center;
  }
  footer .footer__content .right a {
    font-size: 1.1em;
  }
}
@media only screen and (max-width: 850px) {
  footer .footer__content .left h2 {
    font-size: 2em;
  }
  footer .footer__content .left p {
    font-size: 0.7em;
  }
  footer .footer__content .right a {
    font-size: 1em;
  }
}
@media only screen and (max-width: 700px) {
  footer .footer__content {
    flex-flow: column;
    row-gap: 4rem;
  }
  footer .footer__content .left {
    width: 100%;
  }
  footer .footer__content .left h2 {
    font-size: 25px;
  }
}
.contacts {
  display: grid;
  grid-template-columns: 0.35fr 0.65fr;
  border-top: 50px solid #1D1D1B;
}
.contacts .image {
  width: 100%;
  height: 100%;
}
.contacts .image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.contacts form {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-flow: column;
  padding: 4rem 10%;
}
.contacts form .h1::before {
  content: none;
}
.contacts form p {
  font-size: 20px;
  line-height: 1.65em;
  max-width: 70%;
  margin-bottom: 2rem;
  color: rgba(29, 29, 27, 0.6);
}
.contacts form .input__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  width: 100%;
  margin: 2rem 0;
}
.contacts form .input {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-flow: column;
  gap: 0.25rem;
  width: 100%;
}
.contacts form .input label {
  font-size: 1em;
  color: #1D1D1B;
}
.contacts form .input input, .contacts form .input textarea {
  padding: 0.5em;
  font-size: 1.25em;
  width: 100%;
  border: none;
  border-bottom: 3px solid #1D1D1B;
  background: none;
}
.contacts form .input textarea {
  resize: none;
  height: 7.5rem;
  font-size: 1em;
}
.contacts form button {
  background: none;
  border: none;
  margin-top: 1rem;
  margin-bottom: 5rem;
}
.contacts form button a {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 0.75rem;
  color: #1D1D1B;
  text-decoration: none;
  font-weight: 500;
  margin-top: 1rem;
  cursor: pointer;
}
.contacts form button a:hover .icon {
  outline: 1px solid #E84E1B;
}
.contacts form button a .icon {
  height: 49px;
  width: 49px;
  background: #E84E1B;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contacts form button a .icon svg {
  height: 25px;
  width: 25px;
  stroke-width: 3;
  color: #E7DFD8;
}
.contacts form button a span {
  font-size: 23px;
}
.contacts form .direct {
  padding-top: 3rem;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 3px solid rgba(29, 29, 27, 0.25);
}
.contacts form .direct a {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: #1D1D1B;
}
.contacts form .direct a:hover .icon {
  outline: 1px solid #1D1D1B;
}
.contacts form .direct a .icon {
  height: 47px;
  width: 47px;
  background: #1D1D1B;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contacts form .direct a .icon svg {
  height: 25px;
  width: 25px;
  color: #E7DFD8;
  stroke-width: 2.5;
}
.contacts form .direct a span {
  font-size: 24px;
  color: #1D1D1B;
  font-weight: 500;
}

@media only screen and (max-width: 1300px) {
  .contacts form {
    padding: 4rem 7.5%;
  }
  .contacts form p {
    font-size: 15px;
    max-width: 85%;
  }
  .contacts form .input label {
    font-size: 0.9em;
  }
  .contacts form .input input, .contacts form .input textarea {
    border-bottom: 2px solid #1D1D1B;
  }
  .contacts form .input input {
    font-size: 1.1em;
  }
  .contacts form button {
    margin-bottom: 4rem;
  }
  .contacts form button a .icon {
    height: 43px;
    width: 43px;
  }
  .contacts form button a .icon svg {
    height: 21px;
    width: 21px;
  }
  .contacts form button a span {
    font-size: 19px;
  }
  .contacts form .direct a .icon {
    height: 39px;
    width: 39px;
  }
  .contacts form .direct a .icon svg {
    height: 19px;
    width: 19px;
  }
  .contacts form .direct a span {
    font-size: 18px;
  }
}
@media only screen and (max-width: 900px) {
  .contacts {
    grid-template-columns: 1fr;
  }
  .contacts .image {
    display: none;
  }
}
@media only screen and (max-width: 700px) {
  .contacts form p {
    font-size: 13px;
    margin-bottom: 1rem;
    color: #1D1D1B;
  }
  .contacts form .input__row {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 1rem 0;
  }
  .contacts form .input label {
    font-size: 0.8em;
  }
  .contacts form .input input {
    font-size: 1em;
  }
  .contacts form .input textarea {
    font-size: 0.9em;
  }
  .contacts form .input.last {
    margin-top: 1rem;
  }
  .contacts form button a .icon {
    height: 35px;
    width: 35px;
  }
  .contacts form button a .icon svg {
    height: 17px;
    width: 17px;
  }
  .contacts form button a span {
    font-size: 16px;
  }
  .contacts form .direct {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .contacts form .direct a .icon {
    height: 35px;
    width: 35px;
  }
  .contacts form .direct a .icon svg {
    height: 17px;
    width: 17px;
  }
  .contacts form .direct a span {
    font-size: 16px;
  }
}
#gdpr__parent {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  margin-top: 1rem;
}
#gdpr__parent input {
  height: auto;
  width: auto;
  cursor: pointer;
}
#gdpr__parent label {
  color: #1D1D1B;
  cursor: pointer;
}
#gdpr__parent label a {
  color: #1D1D1B;
}

@media only screen and (max-width: 700px) {
  #gdpr__parent label {
    font-size: 0.8em;
  }
}
.title {
  padding: 4rem 5%;
}
.title .heading {
  margin-top: 15px;
  z-index: 5;
}
.title .heading h1 {
  font-family: "Neues Bauen", serif;
  text-transform: uppercase;
  font-size: 190px;
  color: #1D1D1B;
  line-height: 1em;
  letter-spacing: -10px;
}

.text__section {
  padding: 5rem 10%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  position: relative;
}
.text__section.first {
  padding: 2.5rem 10% 5rem;
}
.text__section.right .images {
  order: 1;
}
.text__section.right .images .main__img {
  box-shadow: -5px 5px 10px rgba(0, 0, 0, 0.3);
}
.text__section.right .images .miniatures {
  right: inherit;
  left: 12.5vw;
}
.text__section.right .images .circle {
  right: initial;
  left: 0;
  width: 40vw;
  height: auto;
  top: initial;
  bottom: 0;
  transform: none;
}
.text__section.right .text {
  order: 2;
}
.text__section.right .text .h1::before {
  transform: translateX(42.5vw);
}
.text__section .text {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-flow: column;
}
.text__section .text p {
  font-size: 19px;
  line-height: 1.65em;
  margin: 0.25rem 0;
  font-weight: 400;
}
.text__section .text a {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 0.75rem;
  color: #1D1D1B;
  text-decoration: none;
  font-weight: 500;
  margin-top: 1rem;
}
.text__section .text a:hover .icon {
  outline: 1px solid #1D1D1B;
}
.text__section .text a .icon {
  height: 35px;
  width: 35px;
  background: #1D1D1B;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.text__section .text a .icon svg {
  height: 17px;
  width: 17px;
  stroke-width: 3;
  color: #E7DFD8;
}
.text__section .text a span {
  font-size: 18px;
}
.text__section .images {
  display: flex;
  justify-content: start;
  align-items: end;
}
.text__section .images .main__img {
  position: relative;
  width: 100%;
  z-index: 2;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
}
.text__section .images .miniatures {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 1rem;
  position: absolute;
  bottom: 0;
  right: 12.5vw;
  transform: translateY(-50%);
  z-index: 2;
}
.text__section .images .miniatures img {
  height: 75px;
  width: 75px;
  -o-object-fit: cover;
     object-fit: cover;
}
.text__section .images .circle {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  height: 100%;
}

.image__section {
  padding: 4rem 0;
}
.image__section.first {
  padding-top: 7rem;
}
.image__section .heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 40px solid #1D1D1B;
  padding: 0 10%;
}
.image__section .heading.right .icon {
  order: 1;
}
.image__section .heading.right .text {
  order: 2;
}
.image__section .heading.right .text .h1::before {
  transform: translateX(43.5vw);
  width: 400px;
}
.image__section .heading.left .icon {
  order: 2;
  justify-content: end;
}
.image__section .heading.left .text {
  order: 1;
}
.image__section .heading .text {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-flow: column;
  padding-bottom: 2rem;
}
.image__section .heading .text p {
  font-size: 19px;
  line-height: 1.65em;
  margin: 0.25rem 0;
  font-weight: 400;
}
.image__section .heading .text a {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 0.75rem;
  color: #1D1D1B;
  text-decoration: none;
  font-weight: 500;
  margin-top: 1rem;
}
.image__section .heading .text a:hover .icon {
  outline: 1px solid #1D1D1B;
}
.image__section .heading .text a .icon {
  height: 35px;
  width: 35px;
  background: #1D1D1B;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.image__section .heading .text a .icon svg {
  height: 17px;
  width: 17px;
  stroke-width: 3;
  color: #E7DFD8;
}
.image__section .heading .text a span {
  font-size: 18px;
}
.image__section .heading .icon {
  width: 100%;
  display: flex;
  align-items: end;
}
.image__section .heading .icon img {
  height: 15rem;
}
.image__section .images {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: row wrap;
}
.image__section .images.three img {
  width: 33.3%;
}
.image__section .images img {
  width: 25%;
}

@media only screen and (max-width: 1550px) {
  .title .heading h1 {
    font-size: 180px;
  }
  .text__section .text p {
    font-size: 18px;
  }
  .text__section .images .main__img {
    width: 90%;
  }
}
@media only screen and (max-width: 1300px) {
  .title .heading h1 {
    font-size: 120px;
    letter-spacing: -5px;
  }
  .text__section .text p {
    font-size: 14px;
  }
  .text__section .images {
    align-items: center;
  }
  .text__section .images .circle {
    width: auto;
    height: 70%;
  }
  .text__section .images .miniatures {
    bottom: inherit;
    top: 50%;
    transform: translateY(60px);
  }
  .text__section .images .miniatures img {
    height: 60px;
    width: 60px;
  }
  .image__section .heading.right .text .h1::before {
    transform: translateX(50vw);
  }
  .image__section .heading .text .h1::before {
    top: 10px;
  }
  .image__section .heading .text p {
    font-size: 14px;
  }
  .image__section .heading .icon img {
    height: 12rem;
  }
}
@media only screen and (max-width: 900px) {
  .title {
    padding: 4rem 10% 0;
  }
  .title .heading h1 {
    font-size: 100px;
  }
  .text__section {
    grid-template-columns: 1fr;
  }
  .text__section.right .images {
    order: 2;
  }
  .text__section.right .images .circle {
    width: 60vw;
  }
  .text__section.right .images .miniatures {
    left: 10vw;
  }
  .text__section.right .text {
    order: 1;
  }
  .text__section.right .text .h1::before {
    left: 0;
    right: initial;
    transform: translateX(-10vw);
  }
  .text__section .text {
    order: 1;
  }
  .text__section .text a .icon {
    height: 27px;
    width: 27px;
  }
  .text__section .text a span {
    font-size: 15px;
  }
  .text__section .images {
    order: 2;
  }
  .text__section .images .main__img {
    width: auto;
    max-width: 100%;
    height: 20rem;
  }
  .text__section .images .miniatures {
    top: initial;
    bottom: 10px;
    transform: none;
    right: initial;
    left: 10vw;
  }
  .text__section .images .circle {
    height: 20rem;
    top: initial;
    bottom: 0;
    transform: none;
  }
  .image__section .heading.right .text .h1::before {
    transform: translateX(60vw);
  }
  .image__section .heading .text a .icon {
    height: 27px;
    width: 27px;
  }
  .image__section .heading .text a span {
    font-size: 15px;
  }
  .image__section .heading .icon img {
    height: 10rem;
  }
  .image__section .images {
    flex-flow: row wrap;
  }
  .image__section .images img {
    width: 50%;
  }
}
@media only screen and (max-width: 700px) {
  .title {
    padding: 4rem 5% 0;
  }
  .title .heading h1 {
    font-size: 50px;
    letter-spacing: -2px;
  }
  .text__section {
    padding: 2.5rem 10%;
  }
  .text__section .text p {
    font-size: 12px;
  }
  .text__section .images .main__img {
    height: 15rem;
  }
  .text__section .images .miniatures {
    bottom: 10px;
  }
  .image__section {
    padding: 2.5rem 0;
  }
  .image__section .heading {
    grid-template-columns: 1fr;
  }
  .image__section .heading.right .text {
    order: 1;
  }
  .image__section .heading.right .text .h1::before {
    top: 5px;
    left: 0;
    right: initial;
    transform: translateX(-110vw);
  }
  .image__section .heading.right .icon {
    order: 2;
  }
  .image__section .heading.left .icon {
    justify-content: start;
  }
  .image__section .heading .icon img {
    height: 7.5rem;
  }
}/*# sourceMappingURL=style.css.map */