@charset "UTF-8";
/**
*
* Testing
*
**/
:root {
  --black: 0, 0, 0;
  --white: 255, 255, 255;
  --off-white: 215, 203, 227;
  --dark-grey: 75, 75, 77;
  --primary: 15, 3, 27;
  --secondary: 234, 153, 236;
  --tertiary: 215, 203, 227;
}

.image__grid .item p, #consent-popup, .call-now, .button .button__inner {
  box-shadow: 0 0.4rem 1rem rgba(0, 0, 0, 0.05);
}

.product__info__box, .product__grid .item .product__info .sizes,
.product__grid .item .product__info .price, .product__grid .item, form.form fieldset input[type=checkbox], form.form .box__label__wrapper, form.form .input__wrapper input:not([type=submit]),
form.form .input__wrapper input:not([type=firstname]),
form.form .input__wrapper textarea,
form.form .input__wrapper select, form.form {
  border-radius: clamp(1rem, 2vw, 1rem);
}

body main section figure,
body main section picture,
body main footer figure,
body main footer picture {
  display: flex;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

body main section figure img,
body main section picture img,
body main footer figure img,
body main footer picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.lazy-load-item {
  background: rgba(var(--black), 1);
  overflow: hidden;
  z-index: 1;
}

.lazy-load-item .lazy-item {
  display: none;
  opacity: 0;
  transform: scale(1.1);
}

.lazy-load-item .lazy-item.loaded {
  display: block;
  animation: fadeInLazy 2s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

@keyframes fadeInLazy {
  from {
    opacity: 0;
    transform: scale(1.1);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.animated__line {
  width: calc(100% - 40rem);
  margin: 0 20rem;
  height: 1px;
  background: currentColor;
  opacity: 0.1;
  display: flex;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 2s 0.1s cubic-bezier(0.19, 1, 0.22, 1);
}
@media (max-width: 1024px) {
  .animated__line {
    width: calc(100% - 4rem);
    margin: 0 2rem;
  }
}
.animated__line.animated__line__delayed {
  transition-delay: 1s;
}
.animated__line.visible {
  transform: none;
}

@media (min-width: 1024px) {
  ul.menu li a {
    display: inline-block;
    overflow: hidden;
    position: relative;
    vertical-align: top;
  }
  ul.menu li a:after {
    background: currentColor;
    bottom: 0;
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1);
    width: 100%;
  }
  ul.menu li a:hover:after {
    transform: scaleX(1);
    transform-origin: left center;
  }
  ul.menu li a:after {
    transform: scaleX(0);
    transform-origin: right center;
  }
  ul.menu li a {
    display: inline-block;
  }
}
/* ------------------------------
     HEADING REVEAL
  ------------------------------ */
.heading__reveal {
  display: flex;
  flex-direction: column;
  gap: 0.2em;
}
@media (max-width: 1024px) {
  .heading__reveal {
    display: inline-flex;
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.heading__reveal > span {
  display: block;
  overflow: hidden;
  z-index: 1;
  padding-right: 0.2rem;
  height: 1.15em;
}
.heading__reveal > span > span {
  display: inline-block;
  transform: translate3d(0, 101%, 0);
}

.heading__reveal.visible > span > span {
  animation: revealHeading 1.8s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}
.heading__reveal.visible > span:nth-of-type(1) {
  /* store stagger delay in CSS variable */
  --stagger-delay: calc(0s + (0 * 0.3s));
}
.heading__reveal.visible > span:nth-of-type(1) > span {
  animation-delay: var(--stagger-delay);
}
.heading__reveal.visible > span:nth-of-type(2) {
  /* store stagger delay in CSS variable */
  --stagger-delay: calc(0s + (1 * 0.3s));
}
.heading__reveal.visible > span:nth-of-type(2) > span {
  animation-delay: var(--stagger-delay);
}
.heading__reveal.visible > span:nth-of-type(3) {
  /* store stagger delay in CSS variable */
  --stagger-delay: calc(0s + (2 * 0.3s));
}
.heading__reveal.visible > span:nth-of-type(3) > span {
  animation-delay: var(--stagger-delay);
}
.heading__reveal.visible > span:nth-of-type(4) {
  /* store stagger delay in CSS variable */
  --stagger-delay: calc(0s + (3 * 0.3s));
}
.heading__reveal.visible > span:nth-of-type(4) > span {
  animation-delay: var(--stagger-delay);
}
.heading__reveal.visible > span:nth-of-type(5) {
  /* store stagger delay in CSS variable */
  --stagger-delay: calc(0s + (4 * 0.3s));
}
.heading__reveal.visible > span:nth-of-type(5) > span {
  animation-delay: var(--stagger-delay);
}

/* +0.8s delayed version (for items already visible on load) */
.heading__reveal.visible--delayed > span > span {
  animation-delay: calc(var(--stagger-delay) + 0.8s) !important;
}

@keyframes revealHeading {
  70% {
    opacity: 1;
  }
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
/* ------------------------------
     FADE IN
  ------------------------------ */
.fade__in {
  display: inline;
  opacity: 0;
  transform: translate3d(0, 1.4rem, 0);
  pointer-events: none;
}

.fade__in.visible {
  animation: fadeIn 2s 0.1s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    pointer-events: all;
  }
}
/* ------------------------------
     BUTTON REVEAL
  ------------------------------ */
.button__reveal {
  display: inline;
  opacity: 0;
  transform: translate3d(0, 2rem, 0);
  pointer-events: none;
}

.button__reveal.visible {
  animation: btnReveal 2s 0.8s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

@keyframes btnReveal {
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    pointer-events: all;
  }
}
/* ------------------------------
     GENERIC DELAY CLASS
     (applies +0.8s to items in view on load)
  ------------------------------ */
.visible--delayed {
  animation-delay: 0.3s !important;
}

html {
  scroll-behavior: smooth;
  background: rgba(var(--white), 1);
  -webkit-tap-highlight-color: transparent !important;
  font-size: 0.5208333333vw !important;
  line-height: 1;
  -webkit-tap-highlight-color: transparent;
}
@media (max-width: 1024px) {
  html {
    font-size: 1.3333333333vw !important;
  }
}

body {
  -webkit-tap-highlight-color: transparent !important;
  background: rgba(var(--white), 1);
  scroll-behavior: smooth;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  visibility: hidden;
}
body img {
  -webkit-user-drag: none;
}
body #down {
  top: calc(-1 * var(--headerHeight));
}
body main {
  background: rgba(var(--white), 1);
  z-index: 2;
  overflow-x: hidden;
}
body main section {
  padding: 10rem 0;
  background: rgba(var(--white), 1);
  z-index: 1;
}
body main section:nth-of-type(1) {
  padding-top: calc(5rem + var(--headerHeight));
}
@media (max-width: 1024px) {
  body main section:nth-of-type(1) {
    padding-top: calc(5rem + var(--headerHeight));
  }
}
body main section .container {
  padding: 0 20rem;
}
@media (max-width: 1024px) {
  body main section .container {
    padding: 0 3rem;
  }
}
body main section .picture__wrapper,
body main footer .picture__wrapper {
  display: flex;
  overflow: hidden;
  z-index: 1;
  width: 100%;
  height: 100%;
}
body main section .picture__wrapper figure,
body main section .picture__wrapper picture,
body main footer .picture__wrapper figure,
body main footer .picture__wrapper picture {
  width: 100%;
  height: 120%; /* extra height for parallax movement */
}
@media (max-width: 1024px) {
  body main section .picture__wrapper figure,
  body main section .picture__wrapper picture,
  body main footer .picture__wrapper figure,
  body main footer .picture__wrapper picture {
    height: 140%;
  }
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  position: relative;
  -webkit-tap-highlight-color: transparent !important;
  max-width: 100vw;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
iframe {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

*::marker {
  display: none;
}

@font-face {
  font-family: "Satoshi";
  font-weight: 400;
  font-style: normal;
  src: url("../fonts/Satoshi-Regular.woff2") format("woff2");
  font-display: swap;
}
body {
  font-family: "Satoshi", Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-weight: 400;
  color: rgba(var(--primary), 1);
}
body ::-moz-selection {
  color: rgba(var(--tertiary), 1);
  background: rgba(var(--primary), 1);
}
body ::selection {
  color: rgba(var(--tertiary), 1);
  background: rgba(var(--primary), 1);
}
body strong {
  font-weight: 600;
}
body a {
  text-decoration: none;
  color: inherit;
  cursor: pointer !important;
}
body a p {
  cursor: pointer !important;
}
body .line__height {
  line-height: 1.5;
}
body .font__opaque__dark {
  color: rgba(var(--primary), 0.7) !important;
}
body .font__opaque__light {
  color: rgba(var(--white), 0.7) !important;
}
body .pink__text {
  color: rgba(var(--secondary), 1);
}
body .font__xs {
  font-size: 2rem;
}
@media (max-width: 1024px) {
  body .font__xs {
    font-size: 2.8rem;
    line-height: 1.5;
  }
}
body .font__s {
  font-size: 2.6rem;
}
@media (max-width: 1024px) {
  body .font__s {
    font-size: 3.4rem;
  }
}
body .font__m {
  font-size: 3.2rem;
}
@media (max-width: 1024px) {
  body .font__m {
    letter-spacing: 0;
    font-size: 4.5rem;
  }
}
body .font__l {
  font-size: 7rem;
}
@media (max-width: 1024px) {
  body .font__l {
    letter-spacing: 0;
    font-size: 6rem;
    line-height: 1.2;
  }
}
body .font__xl {
  font-size: 10rem;
}
@media (max-width: 1024px) {
  body .font__xl {
    letter-spacing: 0;
    font-size: 8rem;
    line-height: 1.2;
  }
}

.accreditation__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5rem;
}
.accreditation__logos > picture {
  height: 7rem;
  width: auto;
  background: none;
}
@media (max-width: 1024px) {
  .accreditation__logos > picture {
    height: 5.4rem;
  }
}
.accreditation__logos > picture > img {
  height: 7rem;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 1024px) {
  .accreditation__logos > picture > img {
    height: 5.4rem;
  }
}

:root {
  --footer-marquee-width: 100vw;
  --footer-marquee-height: 22rem;
  --footer-marquee-elements-displayed: 2;
  --footer-marquee-element-width: calc(
    var(--footer-marquee-width) / var(--footer-marquee-elements-displayed)
  );
  --footer-marquee-animation-duration: calc(
    var(--footer-marquee-elements) * 6s
  );
}
@media (max-width: 1024px) {
  :root {
    --footer-marquee-height: 32rem;
    --footer-marquee-width: 400vw;
    --footer-marquee-animation-duration: calc(
      var(--footer-marquee-elements) * 120s
    );
  }
}

.accordion__wrapper {
  width: 100vw;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1024px) {
  .accordion__wrapper {
    width: 100%;
    gap: 1.5rem;
    margin: 0 auto;
  }
}
.accordion__wrapper .item {
  width: calc(100vw - 80rem);
  /* Style the accordion panel */
}
@media (max-width: 1280px) {
  .accordion__wrapper .item {
    width: 100%;
  }
}
.accordion__wrapper .item .accordion__heading {
  background: rgba(var(--tertiary), 1);
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  overflow: hidden;
  padding: 2rem 1rem;
}
@media (max-width: 1024px) {
  .accordion__wrapper .item .accordion__heading {
    font-size: 2.4rem;
  }
}
.accordion__wrapper .item .accordion__heading > span {
  display: inline-block;
}
@media (max-width: 1024px) {
  .accordion__wrapper .item .accordion__heading > span:nth-of-type(1) {
    width: 90%;
  }
}
.accordion__wrapper .item .accordion__heading > span::-moz-selection {
  /* Code for Firefox */
  background: transparent !important;
  color: inherit !important;
}
.accordion__wrapper .item .accordion__heading > span::selection {
  background: transparent !important;
  color: inherit !important;
}
.accordion__wrapper .item .accordion__heading span.close {
  display: flex;
  align-items: center;
  justify-content: center;
  right: 2rem;
  height: auto;
  width: 1.3rem;
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}
@media (max-width: 1024px) {
  .accordion__wrapper .item .accordion__heading span.close {
    width: 2rem;
  }
}
.accordion__wrapper .item .accordion__heading span.close svg {
  height: 100%;
  width: 100%;
}
.accordion__wrapper .item .accordion__heading span.close svg path {
  stroke: rgba(var(--primary), 1);
}
.accordion__wrapper .item .active span.close {
  transform: rotateX(180deg);
}
.accordion__wrapper .item .hidden__content {
  width: 100%;
  overflow: hidden;
  max-height: 0;
  transition: max-height 1s cubic-bezier(0.19, 1, 0.22, 1);
  background: rgba(var(--tertiary), 1);
}
.accordion__wrapper .item .hidden__content:not(:nth-last-of-type(1)) {
  margin-bottom: 1rem;
}
.accordion__wrapper .item .hidden__content p {
  margin: 2.5rem;
}
@media (max-width: 1024px) {
  .accordion__wrapper .item .hidden__content p {
    margin: 2rem 1rem;
  }
}
.accordion__wrapper .item .hidden__content p::-moz-selection {
  /* Code for Firefox */
  background: transparent !important;
  color: inherit !important;
}
.accordion__wrapper .item .hidden__content p::selection {
  background: transparent !important;
  color: inherit !important;
}
.accordion__wrapper .item .hidden__content p a {
  text-decoration: underline;
}
@media (min-width: 1024px) {
  .accordion__wrapper .item .hidden__content p a:hover {
    text-decoration: none;
  }
}

section.banner {
  height: 80rem;
  display: flex;
  align-items: center;
}
@media (max-width: 1024px) {
  section.banner {
    padding: 2rem 1rem;
    padding-bottom: 5rem;
    height: 70rem;
  }
}
section.banner .picture__wrapper {
  position: absolute;
  top: 0;
  left: 0;
}
section.banner .picture__wrapper picture img {
  filter: brightness(70%) saturate(120%);
}
section.banner .container {
  z-index: 2;
  color: rgba(var(--white), 1);
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (max-width: 1024px) {
  section.banner .container {
    gap: 5rem;
  }
}
section.banner .container h2 {
  width: 85rem;
}
@media (max-width: 1024px) {
  section.banner .container h2 {
    width: 100%;
  }
}
section.banner .container > p {
  width: 70rem;
}
@media (max-width: 1024px) {
  section.banner .container > p {
    width: 45rem;
  }
}

button {
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
}

.button__wrapper {
  z-index: 9;
  display: flex;
  gap: 2rem;
  margin: 3rem 0;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 1024px) {
  .button__wrapper {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
}

.button {
  width: -moz-fit-content;
  width: fit-content;
  z-index: 9;
}
@media (max-width: 1024px) {
  .button {
    margin-top: 0rem;
  }
}
.button .button__inner {
  display: block;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 2rem 2.4rem;
  border-radius: 8rem;
  background: rgba(var(--primary), 1);
  color: rgba(var(--white), 1);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  cursor: pointer !important;
  text-transform: capitalize;
  letter-spacing: 0.06rem;
  transition: background 0.6s cubic-bezier(0.19, 1, 0.22, 1), color 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}
.button .button__inner svg {
  width: 1.6rem;
  height: auto;
}
.button .button__inner svg path {
  fill: currentColor;
  transition: fill 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}
@media (min-width: 1024px) {
  .button .button__inner:hover {
    background: rgba(var(--primary), 0.7);
  }
}
@media (max-width: 1024px) {
  .button .button__inner {
    padding: 3rem;
  }
}

.button__alt .button__inner {
  background: rgba(var(--white), 1);
  color: rgba(var(--primary), 1);
}
@media (min-width: 1024px) {
  .button__alt .button__inner:hover {
    background: rgba(var(--tertiary), 0.7);
  }
}

ul.social__sharing {
  display: flex;
}
ul.social__sharing li {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1024px) {
  ul.social__sharing li {
    margin: 3rem 0;
  }
}
ul.social__sharing li:nth-of-type(2) {
  margin: 0 3rem;
}
ul.social__sharing li p {
  display: flex;
  align-items: center;
  justify-content: center;
}
ul.social__sharing li p a {
  display: flex;
  align-items: center;
  justify-content: center;
}
ul.social__sharing li p a:hover svg {
  transform: scale(1.1);
}
ul.social__sharing li p a svg {
  height: 3rem;
  width: 3rem;
  margin-right: 0.4rem;
  transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  border: 1px solid rgba(0, 0, 0, 0);
}
@media (max-width: 1024px) {
  ul.social__sharing li p a svg {
    height: 4rem;
    width: 4rem;
  }
}

.call-now {
  position: fixed;
  z-index: 1000000000000000000000000;
  bottom: 12rem;
  right: 2rem;
  display: none;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  align-items: center;
  justify-content: center;
  background: rgba(var(--tertiary), 1);
  border-radius: 50%;
}
@media (max-width: 1024px) {
  .call-now {
    display: flex;
  }
}
.call-now a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 8rem;
  height: 8rem;
}
.call-now a svg {
  width: 3.4rem;
  height: 3.4rem;
}
.call-now a svg path {
  fill: rgba(var(--primary), 1);
}

#consent-popup {
  position: fixed;
  bottom: 3rem;
  left: 3rem;
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  z-index: 99;
  height: -moz-fit-content;
  height: fit-content;
  width: -moz-fit-content;
  width: fit-content;
  transition: opacity 1s 0.4s cubic-bezier(0.19, 1, 0.22, 1), transform 1.6s cubic-bezier(0.19, 1, 0.22, 1);
}
@media (max-width: 724px) {
  #consent-popup {
    top: auto;
    bottom: 3rem;
    left: 2rem;
  }
}
#consent-popup > p {
  color: rgba(var(--tertiary), 1);
  background: rgba(var(--primary), 1);
  padding: 1rem;
  font-size: 1.6rem;
}
@media (max-width: 724px) {
  #consent-popup > p {
    font-size: 2.2rem;
  }
}
#consent-popup .cookie__buttons {
  display: flex;
}
#consent-popup .btn {
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(var(--secondary), 1);
  color: rgba(var(--primary), 1);
  transition: background 0.2s cubic-bezier(0.19, 1, 0.22, 1);
  width: 100%;
  padding: 0.6rem;
  cursor: pointer;
  font-size: 1.6rem;
}
@media (max-width: 724px) {
  #consent-popup .btn {
    font-size: 2.2rem;
  }
}
@media (min-width: 1024px) {
  #consent-popup .btn:hover {
    background: rgba(var(--secondary), 1);
  }
}
#consent-popup.hidden {
  z-index: -99;
  opacity: 0;
  transform: translate3d(0, 1rem, 0);
}

/* =========================
   DROPDOWN – BASE
========================= */
.dropdown {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  /* Accordion container — CSS grid auto-height trick */
  /* Open state */
}
@media (max-width: 1024px) {
  .dropdown {
    display: flex;
  }
}
.dropdown__btn {
  cursor: pointer;
  display: flex;
  align-items: center;
  z-index: 4;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  height: auto;
}
.dropdown__btn svg {
  width: 1.7rem;
  height: auto;
  pointer-events: none;
  margin-left: 0.5rem;
  top: 0.15rem;
  transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1);
}
@media (max-width: 1024px) {
  .dropdown__btn svg {
    width: 2rem;
    top: 0.25rem;
  }
}
.dropdown__btn svg path {
  fill: currentColor;
}
.dropdown__content {
  width: 100%;
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows 1s cubic-bezier(0.19, 1, 0.22, 1);
  background: transparent;
  z-index: 3;
}
.dropdown__content__inner {
  overflow: hidden;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.dropdown__content__inner ul.menu {
  gap: 0;
}
.dropdown__content__inner ul.menu li.menu__heading {
  display: none;
}
.dropdown__content__inner ul.menu li a {
  width: 100%;
  display: flex;
  z-index: 3;
  padding: 0.5rem 0;
  transition: background 1s cubic-bezier(0.19, 1, 0.22, 1), color 1s cubic-bezier(0.19, 1, 0.22, 1);
  color: rgba(var(--white), 0.7);
}
.dropdown__content__inner ul.menu li a:after {
  display: none;
}
@media (min-width: 1024px) {
  .dropdown__content__inner ul.menu li a:hover {
    background: rgba(var(--secondary), 1);
    color: rgba(var(--primary), 1);
  }
}
.dropdown.is-open .dropdown__content {
  grid-template-rows: 1fr;
}
.dropdown.is-open .dropdown__btn svg {
  transform: rotate(180deg);
}

/* =========================
   SIDE MENU VARIANT
========================= */
.side__nav .dropdown {
  width: 100%;
  align-items: stretch;
}
.side__nav .dropdown__content {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

/* =========================
   HEADER VARIANT
========================= */
header .dropdown {
  justify-content: center;
  align-items: center;
  height: 100%;
}
header .dropdown__btn {
  height: 100%;
}
header .dropdown__content {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 30rem;
  background: transparent;
  z-index: 999;
  top: 10rem;
}
header .dropdown__content__inner {
  background: rgba(var(--primary), 1);
}
header .dropdown__content__inner ul.menu li a {
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.2rem;
}

.fixed__buttons {
  z-index: 9;
  position: fixed;
  bottom: 1.2rem;
  right: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}
@media (max-width: 1024px) {
  .fixed__buttons {
    left: auto;
    transform: none;
    width: 100%;
    gap: 2rem;
    bottom: 2.3rem;
    padding-left: 2rem;
  }
  .fixed__buttons .button {
    font-size: 3rem;
  }
}
.fixed__buttons .button .button__inner {
  border: 1px solid rgba(var(--white), 1);
}
.fixed__buttons .button.button__alt .button__inner {
  border: 1px solid rgba(var(--primary), 1);
}

form.form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: -moz-fit-content;
  width: fit-content;
  background: rgba(var(--tertiary), 1);
  padding: 4rem;
}
@media (max-width: 1024px) {
  form.form {
    padding: 6rem 2rem;
    border-radius: 0;
  }
}
form.form .input__wrapper {
  flex-grow: 1;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}
form.form .input__wrapper input:not([type=submit]),
form.form .input__wrapper input:not([type=firstname]),
form.form .input__wrapper textarea,
form.form .input__wrapper select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  outline: none;
  resize: none;
  display: flex;
  flex-grow: 1;
  cursor: pointer;
  width: 100rem;
  height: 6rem;
  margin-top: 0.25rem;
  color: rgba(var(--primary), 1);
  caret-color: rgba(var(--primary), 1);
  background: rgba(var(--white), 1);
  font: inherit;
  letter-spacing: 0.04rem;
  padding: 1rem;
}
@media (max-width: 1024px) {
  form.form .input__wrapper input:not([type=submit]),
  form.form .input__wrapper input:not([type=firstname]),
  form.form .input__wrapper textarea,
  form.form .input__wrapper select {
    width: calc(100vw - 4rem);
    height: 6rem;
  }
}
form.form .input__wrapper input:not([type=submit])::-moz-placeholder, form.form .input__wrapper input:not([type=firstname])::-moz-placeholder, form.form .input__wrapper textarea::-moz-placeholder, form.form .input__wrapper select::-moz-placeholder {
  color: rgba(var(--primary), 1);
  opacity: 1;
}
form.form .input__wrapper input:not([type=submit])::placeholder,
form.form .input__wrapper input:not([type=firstname])::placeholder,
form.form .input__wrapper textarea::placeholder,
form.form .input__wrapper select::placeholder {
  color: rgba(var(--primary), 1);
  opacity: 1;
}
form.form .input__wrapper input:not([type=submit]):focus,
form.form .input__wrapper input:not([type=firstname]):focus,
form.form .input__wrapper textarea:focus,
form.form .input__wrapper select:focus {
  box-shadow: 0 0 0 20rem transparent inset;
}
form.form .input__wrapper input:not([type=submit]):not(:-moz-placeholder) ~ label, form.form .input__wrapper input:not([type=firstname]):not(:-moz-placeholder) ~ label, form.form .input__wrapper textarea:not(:-moz-placeholder) ~ label, form.form .input__wrapper select:not(:-moz-placeholder) ~ label {
  opacity: 0;
}
form.form .input__wrapper input:not([type=submit]):not(:placeholder-shown) ~ label,
form.form .input__wrapper input:not([type=firstname]):not(:placeholder-shown) ~ label,
form.form .input__wrapper textarea:not(:placeholder-shown) ~ label,
form.form .input__wrapper select:not(:placeholder-shown) ~ label {
  opacity: 0;
}
form.form .input__wrapper label {
  pointer-events: none;
  color: rgba(var(--primary), 1);
}
form.form .input__wrapper textarea {
  height: 20rem;
}
@media (max-width: 1024px) {
  form.form .input__wrapper textarea {
    height: 40rem;
  }
}
form.form select {
  border: 1px solid rgba(var(--primary), 0.35);
  border-radius: 0.5rem;
  padding-left: 1.5rem;
  margin-bottom: 1.6rem;
  width: 90rem;
  height: 6rem;
}
@media (max-width: 768px) {
  form.form select {
    width: calc(100vw - 12rem);
    height: 12rem;
    margin: 1rem 2rem 3rem;
    padding-left: 3rem;
  }
}
form.form input {
  background-color: rgba(var(--white), 1) !important;
}
form.form input:not([type=submit]),
form.form input:not([type=firstname]) {
  background-color: rgba(var(--white), 1) !important;
}
form.form input:-webkit-autofill,
form.form input:-webkit-autofill:hover,
form.form input:-webkit-autofill:focus,
form.form input:-webkit-autofill:active {
  box-shadow: 0 0 0 1000px rgba(var(--white), 1) inset !important;
  -webkit-text-fill-color: rgba(var(--primary), 1) !important;
  -webkit-transition: background-color 99999s ease-in-out 0s !important;
  transition: background-color 99999s ease-in-out 0s !important;
}
form.form button[type=submit] {
  margin-bottom: 1.5rem;
}
form.form button[type=submit] .button__inner {
  text-transform: uppercase !important;
  width: 100rem;
}
@media (max-width: 1024px) {
  form.form button[type=submit] .button__inner {
    width: calc(100vw - 4rem);
  }
}
form.form .box__label__wrapper {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  background: rgba(var(--white), 0.3);
  width: 100rem;
  padding: 2rem;
}
@media (max-width: 768px) {
  form.form .box__label__wrapper {
    width: calc(100vw - 4rem);
    flex-direction: column;
    align-items: flex-start;
  }
}
form.form fieldset {
  border: none;
  padding: 0;
  margin: 2rem 0;
}
form.form fieldset .box__label__wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
form.form fieldset label {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  cursor: pointer;
}
form.form fieldset input[type=checkbox] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 2.2rem;
  height: 2.2rem;
  margin-right: 0.5rem;
  border: 1px solid rgba(var(--primary), 0.35);
  cursor: pointer;
  position: relative;
  transition: all 0.2s cubic-bezier(0.19, 1, 0.22, 1);
}
@media (max-width: 1024px) {
  form.form fieldset input[type=checkbox] {
    width: 4rem;
    height: 4rem;
    margin-right: 1.5rem;
  }
}
form.form fieldset input[type=checkbox]:checked {
  border: 1px solid rgba(var(--primary), 1);
  box-shadow: 0 0 0 0.3rem rgba(var(--primary), 0.15);
}
form.form fieldset input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  left: 0.6rem;
  top: 0.3rem;
  width: 0.4rem;
  height: 1rem;
  border: solid rgba(var(--primary), 1);
  border-width: 0 0.3rem 0.3rem 0;
  transform: rotate(45deg);
}
@media (max-width: 1024px) {
  form.form fieldset input[type=checkbox]:checked::after {
    left: 1rem;
    top: 0.5rem;
    width: 1rem;
    height: 2rem;
    border-width: 0 0.5rem 0.5rem 0;
  }
}
form.form input.firstname {
  background: transparent !important;
}
form.form .firstname {
  background-color: transparent !important;
  position: absolute !important;
  bottom: 0.5rem !important;
  left: 50rem !important;
  color: transparent !important;
  border: none !important;
  border-bottom: none !important;
  outline: none !important;
  font-size: 1rem !important;
  padding: 0 !important;
  height: 2rem !important;
  width: 20%;
}
form.form .firstname ~ label {
  color: transparent !important;
}
form.form .firstname:focus {
  box-shadow: 0 0 0 20rem transparent inset !important;
  -webkit-box-shadow: 0 0 0 20rem transparent inset !important;
  border: none;
}
form.form label[for=firstname] {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
}

form.subscribe__form input:not([type=submit]),
form.subscribe__form input:not([type=firstname]),
form.subscribe__form textarea,
form.subscribe__form select {
  width: 40rem !important;
}
@media (max-width: 1024px) {
  form.subscribe__form input:not([type=submit]),
  form.subscribe__form input:not([type=firstname]),
  form.subscribe__form textarea,
  form.subscribe__form select {
    width: 60rem !important;
  }
}
form.subscribe__form button[type=submit] {
  margin-bottom: 1.5rem;
}
form.subscribe__form button[type=submit] .button__inner {
  width: 40rem !important;
}
@media (max-width: 1024px) {
  form.subscribe__form button[type=submit] .button__inner {
    width: 60rem !important;
  }
}
form.subscribe__form span.font__s {
  text-align: left;
  margin-bottom: 1rem;
}
@media (max-width: 1024px) {
  form.subscribe__form span.font__s {
    text-align: center;
    width: 100%;
  }
}

.image__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
@media (max-width: 1024px) {
  .image__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .image__grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.image__grid .item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  overflow: hidden;
  z-index: 2;
}
.image__grid .item p {
  width: 100%;
  position: absolute;
  z-index: 1;
  bottom: 0;
  color: rgba(var(--primary), 1);
  background: rgba(var(--tertiary), 0.7);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  padding: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.image__grid .item p > span {
  display: block;
}
.image__grid .item p > span strong {
  display: block;
  margin-top: 1rem;
  text-decoration: underline;
}
.image__grid .item p.date {
  width: -moz-fit-content;
  width: fit-content;
  position: absolute;
  z-index: 1;
  bottom: auto;
  left: auto;
  top: 2rem;
  right: 2rem;
  color: rgba(var(--tertiary), 1);
  background: none;
  padding: 0;
  box-shadow: none;
  -webkit-backdrop-filter: none;
          backdrop-filter: none;
}
.image__grid .item .picture__wrapper {
  display: flex;
  width: 100%;
  height: 100%;
}
.image__grid .item .picture__wrapper picture {
  filter: brightness(80%) saturate(120%);
}
.image__grid .button {
  display: block;
  width: 100%;
  align-self: flex-end;
  margin-top: 2rem;
}

.image__grid__portraits {
  gap: 2rem;
}
.image__grid__portraits .item {
  width: 44rem;
  height: 60rem;
}

.image__grid__landscapes {
  gap: 2rem;
}
.image__grid__landscapes .item {
  width: 64rem;
  height: 46rem;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(var(--white), 1);
  -webkit-backdrop-filter: blur(60px);
          backdrop-filter: blur(60px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000000000000000000000000000000;
  isolation: isolate;
  touch-action: manipulation;
  -webkit-user-select: none;
  -moz-user-select: none;
       user-select: none;
}
.lightbox.active {
  display: flex;
}
.lightbox__img {
  max-width: 80vw;
  max-height: 85vh;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 1024px) {
  .lightbox__img {
    max-height: 65vh;
    max-width: 95vw;
    margin-top: -10rem;
  }
}
.lightbox__close, .lightbox__prev, .lightbox__next {
  position: absolute;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 9;
  touch-action: manipulation;
  -webkit-user-select: none;
  -moz-user-select: none;
       user-select: none;
}
.lightbox__close {
  top: 4rem;
  right: 4rem;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 10rem;
  height: 10rem;
}
.lightbox__close span {
  position: absolute;
  width: 10rem;
  height: 0.2rem;
  background: rgba(var(--primary), 1);
}
.lightbox__close span:nth-of-type(1) {
  transform: rotate(45deg);
}
.lightbox__close span:nth-of-type(2) {
  transform: rotate(-45deg);
}
.lightbox__prev, .lightbox__next {
  color: rgba(var(--primary), 1);
}
@media (max-width: 1024px) {
  .lightbox__prev, .lightbox__next {
    bottom: 15rem;
  }
}
.lightbox__prev {
  left: 5rem;
}
.lightbox__next {
  right: 5rem;
}

.marquee {
  overflow: hidden;
  width: 100%;
  background: rgba(var(--tertiary));
  padding: 5rem 0;
}

.marquee__track {
  display: flex;
  white-space: nowrap;
  will-change: transform;
}

.marquee__item {
  width: 15rem;
  height: 10rem;
  margin-right: 5rem;
  flex: 0 0 auto;
}
.marquee__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

ul.menu {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
@media (max-width: 1024px) {
  ul.menu {
    gap: 2rem;
  }
  ul.menu:not(:nth-of-type(1)) li.menu__heading {
    margin-top: 5rem;
  }
}
ul.menu li.menu__heading {
  text-transform: capitalize;
  margin-bottom: 0.5rem;
}
ul.menu li a {
  width: -moz-fit-content;
  width: fit-content;
  opacity: 0.7;
  transition: opacity 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}
@media (min-width: 1024px) {
  ul.menu li a:hover {
    opacity: 1;
  }
}

.product__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-content: center;
  justify-items: center;
  gap: 1rem;
  width: 100%;
  /* highlight upgrade items with a red border */
}
@media (max-width: 1024px) {
  .product__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    padding: 0 1rem;
  }
}
.product__grid .item {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 2;
  width: 35rem;
  height: 45rem;
  border: 1px solid rgba(var(--tertiary), 1);
  background: rgb(245, 245, 245);
}
@media (max-width: 1024px) {
  .product__grid .item {
    width: 100%;
    height: 100%;
  }
}
.product__grid .item picture {
  background: rgba(var(--white), 1);
  display: flex;
  overflow: hidden;
  z-index: 1;
  cursor: pointer;
  padding: 1rem;
}
@media (max-width: 1024px) {
  .product__grid .item picture {
    height: 30rem;
  }
}
.product__grid .item picture img {
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: bottom;
     object-position: bottom;
}
.product__grid .item .product__action__btns {
  position: absolute;
  z-index: 9;
  cursor: pointer;
  top: 2rem;
  right: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  height: -moz-fit-content;
  height: fit-content;
}
.product__grid .item .product__action__btns svg {
  width: auto;
  height: 2.4rem;
}
@media (max-width: 1024px) {
  .product__grid .item .product__action__btns svg {
    height: 4rem;
  }
}
.product__grid .item .product__action__btns svg path {
  fill: rgba(var(--white), 1);
}
.product__grid .item .product__info {
  display: flex;
  gap: 3rem;
  flex-direction: column;
  justify-content: space-between;
  color: rgba(var(--primary), 1);
  padding: 1rem;
  padding-top: 2rem;
  z-index: 99;
  height: -moz-fit-content;
  height: fit-content;
}
.product__grid .item .product__info .price {
  display: none;
}
.product__grid .item .product__info .sizes,
.product__grid .item .product__info .price {
  padding: 1rem 0;
}
@media (max-width: 1024px) {
  .product__grid .item .product__info .sizes,
  .product__grid .item .product__info .price {
    margin-bottom: 0;
    padding: 0;
  }
}
.product__grid .item .product__info .sizes > span,
.product__grid .item .product__info .price > span,
.product__grid .item .product__info .title > span {
  opacity: 0.5;
}
@media (max-width: 1024px) {
  .product__grid .item .product__info .sizes,
  .product__grid .item .product__info .price,
  .product__grid .item .product__info .title {
    font-size: 2.4rem;
  }
  .product__grid .item .product__info .sizes.font__m,
  .product__grid .item .product__info .price.font__m,
  .product__grid .item .product__info .title.font__m {
    font-size: 4rem !important;
  }
}
.product__grid [data-type="Package Upgrade"] .product__info .price {
  display: block;
  background: rgba(var(--tertiary), 1);
  padding: 1rem;
}
.product__grid [data-type="Package Upgrade"] .product__info .sizes {
  display: none;
}

.product__info__box {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  background: rgba(var(--primary), 1);
  color: rgba(var(--white), 1);
  padding: 3rem !important;
}
@media (max-width: 1024px) {
  .product__info__box {
    padding: 10rem 5rem !important;
    margin-top: 5rem;
    width: 100vw;
    left: -1rem;
    border-radius: 0 !important;
  }
}
.product__info__box .container {
  padding: 0 !important;
}
@media (max-width: 1024px) {
  .product__info__box .container {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .product__info__box .container h2 {
    text-align: center !important;
  }
}
.product__info__box p span.highlights {
  display: block;
  padding: 4rem;
  background: rgba(var(--white), 0.1);
  border-radius: 0.4rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.product__info__box p span.highlights strong {
  background: rgba(var(--white), 1);
  padding: 1rem;
  border-radius: 0.3rem;
}
.product__info__box ul.package__contents {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: -moz-fit-content;
  width: fit-content;
}
.product__info__box ul.package__contents li {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  text-transform: capitalize;
}
.product__info__box ul.package__contents li:before {
  display: inline-block;
  content: "•";
  color: rgba(var(--secondary), 1);
}

section.reviews .container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5rem;
}

section.services .container {
  width: 100%;
  display: flex;
  gap: 7.5rem;
}
section.services .container .container__inner {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}
section.services .container .container__inner p {
  width: 40rem;
}
section.services .container .grid {
  display: flex;
  gap: 2rem;
  margin-top: 25rem;
}
section.services .container .grid .grid__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 2rem;
  height: 38rem;
  width: 26rem;
  overflow: hidden;
  z-index: 1;
  color: rgba(var(--white), 1);
}
section.services .container .grid .grid__item:nth-of-type(2) {
  margin-top: 7.5rem;
}
section.services .container .grid .grid__item h3,
section.services .container .grid .grid__item p {
  z-index: 2;
}
section.services .container .grid .grid__item .picture__wrapper {
  position: absolute;
  top: 0;
  left: 0;
}
section.services .container .grid .grid__item .picture__wrapper picture img {
  transform: translateY(0);
  filter: brightness(70%) saturate(120%);
}

.side__nav {
  position: fixed;
  z-index: 99;
  height: 100vh;
  top: 0;
  background: rgba(var(--primary), 1);
  color: rgba(var(--tertiary), 1);
  width: 50rem;
  right: 0;
  clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
  transition: clip-path 1s cubic-bezier(0.19, 1, 0.22, 1);
  padding: 5rem;
  display: flex;
  flex-direction: column;
  gap: 0rem;
  overflow: auto;
}
@media (max-width: 1024px) {
  .side__nav {
    width: 100%;
    height: 115vh;
    right: auto;
    padding: 10rem;
    padding-bottom: 55rem;
  }
}
.side__nav .icon__links__container {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  gap: 1.5rem;
}
.side__nav .icon__links__container .header__icon__link {
  display: flex;
  cursor: pointer;
  background: rgba(var(--white), 1);
  transition: background 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
}
.side__nav .icon__links__container .header__icon__link svg {
  width: auto;
  height: 2.2rem;
}
.side__nav .icon__links__container .header__icon__link svg path {
  fill: rgba(var(--primary), 1);
}
@media (max-width: 1024px) {
  .side__nav .icon__links__container .header__icon__link {
    width: 8rem;
    height: 8rem;
  }
  .side__nav .icon__links__container .header__icon__link svg {
    height: 2.6rem;
  }
}

nav.side__nav.active {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

.side__menu__toggler {
  position: fixed;
  top: 4rem;
  right: 3rem;
  z-index: 999999999;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  background: rgba(var(--secondary), 1);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  transition: background 1.2s cubic-bezier(0.19, 1, 0.22, 1), color 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}
@media (max-width: 1024px) {
  .side__menu__toggler {
    width: 8.4rem;
    height: 8.4rem;
    top: 2.6rem;
    right: 2rem;
    border: 1px solid rgba(var(--primary), 1);
    -webkit-backdrop-filter: none;
            backdrop-filter: none;
    transition: background 0.6s cubic-bezier(0.19, 1, 0.22, 1), color 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  }
}
@media (max-width: 1024px) {
  .side__menu__toggler.active {
    color: rgba(var(--seconrady-colour), 1) !important;
    background: rgba(var(--secondary), 1) !important;
  }
}
.side__menu__toggler.active .icon span {
  opacity: 0;
  transition: 0.2s opacity cubic-bezier(0.19, 1, 0.22, 1);
}
.side__menu__toggler.active .icon::before {
  transform: rotate(45deg);
}
.side__menu__toggler.active .icon::after {
  transform: rotate(-45deg);
}
.side__menu__toggler svg {
  width: auto;
  height: 2.2rem;
}
.side__menu__toggler svg path {
  fill: currentColor;
}
.side__menu__toggler .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  left: 0;
  z-index: 10;
  height: 100%;
}
.side__menu__toggler .icon span {
  display: inline-flex;
  width: 2.4rem;
  height: 2px;
  background: currentColor;
  transition: 0.4s 0.2s opacity cubic-bezier(0.19, 1, 0.22, 1);
}
@media (max-width: 1024px) {
  .side__menu__toggler .icon span {
    width: 4rem;
    height: 2px;
  }
}
.side__menu__toggler .icon::before, .side__menu__toggler .icon::after {
  content: "";
  width: 2.4rem;
  height: 2px;
  background: currentColor;
  display: block;
  position: absolute;
  right: 0;
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  backface-visibility: hidden;
}
@media (max-width: 1024px) {
  .side__menu__toggler .icon::before, .side__menu__toggler .icon::after {
    width: 4rem;
    height: 2px;
  }
}
.side__menu__toggler .icon::before {
  transform: translateY(0.8rem);
}
@media (max-width: 1024px) {
  .side__menu__toggler .icon::before {
    transform: translateY(1.1rem);
  }
}
.side__menu__toggler .icon::after {
  transform: translateY(-0.8rem);
}
@media (max-width: 1024px) {
  .side__menu__toggler .icon::after {
    transform: translateY(-1.1rem);
  }
}

.icon__links__container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 10rem;
}
.icon__links__container .header__icon__link {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: rgba(var(--secondary), 1);
  transition: background 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
}
.icon__links__container .header__icon__link svg {
  width: auto;
  height: 2.2rem;
}
.icon__links__container .header__icon__link svg path {
  fill: rgba(var(--primary), 1);
}
@media (max-width: 1024px) {
  .icon__links__container .header__icon__link {
    width: 8rem;
    height: 8rem;
  }
  .icon__links__container .header__icon__link svg {
    height: 2.6rem;
  }
}

main:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100000000000000000000000000;
  width: 100vw;
  height: 100%;
  background: rgba(var(--black), 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 1s cubic-bezier(0.19, 1, 0.22, 1);
}
main.side__menu__active:after {
  opacity: 1;
  pointer-events: auto;
}

.slider {
  --slider-padding: 1rem;
  --slider-column-gap: 1rem;
  --slide-width: 50%;
  --slide-min-width: 40rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
@media (max-width: 1024px) {
  .slider {
    --slide-width: 100%;
    --slide-min-width: 100%;
    gap: 5rem;
  }
}
.slider__track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-inline: var(--slider-padding);
  scroll-behavior: smooth;
  list-style-type: none;
  padding: 0;
  margin-right: calc(var(--slider-column-gap) * -1);
  scrollbar-width: none;
}
.slider__track > * {
  flex: 0 0 var(--slide-width);
  min-width: var(--slide-min-width);
  scroll-snap-align: start;
  scroll-snap-stop: always;
  padding-right: var(--slider-column-gap);
}
.slider__track::-webkit-scrollbar {
  display: none;
}
.slider__buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  color: rgba(var(--primary), 1);
}
.slider__buttons .slider__button {
  cursor: pointer;
  opacity: 0.7;
}
.slider__buttons [disabled] {
  opacity: 0.35;
}
.slider .slide {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
  height: 38rem;
  margin: 0 1rem;
  background: rgba(var(--tertiary), 1);
}
.slider .review__slide {
  text-align: center;
  padding: 6rem;
}
@media (max-width: 1024px) {
  .slider .review__slide {
    height: 100%;
    padding: 2rem;
    gap: 5rem;
  }
}
.slider .review__slide p {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column-reverse;
  gap: 2rem;
  width: 100%;
}
.slider .review__slide p:nth-of-type(2) {
  text-transform: uppercase;
}

ul.social__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 1024px) {
  ul.social__links {
    gap: 4rem;
  }
}
ul.social__links li {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1024px) {
  ul.social__links li {
    margin: 3rem 0;
  }
}
ul.social__links li svg {
  width: 1.6rem;
  height: 1.6rem;
}
ul.social__links li svg path {
  fill: currentColor;
}
@media (max-width: 1024px) {
  ul.social__links li svg {
    width: 3rem;
    height: 3rem;
  }
}

.special__text__img__section {
  display: flex;
  align-items: center;
  justify-content: center;
}
.special__text__img__section .container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10rem;
}
.special__text__img__section .container .container__inner {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}
.special__text__img__section .container .container__inner h2 {
  max-width: 120rem;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1024px) {
  .special__text__img__section .container .container__inner h2 {
    max-width: 100%;
  }
}
.special__text__img__section .container .container__inner p {
  max-width: 42rem;
}
@media (max-width: 1024px) {
  .special__text__img__section .container .container__inner p {
    max-width: 100%;
  }
}
.special__text__img__section .container .grid {
  display: flex;
  justify-content: flex-end;
  gap: 5rem;
}
.special__text__img__section .container .grid .picture__wrapper {
  display: flex;
  width: 45rem;
  height: 60rem;
  overflow: hidden;
  z-index: 1;
  background: rgba(var(--secondary), 1);
}
.special__text__img__section .container .grid .picture__wrapper:nth-of-type(even) {
  margin-top: 7.5rem;
}

.standard__hero {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(80rem + var(--headerHeight));
  width: 100%;
  margin-top: calc(-1 * var(--headerHeight));
  overflow: hidden;
}
@media (max-width: 1024px) {
  .standard__hero {
    min-height: calc(70rem + var(--headerHeight));
    height: calc(70rem + var(--headerHeight));
  }
}
.standard__hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  z-index: 2;
  color: rgba(var(--white), 1);
  text-align: center;
}
@media (max-width: 1024px) {
  .standard__hero .container {
    gap: 3rem;
  }
}
.standard__hero .container > p {
  width: 90rem;
}
@media (max-width: 1024px) {
  .standard__hero .container > p {
    width: 100%;
  }
}
.standard__hero .picture__wrapper {
  position: absolute;
  top: 0;
  left: 0;
}
.standard__hero .picture__wrapper picture img {
  filter: brightness(60%) saturate(120%);
}

.text__img__section {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: rgba(var(--primary), 1);
  color: rgba(var(--white), 1);
}
@media (max-width: 1024px) {
  .text__img__section {
    padding: 5rem 0;
  }
}
.text__img__section .container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10rem;
}
@media (max-width: 1024px) {
  .text__img__section .container {
    flex-direction: column;
    gap: 5rem;
  }
}
.text__img__section .container .container__inner {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  max-width: 100rem;
}
@media (max-width: 1024px) {
  .text__img__section .container .container__inner {
    gap: 5rem;
    max-width: 100%;
    width: 100%;
  }
}
.text__img__section .container .picture__wrapper {
  width: 70rem;
  height: 50rem;
}
@media (max-width: 1024px) {
  .text__img__section .container .picture__wrapper {
    width: 100%;
  }
}

.text__img__section__alt .container {
  flex-direction: row-reverse;
}
@media (max-width: 1024px) {
  .text__img__section__alt .container {
    flex-direction: column;
  }
}

footer {
  background: rgba(var(--primary), 1);
  color: rgba(var(--white), 1);
  z-index: -1;
}
footer .footer__topper {
  width: 100%;
  overflow: hidden;
  top: -1px;
  z-index: -1;
}
footer .footer__main {
  display: flex;
  flex-direction: column;
  gap: 10rem;
  padding: 10rem 5rem;
  z-index: 2;
  margin-top: 5rem;
  background: rgba(var(--primary), 1);
}
@media (max-width: 1024px) {
  footer .footer__main {
    flex-direction: column;
    align-items: center;
    padding: 10rem 3rem;
    gap: 5rem;
  }
}
@media (max-width: 1024px) {
  footer .footer__main .row {
    width: 100%;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
}
@media (max-width: 1024px) {
  footer .footer__main .row:nth-of-type(1) {
    margin: 0;
  }
}
footer .footer__main .row:nth-of-type(1) picture {
  display: flex;
  width: 80rem;
  height: auto;
  background: none;
}
@media (max-width: 1024px) {
  footer .footer__main .row:nth-of-type(1) picture {
    width: 100%;
    margin-bottom: 5rem;
  }
}
footer .footer__main .row:nth-of-type(1) picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
footer .footer__main .row:nth-of-type(2) {
  display: flex;
  gap: 10rem;
}
@media (max-width: 1024px) {
  footer .footer__main .row:nth-of-type(2) {
    gap: 5rem;
    flex-direction: column;
  }
}
footer .footer__bottom {
  width: 100%;
  padding: 4rem 5rem;
  border-top: 1px solid rgba(var(--tertiary), 0.3);
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  footer .footer__bottom {
    padding: 10rem 3rem;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
}
footer .footer__bottom .col {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}
@media (max-width: 1024px) {
  footer .footer__bottom .col {
    flex-direction: column;
  }
}
footer .footer__bottom .col:nth-of-type(1) img {
  width: 8rem;
  height: -moz-fit-content;
  height: fit-content;
}
@media (max-width: 1024px) {
  footer .footer__bottom .col:nth-of-type(1) img {
    width: 9.5rem;
  }
}
footer .footer__bottom .col:nth-of-type(2) img {
  width: 24rem;
  height: -moz-fit-content;
  height: fit-content;
}
@media (max-width: 1024px) {
  footer .footer__bottom .col:nth-of-type(2) img {
    width: 34rem;
  }
}

:root {
  --headerHeight: 14rem;
}

header {
  position: fixed;
  z-index: 99999;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--headerHeight);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(var(--primary), 1);
  color: rgba(var(--white), 1);
  padding: 0 3rem;
}
@media (max-width: 1024px) {
  header {
    padding: 0 2rem;
    justify-content: space-between;
  }
}
header .logo__wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44rem;
  height: 100%;
}
@media (max-width: 1024px) {
  header .logo__wrapper {
    width: 54rem;
  }
}
header .logo__wrapper .logo {
  position: absolute;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  height: auto;
  transition: opacity 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}
header .logo__wrapper .logo picture {
  width: 100%;
  height: 100%;
}
header .logo__wrapper .logo picture img {
  width: 100%;
  height: 100%;
}
header .header__nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  text-transform: capitalize;
  margin-right: 10rem;
  height: 100%;
}
@media (max-width: 1024px) {
  header .header__nav {
    display: none;
  }
}
header .header__nav > a {
  height: 100%;
}
@media (min-width: 1024px) {
  header .header__nav > a {
    transition: opacity 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  }
  header .header__nav > a:hover {
    opacity: 0.5 !important;
  }
}

.enquire__main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
}
.enquire__main .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 5rem;
}
@media (max-width: 1024px) {
  .enquire__main .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.enquire__main .container > h2 {
  text-align: center;
  width: 75rem;
}
.enquire__main .container > h2 strong {
  text-transform: capitalize;
}
@media (max-width: 1024px) {
  .enquire__main .container > h2 {
    margin-bottom: 4rem;
    width: 100%;
  }
}
.enquire__main .container .button__wrapper {
  margin-bottom: 6rem;
}
@media (max-width: 1024px) {
  .enquire__main .container .button__wrapper .button:nth-last-of-type(1), .enquire__main .container .button__wrapper .button:nth-last-of-type(3) {
    display: none;
  }
}

.faq__page .faq__main .container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5rem;
}
.faq__page .faq__main .container h2 {
  text-align: center;
}

.home__page .hero {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  width: 100%;
}
@media (max-width: 1024px) {
  .home__page .hero {
    flex-direction: column;
    height: 140rem;
  }
}
.home__page .hero .picture__wrapper {
  position: absolute;
  top: 0;
  left: 0;
}
.home__page .hero .picture__wrapper picture img {
  -o-object-position: center calc(50% - 12rem);
     object-position: center calc(50% - 12rem);
  transform: translateY(0);
  filter: brightness(60%) saturate(130%);
}
.home__page .hero .container {
  z-index: 2;
  height: 100%;
  width: 100%;
  color: rgba(var(--white), 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5rem;
}
.home__page .hero .container .container__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}
@media (max-width: 1024px) {
  .home__page .hero .container .container__inner {
    gap: 5rem;
  }
}
.home__page .hero .container .container__inner > p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
@media (max-width: 1024px) {
  .home__page .hero .container .container__inner > p {
    flex-direction: column;
  }
}
.home__page .hero .container .icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10rem;
  margin-top: 15rem;
  display: none !important;
}
@media (max-width: 1024px) {
  .home__page .hero .container .icons {
    gap: 2rem;
  }
}
.home__page .hero .container .icons .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
}
@media (max-width: 1024px) {
  .home__page .hero .container .icons .icon {
    width: 12rem;
    padding: 3rem;
  }
}
@media (max-width: 1024px) {
  .home__page .hero .container .icons .icon > p {
    font-size: 3.6rem;
  }
}
.home__page .hero .container .icons .icon svg {
  width: auto;
  height: 4.5rem;
}
@media (max-width: 1024px) {
  .home__page .hero .container .icons .icon svg {
    height: 7.6rem;
  }
}
.home__page .services__provided__banner {
  background: rgba(var(--primary), 1);
  color: rgba(var(--white), 1);
}
.home__page .services__provided__banner .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10rem;
}
.home__page .services__provided__banner .container .grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6rem;
}
@media (max-width: 1024px) {
  .home__page .services__provided__banner .container .grid {
    flex-wrap: wrap;
    gap: 2rem;
    row-gap: 4rem;
  }
}
.home__page .services__provided__banner .container .grid .item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
@media (max-width: 1024px) {
  .home__page .services__provided__banner .container .grid .item {
    width: 21rem;
  }
  .home__page .services__provided__banner .container .grid .item p {
    font-size: 3.4rem;
  }
}
.home__page .services__provided__banner .container .grid .item span.icon {
  background: transparent;
  border: 1px solid white;
  width: 10rem;
  height: 10rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.home__page .services__provided__banner .container .grid .item span.icon svg {
  width: 5rem;
  height: 5rem;
}
.home__page section.range__of__solutions {
  background: rgba(var(--primary), 1);
  color: rgba(var(--white), 1);
}
@media (max-width: 1024px) {
  .home__page section.range__of__solutions {
    padding-bottom: 0;
  }
}
.home__page section.range__of__solutions .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5rem;
  padding: 0 5rem;
}
.home__page section.range__of__solutions .container h2 {
  text-align: center;
}
@media (max-width: 1024px) {
  .home__page section.range__of__solutions .container h2 {
    margin-bottom: 4rem;
  }
}
.home__page section.range__of__solutions .container .service__links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}
@media (max-width: 1024px) {
  .home__page section.range__of__solutions .container .service__links {
    gap: 0;
  }
}
.home__page section.range__of__solutions .container .service__links .package__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56rem;
  height: 42rem;
  overflow: hidden;
  z-index: 2;
}
@media (max-width: 1024px) {
  .home__page section.range__of__solutions .container .service__links .package__link {
    width: 100vw;
    height: 60rem;
  }
}
.home__page section.range__of__solutions .container .service__links .package__link:hover picture {
  transform: scale(1.1);
}
.home__page section.range__of__solutions .container .service__links .package__link picture {
  width: 100%;
  height: 100%;
  display: flex;
  overflow: hidden;
  z-index: 1;
  transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}
@media (max-width: 1024px) {
  .home__page section.range__of__solutions .container .service__links .package__link picture {
    height: 100%;
  }
}
.home__page section.range__of__solutions .container .service__links .package__link picture img {
  filter: brightness(70%);
  -o-object-position: bottom;
     object-position: bottom;
}
@media (max-width: 1024px) {
  .home__page section.range__of__solutions .container .service__links .package__link picture img {
    height: 100%;
    filter: brightness(60%);
  }
}
.home__page section.range__of__solutions .container .service__links .package__link p {
  width: 100%;
  padding: 2rem;
  color: rgba(var(--white), 1);
  display: flex;
  flex-direction: column-reverse;
  gap: 2rem;
  z-index: 2;
  position: absolute;
  bottom: 0;
  left: 0;
  pointer-events: none;
}
@media (max-width: 1024px) {
  .home__page section.range__of__solutions .container .service__links .package__link p {
    align-items: center;
    justify-content: center;
    height: 100%;
    font-size: 7rem;
  }
}
.home__page section.range__of__solutions .container .service__links .package__link p span.icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(var(--primary), 1);
  width: 7rem;
  height: 7rem;
  border-radius: 50%;
  transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}
@media (max-width: 1024px) {
  .home__page section.range__of__solutions .container .service__links .package__link p span.icon {
    width: 9rem;
    height: 9rem;
  }
}
.home__page section.range__of__solutions .container .service__links .package__link p span.icon svg {
  width: auto;
  height: 3.4rem;
}
@media (max-width: 1024px) {
  .home__page section.range__of__solutions .container .service__links .package__link p span.icon svg {
    height: 4rem;
  }
}
.home__page section.range__of__solutions .container .service__links .package__link p span.icon svg path {
  stroke: rgba(var(--white), 1);
}
.home__page .complete__furniture__package__banner {
  background: rgba(var(--white), 1);
}
.home__page .complete__furniture__package__banner .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5rem;
}
@media (max-width: 1024px) {
  .home__page .complete__furniture__package__banner .container {
    flex-direction: column;
    text-align: center;
  }
}
.home__page .complete__furniture__package__banner .container .container__inner {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
@media (max-width: 1024px) {
  .home__page .complete__furniture__package__banner .container .container__inner {
    gap: 5rem;
    align-items: center;
  }
}
.home__page .complete__furniture__package__banner .container .container__inner h2,
.home__page .complete__furniture__package__banner .container .container__inner > p {
  width: 80rem;
}
@media (max-width: 1024px) {
  .home__page .complete__furniture__package__banner .container .container__inner h2,
  .home__page .complete__furniture__package__banner .container .container__inner > p {
    width: 100%;
  }
}
.home__page .complete__furniture__package__banner .container .pictures {
  display: flex;
  gap: 0.5rem;
}
.home__page .complete__furniture__package__banner .container .pictures picture {
  width: 30rem;
  height: 30rem;
  overflow: hidden;
  z-index: 2;
}
@media (max-width: 1024px) {
  .home__page .complete__furniture__package__banner .container .pictures picture {
    width: 100%;
    height: 24rem;
  }
}
.home__page .complete__furniture__package__banner .container .pictures picture img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.home__page section.properties {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(var(--primary), 1);
  color: rgba(var(--white), 1);
}
.home__page section.properties .container {
  display: flex;
  gap: 10rem;
}
@media (max-width: 1024px) {
  .home__page section.properties .container {
    flex-direction: column;
  }
}
.home__page section.properties .container .col {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  width: 90rem;
}
@media (max-width: 1024px) {
  .home__page section.properties .container .col {
    align-items: center;
    width: 100%;
    gap: 5rem;
  }
}
@media (max-width: 1024px) {
  .home__page section.properties .container .col h2 {
    text-align: center;
  }
}
@media (max-width: 1024px) {
  .home__page section.properties .container .col > p {
    text-align: center;
  }
}
.home__page section.properties .container .col > p strong {
  text-transform: capitalize;
}
.home__page section.properties .container .col ul {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.home__page section.properties .container .col ul li:not(:nth-of-type(1)) {
  border-top: 1px solid rgba(var(--white), 0.1);
  padding-top: 2rem;
}
.home__page section.properties .container .col ul li strong {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: rgba(var(--tertiary), 1);
}
@media (max-width: 1024px) {
  .home__page section.properties .container .col ul li strong {
    font-size: 4rem;
  }
}
.home__page section.properties .container .col ul li strong:before {
  content: "";
  position: relative;
  display: block;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: rgba(var(--secondary), 1);
}
@media (max-width: 1024px) {
  .home__page section.properties .container .col ul li strong:before {
    width: 2rem;
    height: 2rem;
  }
}
.home__page section.properties .container picture {
  width: 80rem;
  height: 50rem;
}
@media (max-width: 1024px) {
  .home__page section.properties .container picture {
    width: 100vw;
    margin-left: -3rem;
    display: none;
  }
}

.packages__page .all__packages .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 10rem;
}
@media (max-width: 1024px) {
  .packages__page .all__packages .container {
    padding: 0 5rem;
  }
}
.packages__page .all__packages .container h1 {
  text-align: center;
  width: 100%;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.packages__page .all__packages .container .package__links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 5rem;
}
.packages__page .all__packages .container .package__links .package__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  width: 54rem;
  overflow: hidden;
  z-index: 2;
  height: 70rem;
}
@media (max-width: 1024px) {
  .packages__page .all__packages .container .package__links .package__link {
    height: 70rem;
    width: 100%;
  }
}
.packages__page .all__packages .container .package__links .package__link:hover .picture__wrapper {
  transform: scale(1.06) !important;
}
.packages__page .all__packages .container .package__links .package__link .picture__wrapper {
  transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  width: 100%;
  display: flex;
  overflow: hidden;
  z-index: 1;
}
.packages__page .all__packages .container .package__links .package__link .picture__wrapper picture img {
  filter: brightness(80%);
  -o-object-position: bottom;
     object-position: bottom;
}
.packages__page .all__packages .container .package__links .package__link p {
  width: 100%;
  padding: 2rem;
  z-index: 3;
  background: rgba(var(--primary), 1);
  color: rgba(var(--white), 1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(var(--white), 0.7);
}
@media (max-width: 1024px) {
  .packages__page .all__packages .container .package__links .package__link p {
    font-size: 4.5rem;
  }
}
.packages__page .all__packages .container .package__links .package__link p strong {
  color: rgba(var(--white), 1);
  font-weight: 400 !important;
}
.packages__page .all__packages .container .package__links .package__link p span.icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(var(--tertiary), 1);
  width: 7rem;
  height: 7rem;
  border-radius: 50%;
  transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}
@media (max-width: 1024px) {
  .packages__page .all__packages .container .package__links .package__link p span.icon {
    width: 8rem;
    height: 8rem;
  }
}
.packages__page .all__packages .container .package__links .package__link p span.icon svg {
  width: auto;
  height: 3.4rem;
}
@media (max-width: 1024px) {
  .packages__page .all__packages .container .package__links .package__link p span.icon svg {
    height: 4rem;
  }
}
.packages__page .all__packages .container .package__links .package__link p span.icon svg path {
  stroke: rgba(var(--primary), 1);
}

.package__page .standard__hero h1 {
  position: absolute;
  z-index: 3;
  color: rgba(var(--white), 1);
  text-align: center;
  padding: 0 2rem;
  width: 160rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.package__page .standard__hero h1:after {
  content: "Prices Exclude VAT";
  display: block;
  font-size: 3rem;
  margin-top: 2rem;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 1024px) {
  .package__page .contents {
    padding-bottom: 0;
  }
}
.package__page .contents .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 5rem;
  padding: 0 5rem;
}
@media (max-width: 1024px) {
  .package__page .contents .container {
    padding: 0 1rem;
  }
}

.policy__page .main {
  background: rgba(var(--primary), 1);
}
.policy__page .main .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
@media (max-width: 1024px) {
  .policy__page .main .container {
    gap: 3rem;
  }
}
.policy__page .main .container > p {
  width: 140rem;
}
@media (max-width: 1024px) {
  .policy__page .main .container > p {
    width: 100%;
  }
}
.policy__page .main .container span.grid {
  display: flex;
  gap: 2rem;
  margin: 2rem 0;
}
@media (max-width: 1024px) {
  .policy__page .main .container span.grid {
    flex-direction: column;
  }
}
.policy__page .main .container span.grid > span {
  width: 40rem;
  padding: 3rem;
  border-radius: 0.6rem;
  background: rgba(var(--white), 0.1);
  color: rgba(var(--white), 0.7);
}
@media (max-width: 1024px) {
  .policy__page .main .container span.grid > span {
    width: calc(100vw - 10rem);
  }
}
.policy__page .main .container picture.map {
  width: 100%;
  height: 130rem;
  border-radius: 0.6rem;
  margin-top: 2rem;
}
@media (max-width: 1024px) {
  .policy__page .main .container picture.map {
    width: 100%;
    height: 50rem;
    padding: 0;
  }
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}
.lenis.lenis-scrolling .parallax-img {
  will-change: transform;
}/*# sourceMappingURL=main.css.map */