/*
0 - 600: phone
600 - 900: Tablet portrait
900 - 1200: Tablet landscape
1200 - 1800: Desktop

*/
/*
- phone
- tab-port
- tab-land
- desktop
*/
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
  text-rendering: geometricPrecision;
}

html {
  scroll-behavior: smooth;
  font-size: 62.5%;
}
@media only screen and (max-width: 56.25em) {
  html {
    font-size: 45%;
  }
}
@media only screen and (max-width: 75em) {
  html {
    font-size: 50%;
  }
}
@media only screen and (max-width: 112.5em) {
  html {
    font-size: 56.25%;
  }
}

body {
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
  background-color: #f7f7f7;
}

a {
  text-decoration: none;
}

::selection {
  background-color: #7837da;
  color: #fff;
}

.page-wrapper {
  max-width: 100%;
}

.container {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 2.4rem;
  max-width: 85%;
  margin: 0 auto;
}
@media only screen and (max-width: 56.25em) {
  .container {
    max-width: 90%;
  }
}
@media only screen and (max-width: 56.25em) {
  .container {
    max-width: 95%;
  }
}

.section-wrapper {
  position: relative;
  margin: 0 auto 6.4rem;
}
.section-wrapper:nth-last-child(2) {
  margin-bottom: 3.6rem;
}
@media only screen and (max-width: 56.25em) {
  .section-wrapper {
    margin: 0 auto 4.8rem;
  }
  .section-wrapper:nth-last-child(2) {
    margin-bottom: 3.6rem;
  }
}
.section-wrapper::after {
  height: 3.2rem;
  width: 100%;
  position: absolute;
  top: 0;
  content: "";
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.03) 0%, rgba(0, 0, 0, 0) 100%);
}

.content-container {
  display: grid;
  grid-column: 2/12;
  gap: 3.6rem;
}
@media only screen and (max-width: 112.5em) {
  .content-container {
    grid-column: 1/13;
    gap: 4.8rem;
  }
}
@media only screen and (max-width: 75em) {
  .content-container {
    gap: 3.6rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .content-container {
    gap: 2.4rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .content-container {
    gap: 2.4rem;
  }
}

.col-1 {
  display: grid;
  grid-template-columns: 1fr;
}

.col-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3.6rem;
}
@media only screen and (max-width: 112.5em) {
  .col-2 {
    gap: 2.4rem;
  }
}
@media only screen and (max-width: 75em) {
  .col-2 {
    gap: 1.6rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .col-2 {
    gap: 1.4rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .col-2 {
    gap: 1rem;
  }
}

.col-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.6rem;
}
@media only screen and (max-width: 112.5em) {
  .col-3 {
    gap: 2.4rem;
  }
}
@media only screen and (max-width: 75em) {
  .col-3 {
    gap: 1.6rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .col-3 {
    gap: 1.4rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .col-3 {
    gap: 1rem;
  }
}

.col-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3.6rem;
}
@media only screen and (max-width: 112.5em) {
  .col-4 {
    gap: 2.4rem;
  }
}
@media only screen and (max-width: 75em) {
  .col-4 {
    gap: 1.6rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .col-4 {
    gap: 1.4rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .col-4 {
    gap: 1rem;
  }
}

.col-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 3.6rem;
}
@media only screen and (max-width: 112.5em) {
  .col-5 {
    gap: 2.4rem;
  }
}
@media only screen and (max-width: 75em) {
  .col-5 {
    gap: 1.6rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .col-5 {
    gap: 1.4rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .col-5 {
    gap: 1rem;
  }
}

.col-6 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 3.6rem;
}
@media only screen and (max-width: 112.5em) {
  .col-6 {
    gap: 2.4rem;
  }
}
@media only screen and (max-width: 75em) {
  .col-6 {
    gap: 1.6rem;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (max-width: 56.25em) {
  .col-6 {
    gap: 1.4rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .col-6 {
    gap: 1rem;
  }
}

.col-1-2-2 {
  display: grid;
  grid-template-columns: 1fr repeat(2, 2fr);
  gap: 3.6rem;
}
@media only screen and (max-width: 112.5em) {
  .col-1-2-2 {
    gap: 2.4rem;
  }
}
@media only screen and (max-width: 75em) {
  .col-1-2-2 {
    gap: 1.6rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .col-1-2-2 {
    gap: 1.4rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .col-1-2-2 {
    gap: 1rem;
  }
}

div:has(> .CookieDeclaration) {
  display: none !important;
}

.header-wrapper {
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(1.5rem);
}
@media only screen and (max-width: 56.25em) {
  .header-wrapper {
    background-color: white;
    backdrop-filter: none;
  }
}

.menu-container {
  display: grid;
  grid-column: 2/12;
  gap: 3.6rem;
}
@media only screen and (max-width: 56.25em) {
  .menu-container {
    position: fixed;
    top: 5.5rem;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s;
    opacity: 0;
    visibility: hidden;
    gap: 0;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(1.5rem);
  }
}

.sticky-top {
  position: sticky;
  top: 0;
  z-index: 100;
}

.sticky-bottom {
  position: sticky;
  bottom: 0;
}

.icon-box {
  display: flex;
  align-content: center;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
@media only screen and (max-width: 75em) {
  .icon-box {
    padding: 2rem 0;
  }
}
@media only screen and (max-width: 56.25em) {
  .icon-box {
    padding: 1rem 0;
  }
}
.icon-box--logo {
  display: flex;
  justify-content: flex-start;
}
.icon-box--contact {
  display: flex;
  justify-content: flex-end;
  grid-column: 12/13;
}
@media only screen and (max-width: 56.25em) {
  .icon-box--contact {
    grid-column: 3/4;
  }
}

.icon {
  height: 3.2rem;
  width: auto;
  align-self: center;
  fill: red;
}
.icon:hover {
  cursor: pointer;
}
.icon--margin-right {
  margin-right: 1.6rem;
}

.menu {
  display: grid;
  grid-template-columns: repeat(6, auto) 1fr;
  column-gap: 6.4rem;
  align-content: center;
  list-style: none;
}
@media only screen and (max-width: 75em) {
  .menu {
    column-gap: 3.6rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .menu {
    grid-template-columns: 1fr;
    width: 100%;
  }
}

.menu-item {
  padding: 3.2rem 0;
  font-size: 1.6rem;
  letter-spacing: 0.1rem;
  color: #808080;
}
@media only screen and (max-width: 112.5em) {
  .menu-item {
    padding: 2.4rem 0;
  }
}
@media only screen and (max-width: 75em) {
  .menu-item {
    padding: 2rem 0;
  }
}
@media only screen and (max-width: 56.25em) {
  .menu-item {
    font-size: 2.4rem;
    padding: 2.4rem 4.8rem;
    text-align: center;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.03) 0%, rgba(0, 0, 0, 0) 100%);
  }
}
@media only screen and (max-width: 37.5em) {
  .menu-item {
    padding: 1.8rem 3.6rem;
  }
}
.menu-item:hover {
  color: #7837da;
  cursor: pointer;
  text-shadow: 0 0 2rem rgba(0, 0, 0, 0.3);
}
.menu-item--active {
  color: #7837da;
  font-weight: 700;
}
.menu-item--transparent {
  color: transparent;
}

@media only screen and (max-width: 56.25em) {
  .header-container {
    display: grid;
    grid-template-columns: 1fr max-content 1fr;
  }
}

.menu-toggle {
  display: none;
}
@media only screen and (max-width: 56.25em) {
  .menu-toggle {
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

.menu-hamburger {
  position: absolute;
  content: "";
  background-color: #7837da;
  height: 4px;
  width: 36px;
  border-radius: 0;
  transition: all 0.3s;
}
.menu-hamburger::before {
  top: 10px;
  position: absolute;
  content: "";
  background-color: #7837da;
  height: 4px;
  width: 36px;
  border-radius: 0;
  transition: all 0.3s;
}
.menu-hamburger::after {
  bottom: 10px;
  position: absolute;
  content: "";
  background-color: #7837da;
  height: 4px;
  width: 36px;
  border-radius: 0;
  transition: all 0.3s;
}

.menu-checkbox {
  opacity: 0;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 10rem;
  height: 100%;
  z-index: -100;
}
@media only screen and (max-width: 56.25em) {
  .menu-checkbox {
    z-index: 4000;
  }
}

.menu-checkbox:checked ~ .menu-container {
  opacity: 1;
  visibility: visible;
}

.menu-checkbox:checked + .menu-toggle .menu-hamburger {
  background-color: transparent;
}

.menu-checkbox:checked + .menu-toggle .menu-hamburger::before {
  top: 0;
  transform: rotate(135deg);
}

.menu-checkbox:checked + .menu-toggle .menu-hamburger::after {
  top: 0;
  transform: rotate(-135deg);
}

.about-container {
  grid-column: 2/12;
  display: flex;
}

.about-txt-column {
  display: grid;
  grid-template-columns: 3fr min-content;
  gap: 10.8rem;
}
@media only screen and (max-width: 56.25em) {
  .about-txt-column {
    gap: 7.2rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .about-txt-column {
    gap: 0;
  }
}

.about-photo {
  display: flex;
}
@media only screen and (max-width: 37.5em) {
  .about-photo {
    grid-row: 1;
    margin-bottom: 3.6rem;
    justify-content: center;
  }
}

.about-image {
  border-radius: 50%;
  max-height: 22rem;
}
@media only screen and (max-width: 56.25em) {
  .about-image {
    max-height: 18rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .about-image {
    grid-column: 1/2;
    width: 60vw;
    min-height: 60vw;
  }
}

.image-box {
  display: grid;
  gap: 3.6rem;
}
@media only screen and (max-width: 112.5em) {
  .image-box {
    gap: 2.4rem;
  }
}
@media only screen and (max-width: 75em) {
  .image-box {
    gap: 1.6rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .image-box {
    gap: 1.4rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .image-box {
    gap: 1rem;
  }
}

.full-width {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.full-width--cover {
  height: 100%;
  width: 100%;
}
.full-width--hover:hover {
  transition: all 0.3s;
  transform: scale(1.02);
  cursor: pointer;
  filter: brightness(103%);
  box-shadow: 0 0 80px 0 rgba(0, 0, 0, 0.3), 0 0 15px 0 rgba(0, 0, 0, 0.2), 0 0 3px 0 rgba(0, 0, 0, 0.1);
}

.framed {
  border: solid 1px #d8d8d8;
}

.footer {
  background-color: rgb(81, 81, 81);
  color: #d8d8d8;
  font-size: 1.6rem;
  padding: 2rem 1rem;
}
.footer a {
  text-decoration: none;
  color: inherit;
}
.footer__container {
  display: flex;
  justify-content: space-between;
}
.footer__contact {
  display: flex;
  justify-content: space-between;
  gap: 2.4rem;
}
@media only screen and (max-width: 37.5em) {
  .footer__contact {
    flex-direction: column;
  }
}

.zoom-over:hover {
  transition: all 0.3s;
  transform: scale(2);
  cursor: zoom-out;
  box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.3);
}
@media only screen and (max-width: 56.25em) {
  .zoom-over:hover {
    transition: none;
    transform: scale(1);
  }
}

.txt-heading {
  color: rgb(81, 81, 81);
  text-transform: uppercase;
  font-size: 4.2rem;
  font-weight: 400;
  margin-top: 9.6rem;
  letter-spacing: 0.1rem;
}
@media only screen and (max-width: 112.5em) {
  .txt-heading {
    margin-top: 8.4rem;
  }
}
@media only screen and (max-width: 75em) {
  .txt-heading {
    margin-top: 7.2rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .txt-heading {
    margin-top: 6.4rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .txt-heading {
    margin-top: 4.8rem;
    font-size: 3.6rem;
  }
}

.txt-subheading {
  color: rgb(81, 81, 81);
  text-transform: uppercase;
  font-size: 2.4rem;
  font-weight: 400;
  margin-top: 2em;
  letter-spacing: 0.1rem;
}
@media only screen and (max-width: 112.5em) {
  .txt-subheading {
    margin-top: 2.2rem;
  }
}
@media only screen and (max-width: 75em) {
  .txt-subheading {
    margin-top: 2rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .txt-subheading {
    margin-top: 1.8rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .txt-subheading {
    font-size: 2rem;
    margin-top: 1.6rem;
  }
}

.txt-main {
  color: rgb(81, 81, 81);
  font-size: 1.8rem;
  line-height: 1.8;
  margin-top: 1.5em;
}
.txt-main:first-child {
  margin-top: 0;
}
@media only screen and (max-width: 112.5em) {
  .txt-main {
    line-height: 1.8;
  }
}
@media only screen and (max-width: 75em) {
  .txt-main {
    line-height: 1.8;
  }
}
@media only screen and (max-width: 56.25em) {
  .txt-main {
    line-height: 1.6;
  }
}
@media only screen and (max-width: 37.5em) {
  .txt-main {
    font-size: 1.6rem;
    line-height: 1.4;
    grid-row: 2;
  }
}

.right-align {
  text-align: right;
}

.txt-caption-heading {
  font-size: 2.4rem;
  text-transform: uppercase;
  font-weight: 400;
}

.hyperlink {
  color: inherit;
}
.hyperlink:hover {
  color: #7837da;
}

button {
  font-family: "Montserrat", sans-serif;
}

.before-after {
  display: flex;
  justify-content: center;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(0.5rem);
  z-index: 2000;
  transition: all 0.2s;
  opacity: 0;
  visibility: hidden;
}
@media only screen and (max-width: 56.25em) {
  .before-after {
    flex-direction: column-reverse;
    align-items: center;
  }
}
.before-after--display-none {
  display: none;
}
.before-after__button {
  background: #7837da;
  color: #d8d8d8;
  font-size: 1.8rem;
  padding: 0.8rem 1.2rem;
  border-radius: 0.8rem;
  border-width: 0;
  letter-spacing: 0.2rem;
}
.before-after__button:hover {
  cursor: pointer;
  background: #d8d8d8;
  color: #7837da;
}
.before-after__back {
  color: #d8d8d8;
  font-size: 6.4rem;
  font-weight: 100;
  text-align: center;
  margin-bottom: 2.4rem;
}
.before-after__back:hover {
  color: #7837da;
  cursor: pointer;
}
@media only screen and (max-width: 56.25em) {
  .before-after__back {
    position: absolute;
    padding-top: 0.8rem;
    right: 0.8rem;
    line-height: 1;
    margin-bottom: 0.4rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .before-after__back {
    right: 1.6rem;
  }
}
.before-after__nav {
  display: flex;
  flex-direction: column;
  align-self: center;
  padding: 3.6rem;
}
@media only screen and (max-width: 56.25em) {
  .before-after__nav {
    display: none;
    visibility: hidden;
  }
}
.before-after__presentation {
  grid-column: 3/span 8;
  display: flex;
  height: 100%;
}
.before-after__box {
  display: flex;
  width: 100%;
  height: 100%;
}
.before-after__badge {
  position: absolute;
  width: 11rem;
  margin: 2.4rem;
  padding: 1.2rem 0;
  font-size: 1.8rem;
  text-align: center;
  color: rgba(81, 81, 81, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  background-color: rgba(81, 81, 81, 0.2);
  border-radius: 0.8rem;
  z-index: 3000;
}
.before-after__image {
  max-width: 100%;
  height: 100%;
  object-fit: contain;
}

#back-mobile {
  display: none;
}
@media only screen and (max-width: 56.25em) {
  #back-mobile {
    display: unset;
  }
}

.contact-popup {
  position: fixed;
  top: 0;
  right: 0;
  padding: 5%;
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(1.5rem);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  box-shadow: 0 0 5rem rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 5rem rgba(0, 0, 0, 0.1);
}
@media only screen and (max-width: 112.5em) {
  .contact-popup {
    padding: 5% 5% 8%;
    top: 0;
  }
}
@media only screen and (max-width: 75em) {
  .contact-popup {
    padding: 5% 5% 10%;
  }
}
@media only screen and (max-width: 56.25em) {
  .contact-popup {
    padding: 10% 5%;
    width: 100vw;
    top: unset;
    right: unset;
    left: 0;
    bottom: 0;
  }
}
@media only screen and (max-width: 56.25em) {
  .contact-popup a {
    display: flex;
    width: 25vw;
  }
}
.contact-popup__btn-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
.contact-popup__btn-container p {
  font-size: 1.6rem;
  text-align: center;
  color: rgb(81, 81, 81);
}
.contact-popup__btn-container:hover {
  cursor: pointer;
}
.contact-popup__btn {
  position: relative;
  align-self: center;
  height: 3vw;
  width: 3vw;
  background: #7837da;
  color: #d8d8d8;
  padding: 1rem;
  border-radius: 50%;
  border-width: 0;
  margin: 1.6rem 8rem;
}
.contact-popup__btn:hover {
  cursor: pointer;
}
@media only screen and (max-width: 112.5em) {
  .contact-popup__btn {
    height: 4vw;
    width: 4vw;
  }
}
@media only screen and (max-width: 56.25em) {
  .contact-popup__btn {
    margin: 1rem 1.2rem;
    height: 10vw;
    width: 10vw;
    font-size: 2vw;
  }
}
@media only screen and (max-width: 37.5em) {
  .contact-popup__btn {
    height: 12vw;
    width: 12vw;
    font-size: 3vw;
  }
}
.contact-popup__btn img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 75%;
  height: auto;
}
.contact-popup__back {
  position: absolute;
  color: #7837da;
  top: 0;
  right: 1rem;
  font-weight: 100;
  line-height: 1;
  font-size: 2vw;
  cursor: pointer;
}
@media only screen and (max-width: 112.5em) {
  .contact-popup__back {
    font-size: 6vw;
  }
}
@media only screen and (max-width: 56.25em) {
  .contact-popup__back {
    font-size: 11vw;
  }
}
@media only screen and (max-width: 37.5em) {
  .contact-popup__back {
    font-size: 12vw;
  }
}
@media only screen and (max-width: 37.5em) {
  .contact-popup__desktop {
    display: none;
  }
}

.contact-checkbox {
  position: absolute;
  width: 6rem;
  height: 100%;
  top: 0;
  opacity: 0;
}
.contact-checkbox:hover {
  cursor: pointer;
}

.contact-checkbox:checked ~ .contact-popup {
  opacity: 1;
  visibility: visible;
}

/*# sourceMappingURL=style.css.map */
