@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;
  }
}
@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 {
  height: 800px;
  width: 100%;
  padding: 4rem 5%;
  display: grid;
  grid-template-columns: 0.7fr 0.3fr;
  position: relative;
}
.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: -5px;
}
.title .heading h2 {
  font-size: 50px;
  font-family: "Neues Bauen", serif;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.6);
  padding-left: 450px;
  transform: translateY(-25px);
}
.title .description {
  padding-top: 250px;
  display: flex;
  justify-content: start;
  align-items: start;
  flex-flow: column;
}
.title .description p {
  font-size: 20px;
  line-height: 1.5em;
  font-weight: 400;
  margin-bottom: 1rem;
}
.title .description a {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 0.75rem;
  color: #1D1D1B;
  text-decoration: none;
  font-weight: 500;
  cursor: pointer;
}
.title .description a:hover .icon {
  outline: 1px solid #1D1D1B;
}
.title .description a .icon {
  height: 35px;
  width: 35px;
  background: #1D1D1B;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.title .description a .icon svg {
  height: 17px;
  width: 17px;
  stroke-width: 3;
  color: #E7DFD8;
}
.title .description a span {
  font-size: 18px;
}
.title .image {
  height: 500px;
  width: 70%;
  position: absolute;
  left: 0;
  bottom: 0;
}
.title .image .rectangle {
  height: 100%;
  width: 143px;
  background: #1D1D1B;
  position: absolute;
  left: 5vw;
  z-index: 2;
}
.title .image img {
  height: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
}
.title .image img.building {
  z-index: 2;
}

.video {
  width: 100vw;
  height: 35vw;
  z-index: 10;
}

.benefits {
  padding: 10rem 10% 5rem;
  display: flex;
  justify-content: start;
  align-items: start;
  flex-flow: column;
}
.benefits p {
  font-size: 20px;
  line-height: 1.5em;
  color: rgba(0, 0, 0, 0.6);
  max-width: 70%;
}
.benefits .benefits__content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.benefits .benefits__content .item {
  width: 100%;
  padding: 8rem 2rem 2rem;
  background: #1D1D1B;
  position: relative;
  overflow: hidden;
  transition: 0.25s ease;
}
.benefits .benefits__content .item:hover {
  transform: scale(1.025);
  box-shadow: 4px 4px 5px rgba(0, 0, 0, 0.4);
}
.benefits .benefits__content .item .circle {
  height: 145px;
  width: 145px;
  border-radius: 50%;
  background: #E84E1B;
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-20%, -35%);
}
.benefits .benefits__content .item img {
  position: absolute;
  top: 1.5rem;
  left: 2rem;
  color: #fff;
  height: 41px;
  width: 41px;
}
.benefits .benefits__content .item h3 {
  font-family: "Neues Bauen", serif;
  font-size: 2em;
  color: #E7DFD8;
  word-spacing: -5px;
}
.benefits .benefits__content .item span {
  font-size: 17px;
  line-height: 1.5em;
  color: rgba(231, 223, 216, 0.6);
  font-weight: 400;
}

.history {
  padding: 5rem 10% 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100vw;
  overflow-x: hidden;
}
.history .image {
  width: 100%;
  position: relative;
  padding-bottom: 10rem;
}
.history .image .circle {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
.history .image .history__image {
  z-index: 2;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 90%;
  max-width: 80%;
  box-shadow: -3px 3px 15px 5px rgba(0, 0, 0, 0.35);
}
.history .text {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-flow: column;
  padding-bottom: 10rem;
}
.history .text .h1.right {
  margin-bottom: 1.5rem;
}
.history .text .h1.right::before {
  transform: translateX(43.5vw);
  width: 400px;
}
.history .text p {
  font-size: 20px;
  line-height: 1.5em;
  font-weight: 400;
  margin-bottom: 1rem;
  color: rgba(29, 29, 27, 0.6);
}
.history .text a {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 0.75rem;
  color: #1D1D1B;
  text-decoration: none;
  font-weight: 500;
  margin-top: 1.5rem;
}
.history .text a:hover .icon {
  outline: 1px solid #1D1D1B;
}
.history .text a .icon {
  height: 35px;
  width: 35px;
  background: #1D1D1B;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.history .text a .icon svg {
  height: 17px;
  width: 17px;
  stroke-width: 3;
  color: #E7DFD8;
}
.history .text a span {
  font-size: 18px;
}

.vision {
  padding: 5rem 10%;
  display: flex;
  justify-self: start;
  align-items: start;
  flex-flow: column;
}
.vision .vision__content {
  margin-top: 2rem;
  width: 100%;
  display: flex;
  justify-self: start;
  align-items: start;
  flex-flow: column;
}
.vision .vision__content .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
}
.vision .vision__content .row .image {
  width: 100%;
  height: 100%;
}
.vision .vision__content .row .image img {
  width: 100%;
  height: 100%;
}
.vision .vision__content .row .text {
  padding: 2rem;
  background: #1D1D1B;
  display: flex;
  justify-content: center;
  align-items: start;
  flex-flow: column;
}
.vision .vision__content .row .text .number {
  font-size: 2.25em;
  color: #E84E1B;
  font-family: "Neues Bauen", serif;
  margin-bottom: 2.5rem;
}
.vision .vision__content .row .text h3 {
  font-size: 3em;
  color: #E7DFD8;
  font-family: "Neues Bauen", serif;
  word-spacing: -10px;
}
.vision .vision__content .row .text p {
  font-size: 20px;
  line-height: 1.5em;
  color: rgba(231, 223, 216, 0.6);
}
.vision .vision__content .row .text a {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 0.75rem;
  color: #E7DFD8;
  text-decoration: none;
  font-weight: 500;
  margin-top: 1.5rem;
}
.vision .vision__content .row .text a:hover .icon {
  outline: 1px solid #E84E1B;
}
.vision .vision__content .row .text a .icon {
  height: 35px;
  width: 35px;
  background: #E84E1B;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.vision .vision__content .row .text a .icon svg {
  height: 17px;
  width: 17px;
  stroke-width: 3;
  color: #E7DFD8;
}
.vision .vision__content .row .text a span {
  font-size: 18px;
}

.current {
  padding: 5rem 0 0;
  width: 100vw;
  overflow-x: hidden;
}
.current .current__heading {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-flow: column;
  padding: 0 10%;
}
.current .current__heading .h1.right::before {
  width: 50vw;
  transform: translateX(60vw);
}
.current .current__heading p {
  font-size: 20px;
  line-height: 1.5em;
  font-weight: 400;
  margin-bottom: 1rem;
  color: rgba(29, 29, 27, 0.6);
  max-width: 60%;
}
.current .current__heading a {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 0.75rem;
  color: #1D1D1B;
  text-decoration: none;
  font-weight: 500;
  margin-top: 1.5rem;
}
.current .current__heading a:hover .icon {
  outline: 1px solid #1D1D1B;
}
.current .current__heading a .icon {
  height: 35px;
  width: 35px;
  background: #1D1D1B;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.current .current__heading a .icon svg {
  height: 17px;
  width: 17px;
  stroke-width: 3;
  color: #E7DFD8;
}
.current .current__heading a span {
  font-size: 18px;
}
.current .images {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 3rem;
}
.current .images img {
  width: 25%;
}

@media only screen and (max-width: 1550px) {
  .title .description {
    padding-top: 300px;
  }
  .title .description p {
    font-size: 17px;
  }
  .title .image {
    height: 500px;
  }
}
@media only screen and (max-width: 1300px) {
  .title {
    height: 700px;
  }
  .title .heading h1 {
    font-size: 150px;
    letter-spacing: -5px;
  }
  .title .heading h2 {
    font-size: 35px;
    padding-left: 370px;
  }
  .title .description {
    padding-top: 200px;
  }
  .title .description p {
    font-size: 14px;
  }
  .title .image {
    height: 350px;
  }
  .benefits {
    padding: 5rem 10%;
  }
  .benefits p {
    font-size: 1.1em;
  }
  .benefits .benefits__content .item {
    padding: 7rem 1.5rem 1.5rem;
  }
  .benefits .benefits__content .item .circle {
    height: 115px;
    width: 115px;
    transform: translate(-25%, -30%);
  }
  .benefits .benefits__content .item img {
    top: 1.5rem;
    left: 1.5rem;
    height: 30px;
    width: 30px;
  }
  .benefits .benefits__content .item h3 {
    font-size: 2em;
  }
  .benefits .benefits__content .item span {
    font-size: 0.85em;
  }
  .history .text .h1.right {
    margin-bottom: 0.75rem;
  }
  .history .text .h1.right::before {
    transform: translateX(60vw);
  }
  .history .text p {
    font-size: 17px;
  }
  .history .text a {
    margin-top: 0.75rem;
  }
  .history .text a .icon {
    height: 31px;
    width: 31px;
  }
  .history .text a .icon svg {
    width: 15px;
    height: 15px;
  }
  .history .text a span {
    font-size: 17px;
  }
  .vision .vision__content .row .text .number {
    font-size: 2em;
    margin-bottom: 1.75rem;
  }
  .vision .vision__content .row .text h3 {
    font-size: 2.5em;
  }
  .vision .vision__content .row .text p {
    font-size: 0.9em;
  }
  .vision .vision__content .row .text a .icon {
    height: 31px;
    width: 31px;
  }
  .vision .vision__content .row .text a .icon svg {
    width: 15px;
    height: 15px;
  }
  .vision .vision__content .row .text a span {
    font-size: 17px;
  }
  .current .current__heading p {
    font-size: 17px;
  }
  .current .current__heading a {
    margin-top: 0.75rem;
  }
  .current .current__heading a .icon {
    height: 31px;
    width: 31px;
  }
  .current .current__heading a .icon svg {
    width: 15px;
    height: 15px;
  }
  .current .current__heading a span {
    font-size: 17px;
  }
}
@media only screen and (max-width: 900px) {
  .title {
    height: 700px;
    display: flex;
    justify-content: start;
    align-items: start;
    flex-flow: column;
  }
  .title .heading h1 {
    font-size: 120px;
  }
  .title .heading h2 {
    font-size: 30px;
    padding-left: 280px;
    transform: translateY(-15px);
  }
  .title .description {
    padding-top: 0;
    max-width: 80%;
  }
  .title .description p {
    font-size: 13px;
  }
  .title .description a .icon {
    height: 29px;
    width: 29px;
  }
  .title .description a .icon svg {
    height: 13px;
    width: 13px;
  }
  .title .description a span {
    font-size: 15px;
  }
  .title .image {
    height: 300px;
  }
  .benefits {
    padding: 0;
    margin: 5rem 10% 2.5rem;
  }
  .benefits p {
    font-size: 0.9em;
  }
  .benefits .benefits__content {
    grid-template-columns: 1fr 1fr;
  }
  .benefits .benefits__content .item {
    padding: 6rem 2rem 2rem;
  }
  .benefits .benefits__content .item .circle {
    height: 111px;
    width: 111px;
  }
  .benefits .benefits__content .item h3 {
    font-size: 1.75em;
  }
  .benefits .benefits__content .item p {
    font-size: 0.7em;
  }
  .history {
    padding: 2.5rem 10% 0 0;
  }
  .history .image {
    padding-bottom: 5rem;
  }
  .history .image .history__image {
    height: 20rem;
    box-shadow: -2px -2px 10px 3px rgba(0, 0, 0, 0.2);
    top: initial;
    bottom: 10%;
  }
  .history .text {
    padding-bottom: 5rem;
  }
  .history .text .h1.right::before {
    transform: translateX(70vw);
  }
  .history .text p {
    font-size: 14px;
  }
  .history .text a .icon {
    height: 27px;
    width: 27px;
  }
  .history .text a span {
    font-size: 15px;
  }
  .vision {
    padding: 5rem 10% 2.5rem;
  }
  .vision .vision__content .row .text .number {
    font-size: 1.35em;
  }
  .vision .vision__content .row .text h3 {
    font-size: 1.75em;
  }
  .vision .vision__content .row .text p {
    font-size: 0.75em;
  }
  .vision .vision__content .row .text a .icon {
    height: 27px;
    width: 27px;
  }
  .vision .vision__content .row .text a span {
    font-size: 15px;
  }
  .current {
    padding: 2.5rem 0;
  }
  .current .current__heading p {
    font-size: 14px;
  }
  .current .current__heading a .icon {
    height: 27px;
    width: 27px;
  }
  .current .current__heading a span {
    font-size: 15px;
  }
  .current .images {
    flex-flow: row wrap;
  }
  .current .images img {
    width: 50%;
  }
}
@media only screen and (max-width: 700px) {
  .title {
    height: 550px;
  }
  .title .heading h1 {
    font-size: 75px;
    letter-spacing: 0;
  }
  .title .heading h2 {
    padding: 1.25rem 0 0;
    font-size: 25px;
  }
  .title .image {
    height: inherit;
    width: 100%;
  }
  .title .image .rectangle {
    height: 175px;
    width: 60px;
    bottom: 0;
  }
  .title .image img {
    width: 100%;
    height: auto;
  }
  .video {
    height: 50vh;
  }
  .benefits p {
    font-size: 0.8em;
    max-width: 100%;
  }
  .benefits .benefits__content {
    grid-template-columns: 1fr;
  }
  .benefits .benefits__content .item h3 {
    font-size: 1.5em;
  }
  .benefits .benefits__content .item span {
    font-size: 0.7em;
  }
  .history {
    grid-template-columns: 1fr;
    padding: 5rem 0 2.5%;
  }
  .history .image {
    order: 2;
    height: 25rem;
  }
  .history .text {
    order: 1;
    padding: 0 10%;
  }
  .history .text .h1.right::before {
    transform: translateX(125vw);
  }
  .history .text p {
    font-size: 12px;
  }
  .vision {
    padding: 3.5rem 10%;
  }
  .vision .vision__content .row {
    grid-template-columns: 1fr;
  }
  .vision .vision__content .row .text {
    order: 1;
  }
  .vision .vision__content .row .image {
    order: 2;
  }
  .current .current__heading p {
    font-size: 12px;
    max-width: 100%;
  }
  .current .current__heading a {
    margin-top: 0rem;
  }
  .current .images {
    padding-top: 2rem;
  }
}/*# sourceMappingURL=style.css.map */