@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Libre+Bodoni:ital,wght@0,400..700;1,400..700&display=swap");
@font-face {
  font-family: "paragraph";
  src: url("../fonts/Paragraph.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}
:root {
  --heading-font: "Libre Bodoni", serif;
  --body-font: "Josefin Sans", sans-serif;
  --deocrative-font: "paragraph";
  --main-light: #f0f0ee;
  --main-mid: #c6bebe;
  --main-dark: #777373;
  --hover: #c7c7c6;
}

/* width */
::-webkit-scrollbar {
  width: 3px;
}

/* Track */
::-webkit-scrollbar-track {
  background: unset;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #888;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

body {
  margin: 0 auto;
  padding: 0;
  letter-spacing: 2px;
  font-family: var(--body-font);
  font-weight: 350;
  color: var(--main-dark);
  background-color: var(--main-light);
  overflow-x: hidden;
  max-width: 1920px;
}
body .cookie-banner__actions {
  display: flex;
  gap: 2rem;
  flex-direction: column;
}
body .form-error {
  width: 280px;
  display: none;
  position: absolute;
  bottom: 45px;
  background-color: #fee2e2;
  border: 1px solid #dc2626;
  padding: 5px 10px;
}
body #cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  max-width: 200px;
  background: var(--hover);
  color: var(--main-dark);
  padding: 1.5rem;
  z-index: 999;
  font-size: 0.85rem;
  line-height: 1.6;
  font-weight: 350;
}
body .modal {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  align-items: center;
  justify-content: center;
}
body .modal.active {
  display: flex;
}
body .modal__content {
  background-color: var(--main-light);
  padding: 3rem;
  max-width: 600px;
  width: 90%;
  position: relative;
  max-height: 80vh;
  overflow-y: auto;
  font-weight: 350;
  letter-spacing: 1px;
  line-height: 20px;
}
body .modal__content h4 {
  font-family: var(--heading-font);
}
body .modal__close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--main-dark);
}
body .modal__title {
  margin-top: 0;
  text-align: center;
}
body .modal__body p {
  border-bottom: 1px solid var(--hover);
  padding-bottom: 1rem;
}
body .modal__body > div {
  display: flex;
  align-items: self-end;
}
body .modal__body > div span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: var(--main-mid);
  color: #fff;
  font-size: 0.9rem;
  line-height: 1;
  letter-spacing: 0;
}
body .modal__body > div h4 {
  padding-left: 1rem;
  margin-bottom: 0;
  text-transform: uppercase;
}
body input {
  background-color: unset;
  border: 0;
  border-bottom: 1px solid var(--main-dark);
  font-family: inherit;
  letter-spacing: 2px;
  padding: 10px 5px;
}
body input::-moz-placeholder {
  font-family: inherit;
  letter-spacing: 2px;
  font-weight: 350;
}
body input::placeholder {
  font-family: inherit;
  letter-spacing: 2px;
  font-weight: 350;
}
body input:focus {
  outline: none;
}
body a {
  color: inherit;
  font-family: inherit;
  letter-spacing: inherit;
  text-decoration: none;
}
body button {
  border: 1px solid transparent;
  font-family: var(--body-font);
  color: var(--main-light);
  background-color: var(--main-dark);
  width: 200px;
  height: 50px;
  text-transform: uppercase;
  cursor: pointer;
  outline: 2px solid transparent;
  outline-offset: 4px;
  transition: outline 0.2s ease;
}
body button:hover {
  outline: 2px solid var(--main-dark);
}
body ul {
  margin-block-start: 0;
  margin-block-end: 0;
  padding-inline-start: 0;
}
body ul li {
  list-style: none;
}
body h1 {
  font-family: var(--heading-font);
  font-weight: 100;
  font-size: 35pt;
  font-weight: 100;
  line-height: 50px;
  text-transform: uppercase;
}
body h2 {
  font-family: var(--heading-font);
  font-size: 28pt;
  font-weight: 100;
  line-height: 50px;
  text-transform: uppercase;
}
body .home__main {
  background-color: var(--main-light);
  position: relative;
  text-align: center;
  height: 650px;
  z-index: 2;
}
body .home__main-location {
  position: absolute;
  z-index: 5;
  top: 50%;
  width: 100%;
  margin: auto;
  color: var(--main-light);
}
body .home__main-location > h1 {
  max-width: 400px;
  margin: auto;
  padding-top: 4rem;
  font-style: italic;
}
body .home__main-logo {
  padding: 2rem 0;
  letter-spacing: 1px;
  font-family: var(--heading-font);
  color: var(--main-dark);
  text-transform: uppercase;
  font-size: 20pt;
  font-weight: 100;
}
body .home__main-logo__nav-mobile nav #nav-burger {
  cursor: pointer;
}
@media (min-width: 1370px) {
  body .home__main-logo__nav-mobile nav #nav-burger {
    display: none;
  }
}
body .home__main-logo__nav-mobile nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: var(--body-font);
  font-weight: 300;
  font-size: 15pt;
  line-height: 40px;
}
body .home__main-video {
  position: absolute;
  z-index: 2;
  width: 100%;
}
body .home__main-video video {
  max-width: 650px;
  width: 100%;
  position: relative;
  z-index: 4;
}
@media (max-width: 1370px) {
  body .home__main-nav {
    display: none;
  }
}
body .home__main-nav {
  position: absolute;
  top: 24%;
  right: 10%;
  text-transform: uppercase;
  text-align: left;
  z-index: 3;
}
body .home__main-nav > nav ul li {
  padding: 1rem 0;
}
body .home__main-nav > nav ul li:last-of-type {
  font-weight: 400;
}
body .home__main-nav > nav ul li a {
  transition: 0.4s ease;
}
body .home__main-nav > nav ul li a:hover {
  color: var(--hover);
}
body .home__services {
  background-color: var(--main-dark);
  color: var(--main-light);
  position: relative;
  z-index: 1;
  padding-top: 250px;
  text-transform: uppercase;
  height: 700px;
}
body .home__services-usp {
  text-align: center;
}
body .home__services-usp > span {
  letter-spacing: 3px;
  font-weight: 350;
}
body .home__services-usp > h2 {
  margin: auto;
  max-width: 400px;
  padding-top: 8rem;
}
body .home__services-block {
  display: grid;
  grid-template-columns: 1fr 4fr;
  margin-top: 8rem;
  gap: 100px;
}
@media (max-width: 560px) {
  body .home__services-block {
    display: flex;
    flex-direction: column;
    grid-template-columns: 1fr;
  }
}
body .home__services-block__item img {
  height: 450px;
  width: auto;
}
@media (max-width: 1078px) {
  body .home__services-block__item img {
    display: none;
  }
}
body .home__services-block__item:last-of-type {
  background-color: var(--main-mid);
  color: var(--main-dark);
  font-weight: 400;
  position: relative;
  padding: 2rem;
}
@media (max-width: 560px) {
  body .home__services-block__item:last-of-type {
    padding: 0;
    max-width: 400px;
    margin: auto;
  }
}
@media (max-width: 560px) {
  body .home__services-block__item:last-of-type ul {
    padding: 2rem;
  }
}
body .home__services-block__item:last-of-type ul li {
  padding: 1rem;
}
@media (max-width: 560px) {
  body .home__services-block__item:last-of-type ul li:last-of-type {
    padding-bottom: 3rem;
  }
}
body .home__services-block__item:last-of-type button {
  position: absolute;
  bottom: -20px;
  right: 60px;
}
@media (max-width: 560px) {
  body .home__services-block__item:last-of-type button {
    right: 26%;
  }
}
body .home__about {
  position: relative;
  height: 800px;
  top: -34px;
  background-color: var(--main-light);
}
body .home__about video {
  width: 100%;
  position: absolute;
  top: 195px;
}
body .home__about-usp {
  text-transform: uppercase;
  position: absolute;
  top: 50%;
  max-width: 550px;
  width: 100%;
}
body .home__about-usp h2 {
  margin-left: 1rem;
}
@media (max-width: 560px) {
  body .home__about-usp {
    padding-top: 6rem;
  }
}
body .home__about-desc {
  position: absolute;
  background-color: var(--main-mid);
  max-width: 680px;
  bottom: -486px;
  font-weight: 350;
  line-height: 35px;
  letter-spacing: 1px;
  padding: 2rem;
}
@media (min-width: 640px) and (max-width: 689px) {
  body .home__about-desc {
    bottom: -70%;
  }
}
@media (min-width: 601px) and (max-width: 639px) {
  body .home__about-desc {
    bottom: -80%;
  }
}
@media (min-width: 550px) and (max-width: 600px) {
  body .home__about-desc {
    bottom: -90%;
  }
}
@media (min-width: 500px) and (max-width: 550px) {
  body .home__about-desc {
    bottom: -100%;
  }
}
@media (min-width: 400px) and (max-width: 449px) {
  body .home__about-desc {
    bottom: -109%;
  }
}
@media (max-width: 400px) {
  body .home__about-desc {
    bottom: -144%;
  }
}
body .home__about-desc__info {
  color: var(--main-light);
  text-transform: uppercase;
  width: 100%;
  padding-top: 2rem;
  text-align: center;
  font-weight: 400;
}
body .home__transformation {
  font-family: var(--deocrative-font);
  position: relative;
  top: 550px;
  padding-bottom: 4rem;
  font-size: 100pt;
  text-align: center;
}
@media (max-width: 700px) {
  body .home__transformation {
    font-size: 6em;
    top: 730px;
  }
}
@media (max-width: 600px) and (min-width: 650px) {
  body .home__transformation {
    top: 675px;
  }
}
@media (max-width: 599px) {
  body .home__transformation {
    top: 830px;
  }
}
body .home__showcase {
  width: 100%;
  height: 550px;
  position: relative;
  top: 550px;
  text-align: center;
  background: var(--main-dark);
  z-index: 3;
}
@media (max-width: 700px) {
  body .home__showcase {
    top: 830px;
  }
}
body .home__showcase h2 {
  color: var(--main-light);
  position: relative;
  top: -52px;
  margin-bottom: 0;
}
body .home__showcase-block {
  padding-bottom: 4rem;
}
body .home__showcase-block__header > h2 {
  width: 100%;
  text-align: center;
  position: absolute;
  top: 49px;
}
body .home__showcase-block__marquee {
  overflow: hidden;
  white-space: nowrap;
  opacity: 0.2;
}
body .home__showcase-block__marquee-track {
  display: inline-flex;
  animation: marquee 30s linear infinite;
}
body .home__showcase-block__marquee h3 {
  font-size: 4rem;
  text-transform: uppercase;
  padding: 0 2rem;
  color: var(--main-light);
  font-family: var(--heading-font);
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
body .home__showcase-block:last-of-type {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10rem;
}
@media (max-width: 930px) {
  body .home__showcase-block:last-of-type {
    gap: 5rem;
  }
}
@media (min-width: 800px) and (max-width: 929px) {
  body .home__showcase-block:last-of-type {
    gap: 2rem;
  }
}
@media (min-width: 750px) and (max-width: 799px) {
  body .home__showcase-block:last-of-type {
    gap: 1rem;
  }
}
@media (min-width: 0px) and (max-width: 749px) {
  body .home__showcase-block:last-of-type {
    display: flex;
    flex-direction: column-reverse;
  }
}
body .home__showcase-block__item {
  background-color: var(--main-mid);
  display: flex;
  flex-direction: column;
  text-transform: uppercase;
}
body .home__showcase-block__item:first-of-type {
  align-items: center;
}
@media (max-width: 749px) {
  body .home__showcase-block__item:first-of-type {
    display: none;
  }
}
body .home__showcase-block__item--nav {
  text-align: left;
  padding: 2rem;
  text-transform: uppercase;
  font-weight: 400;
}
@media (max-width: 749px) {
  body .home__showcase-block__item--nav {
    width: 100%;
    max-width: 500px;
    margin: auto;
    padding: 0;
    text-align: center;
    padding-top: 2rem;
  }
}
@media (max-width: 749px) {
  body .home__showcase-block__item--nav ul {
    padding: 2rem 1rem;
  }
}
body .home__showcase-block__item--nav ul li {
  cursor: pointer;
  padding: 2rem 0;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: opacity 0.2s ease;
  font-weight: 350;
}
@media (max-width: 499px) {
  body .home__showcase-block__item--nav ul li {
    padding: 2rem 1rem;
  }
}
body .home__showcase-block__item--nav ul li::after {
  content: "";
  display: block;
  height: 1px;
  width: 0;
  background-color: var(--main-dark);
  transition: width 0.3s ease;
}
body .home__showcase-block__item--nav ul li.active::after {
  width: 100px;
}
@media (min-width: 730px) and (max-width: 800px) {
  body .home__showcase-block__item--nav ul li.active::after {
    width: 40px;
  }
}
body .home__showcase-block__item--nav ul li:first-of-type {
  margin-top: 4rem;
}
@media (max-width: 749px) {
  body .home__showcase-block__item--nav ul li:first-of-type {
    margin-top: 0;
  }
}
body .home__showcase-block__item img {
  width: 500px;
  padding-bottom: 2rem;
}
body .home__showcase-block__item button {
  position: absolute;
  bottom: -20px;
}
body .home__showcase-block__item .mobile {
  display: none;
  left: 25%;
}
@media (max-width: 730px) {
  body .home__showcase-block__item .mobile {
    display: block;
  }
}
body .home__contact {
  position: relative;
  bottom: -550px;
  display: flex;
  flex-direction: row;
}
@media (max-width: 749px) {
  body .home__contact {
    height: 970px;
  }
}
@media (max-width: 700px) {
  body .home__contact {
    height: 1104px;
  }
}
@media (max-width: 540px) {
  body .home__contact {
    height: 1178px;
  }
}
body .home__contact video {
  position: absolute;
  z-index: 0;
  -o-object-fit: fill;
     object-fit: fill;
  height: 100%;
  width: 100%;
}
body .home__contact-item {
  display: flex;
  /* align-items: center; */
  flex-direction: column;
  z-index: 1;
  margin-top: 15rem;
  width: 100%;
  text-align: center;
  align-items: center;
}
@media (max-width: 700px) {
  body .home__contact-item {
    margin-top: 26rem;
  }
}
body .home__contact-item__form {
  display: flex;
  flex-direction: column;
  max-width: 300px;
  margin: auto;
  width: 100%;
}
body .home__contact-item__form input {
  margin: 1rem 0;
}
body .home__contact-item__form button {
  margin: 1rem 0;
  width: 100%;
  margin-bottom: 8rem;
}
body .home__contact-item__header {
  max-width: 1000px;
  width: 100%;
}
body .home__contact-item__header h2 {
  margin-left: 1rem;
}
body .home__footer {
  position: relative;
  bottom: -550px;
  color: var(--main-light);
  display: flex;
}
@media (max-width: 900px) {
  body .home__footer {
    justify-content: center;
  }
}
@media (max-width: 540px) {
  body .home__footer {
    bottom: -550px;
  }
}
body .home__footer img {
  width: 100%;
  height: 315px;
}
body .home__footer-block {
  position: absolute;
  top: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 0 2rem;
  height: 100%;
  align-content: center;
}
@media (max-width: 900px) {
  body .home__footer-block {
    display: flex;
    flex-direction: column;
    padding-top: 4rem;
    text-align: center;
    height: 100px;
  }
}
body .home__footer-block__item:last-of-type {
  text-align: center;
}
@media (max-width: 900px) {
  body .home__footer-block__item:last-of-type {
    display: none;
  }
}
body .home__footer-block__item h1 {
  padding-bottom: 0;
  margin-bottom: 0;
  padding-top: 0;
  margin-top: 0;
}
body .home__footer-block__item-copyright {
  padding-bottom: 2rem;
}
body .home__footer-block__item ul li {
  padding: 5px 0;
  cursor: pointer;
  transition: 0.4s ease;
}
body .home__footer-block__item ul li:hover {
  color: var(--hover);
}
body .cta {
  position: fixed;
  bottom: 0;
  right: 0;
  margin: 1rem;
  z-index: 1000;
  display: flex;
  flex-direction: row-reverse;
  display: none;
}
body .cta__btn {
  background-color: var(--hover);
  color: var(--main-dark);
  transition: outline 0.2s ease;
}
body .cta__btn:hover {
  outline: 2px solid var(--hover);
}
body .cta__top {
  color: var(--hover);
  font-size: 25pt;
  margin-left: 1rem;
  cursor: pointer;
}/*# sourceMappingURL=css.css.map */