@charset "UTF-8";
/**
*
* Testing
*
**/
:root {
  --black: 0, 0, 0;
  --white: 255, 255, 255;
  --off-white: 245, 250, 245;
  --dark-grey: 37, 38, 37;
  --primary: 11, 94, 114;
  --secondary: 210, 240, 250;
  --bright-green: 120, 216, 59;
}

.slider__buttons .slider__button, .fixed__btn .button__inner .icon__wrapper, .fixed__btn .button__inner, header .dropdown__content, #consent-popup, .call-now {
  box-shadow: 0 0 1rem 0 rgba(var(--dark-grey), 0.15);
}

.text__img__section .container .container__inner .col .picture__wrapper, footer .picture__wrapper > span a, section.highlights__banner .highlights .grid__item, header .header__left .contacts a, .slider.services__slider .service__slide picture, .slider .review__slide:before, .slider__buttons .slider__button, .lightbox__prev, .lightbox__next, .lightbox__img, .image__grid .item, form.form .file__upload, form.form fieldset .service__group .service__content .service__inner label, form.form .input__wrapper input:not([type=submit]),
form.form .input__wrapper input:not([type=firstname]),
form.form .input__wrapper textarea, header .dropdown__content, .side__nav .dropdown__content, .button .button__inner {
  border-radius: clamp(0.75rem, 1.5vw, 1.25rem);
}

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(--primary), 0.2);
  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 1s cubic-bezier(0.26, 1, 0.3, 1) forwards;
}

@keyframes fadeInLazy {
  from {
    opacity: 0;
    transform: scale(1.1);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.animated__line {
  width: calc(100% - 20rem);
  margin: 0 10rem;
  height: 1px;
  background: rgba(var(--secondary), 1);
  display: flex;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 1s 0.1s cubic-bezier(0.26, 1, 0.3, 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.26, 1, 0.3, 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 {
  gap: 0.2em;
  line-height: 1.1;
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  text-align: center;
}
.heading__reveal > span {
  display: block;
  overflow: hidden;
  z-index: 1;
  height: auto;
}
.heading__reveal > span > span {
  display: inline-block;
  transform: translate3d(0, 101%, 0);
}

.heading__reveal.visible > span > span {
  animation: revealHeading 1.2s cubic-bezier(0.26, 1, 0.3, 1) forwards;
}
.heading__reveal.visible > span:nth-of-type(1) {
  /* store stagger delay in CSS variable */
  --stagger-delay: calc(0s + (0 * 0.1s));
}
.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.1s));
}
.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.1s));
}
.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.1s));
}
.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.1s));
}
.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.1s) !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 1s 0.1s cubic-bezier(0.26, 1, 0.3, 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 1s 0.2s cubic-bezier(0.26, 1, 0.3, 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.2s !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 {
  z-index: 2;
  background: rgba(var(--white), 1);
}
body main section {
  padding: 10rem 0;
  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 10rem;
}
@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 {
  height: 120%; /* extra height for parallax movement */
}

* {
  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: "NeueMontreal-Medium";
  src: url("../fonts/NeueMontreal-Medium.woff2");
  font-display: swap;
  font-style: normal;
}
body {
  font-family: "NeueMontreal-Medium", Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-weight: 400;
  color: rgba(var(--dark-grey), 1);
  letter-spacing: 0.06rem;
}
body ::-moz-selection {
  color: rgba(var(--off-white), 1);
  background: rgba(var(--black), 1);
}
body ::selection {
  color: rgba(var(--off-white), 1);
  background: rgba(var(--black), 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.4;
}
body .font__opaque__dark {
  color: rgba(var(--dark-grey), 0.7) !important;
}
body .font__opaque__light {
  color: rgba(var(--white), 0.7) !important;
}
body .font__xs {
  font-size: 1.8rem;
}
@media (max-width: 1024px) {
  body .font__xs {
    font-size: 3rem;
  }
}
body .font__s {
  font-size: 2rem;
}
@media (max-width: 1024px) {
  body .font__s {
    font-size: 3rem;
  }
}
body .font__m {
  text-transform: uppercase;
  font-size: 2.2rem;
}
@media (max-width: 1024px) {
  body .font__m {
    letter-spacing: 0;
    font-size: 3rem;
  }
}
body .font__l {
  text-transform: uppercase;
  font-size: 6rem;
}
@media (max-width: 1024px) {
  body .font__l {
    letter-spacing: 0;
    font-size: 5rem;
  }
}
body .font__xl {
  text-transform: uppercase;
  font-size: 8rem;
}
@media (max-width: 1024px) {
  body .font__xl {
    letter-spacing: 0;
    font-size: 6rem;
  }
}

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

.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(--secondary), 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.26, 1, 0.3, 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.26, 1, 0.3, 1);
  background: rgba(var(--secondary), 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;
  }
}

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;
    width: 100%;
  }
}
.button .button__inner {
  display: block;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 2.4rem;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  cursor: pointer !important;
  text-transform: uppercase;
  letter-spacing: 0.06rem;
  transition: background 0.6s cubic-bezier(0.26, 1, 0.3, 1), color 0.6s cubic-bezier(0.26, 1, 0.3, 1);
  background: rgba(var(--primary), 1);
  color: rgba(var(--white), 1);
}
@media (max-width: 1024px) {
  .button .button__inner {
    padding: 4.6rem 2rem;
    width: 100%;
  }
}
@media (min-width: 1024px) {
  .button .button__inner:hover {
    background: rgba(var(--secondary), 1);
    color: rgba(var(--primary), 1);
  }
}
.button svg {
  width: 3rem;
  height: -moz-fit-content;
  height: fit-content;
}
.button svg path {
  fill: currentColor;
  transition: fill 0.6s cubic-bezier(0.26, 1, 0.3, 1);
}

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.26, 1, 0.3, 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: 100000000000000000000000000000000000;
  bottom: 2rem;
  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(--bright-green), 1);
  border-radius: 50%;
}
@media (max-width: 1024px) {
  .call-now {
    display: flex;
  }
}
.call-now a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 11.2rem;
  height: 11.2rem;
}
.call-now a svg {
  width: 4.4rem;
  height: 4.4rem;
}
.call-now a svg path {
  fill: rgba(var(--dark-grey), 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;
}
@media (max-width: 724px) {
  #consent-popup {
    top: auto;
    bottom: 3rem;
    left: 2rem;
  }
}
#consent-popup > p {
  color: rgba(var(--secondary), 1);
  background: rgba(var(--primary), 1);
  padding: 1rem;
}
#consent-popup .cookie__buttons {
  display: flex;
}
#consent-popup .btn {
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(var(--white), 1);
  color: rgba(var(--primary), 1);
  transition: background 0.2s cubic-bezier(0.26, 1, 0.3, 1);
  width: 100%;
  padding: 1rem;
  cursor: pointer;
}
@media (min-width: 1024px) {
  #consent-popup .btn:hover {
    background: rgba(var(--secondary), 1);
  }
}
@media (max-width: 724px) {
  #consent-popup .btn {
    height: 6rem;
  }
}
#consent-popup.hidden {
  display: none !important;
}

/* =========================
   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;
  color: currentColor;
}
.dropdown__btn svg {
  color: currentColor;
  width: 1.5rem;
  height: auto;
  pointer-events: none;
  margin-left: 0.5rem;
  top: 0.15rem;
  transition: transform 0.6s cubic-bezier(0.26, 1, 0.3, 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 0.4s cubic-bezier(0.26, 1, 0.3, 1);
  background: transparent;
  z-index: 3;
}
.dropdown__content__inner {
  overflow: hidden;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.dropdown__content__inner ul.menu {
  width: 100%;
  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;
  transition: background 0.4s cubic-bezier(0.26, 1, 0.3, 1), color 0.4s cubic-bezier(0.26, 1, 0.3, 1);
}
.dropdown__content__inner ul.menu li a:after {
  display: none;
}
.dropdown.is-open .dropdown__content {
  grid-template-rows: 1fr;
  z-index: 99999999;
}
.dropdown.is-open .dropdown__btn svg {
  transform: rotateX(-180deg);
}

/* =========================
   SIDE MENU VARIANT
========================= */
@media (max-width: 1024px) {
  .side__nav .dropdowns {
    margin-bottom: -2rem;
  }
}
.side__nav .dropdown {
  width: 100%;
  align-items: stretch;
  gap: 1.2rem;
}
@media (max-width: 1024px) {
  .side__nav .dropdown {
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 5rem;
  }
}
.side__nav .dropdown.is-open .dropdown__content {
  margin-bottom: 5rem;
}
@media (max-width: 1024px) {
  .side__nav .dropdown.is-open .dropdown__content {
    margin-bottom: 5rem;
  }
}
.side__nav .dropdown__btn {
  color: rgba(var(--secondary), 1);
  font-weight: bold;
}
@media (max-width: 1024px) {
  .side__nav .dropdown__btn {
    font-size: 5rem;
  }
  .side__nav .dropdown__btn > svg {
    width: 4rem;
  }
}
.side__nav .dropdown__content {
  background: rgba(var(--secondary), 0.14);
  margin: 1rem 0;
}
@media (max-width: 1024px) {
  .side__nav .dropdown__content {
    margin: -2rem 0 5rem 0;
  }
}
@media (max-width: 1024px) {
  .side__nav .dropdown__content ul.menu li {
    width: 100%;
  }
  .side__nav .dropdown__content ul.menu li:nth-of-type(even) {
    background: rgba(var(--secondary), 0.1);
  }
}
.side__nav .dropdown__content ul.menu li a {
  padding: 2rem;
}
@media (max-width: 1024px) {
  .side__nav .dropdown__content ul.menu li a {
    padding: 3rem 1rem;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 5rem;
  }
}
@media (min-width: 1024px) {
  .side__nav .dropdown__content ul.menu li a:hover {
    background: rgba(var(--secondary), 1);
    color: rgba(var(--primary), 1);
  }
}

/* =========================
   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: 8rem;
  overflow: hidden;
  background: rgba(var(--white), 1);
  color: rgba(var(--dark-grey), 1);
}
header .dropdown__content__inner ul.menu li a {
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1rem;
}
@media (min-width: 1024px) {
  header .dropdown__content__inner ul.menu li a:hover {
    background: rgba(var(--primary), 1);
    color: rgba(var(--white), 1);
  }
}

.fixed__btn {
  z-index: 9;
  position: fixed;
  bottom: 2rem;
  right: 2rem;
}
.fixed__btn .button__inner {
  background: rgba(var(--off-white), 1);
  color: rgba(var(--primary), 1);
  font-weight: bold;
  text-transform: capitalize;
  height: 8rem;
  padding: 2rem;
}
.fixed__btn .button__inner > span {
  font-style: oblique;
}
@media (min-width: 1024px) {
  .fixed__btn .button__inner:hover {
    background: rgba(var(--white), 1);
  }
}
.fixed__btn .button__inner .icon__wrapper {
  background: rgba(var(--white), 1);
  transition: background 0.6s cubic-bezier(0.26, 1, 0.3, 1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 5rem;
}
.fixed__btn .button__inner .icon__wrapper svg {
  width: 2.4rem;
  height: 2.4rem;
}
.fixed__btn .button__inner .icon__wrapper svg path {
  fill: rgba(var(--primary), 1);
}
@media (max-width: 1024px) {
  .fixed__btn {
    display: none !important;
  }
}

form.form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5rem;
  width: 90rem;
}
@media (max-width: 1024px) {
  form.form {
    padding: 0 2rem;
  }
}
form.form .sect__wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
form.form .input__wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}
form.form .input__wrapper input:not([type=submit]),
form.form .input__wrapper input:not([type=firstname]),
form.form .input__wrapper textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  outline: none;
  resize: none;
  display: flex;
  flex-grow: 1;
  cursor: pointer;
  width: 100%;
  height: 8rem;
  padding-left: 2rem;
  background: transparent;
  font: inherit;
  letter-spacing: 0.04rem;
  background: rgba(var(--secondary), 1);
  color: rgba(var(--black), 1);
}
@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 {
    width: calc(100vw - 4rem);
    height: 10rem;
  }
}
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 {
  text-transform: capitalize;
  opacity: 1;
  color: rgba(var(--primary), 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 {
  text-transform: capitalize;
  opacity: 1;
  color: rgba(var(--primary), 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 {
  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 {
  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 {
  opacity: 0;
}
form.form .input__wrapper label {
  pointer-events: none;
}
form.form .input__wrapper textarea {
  height: 20rem;
  padding-top: 2rem;
}
@media (max-width: 1024px) {
  form.form .input__wrapper textarea {
    height: 40rem;
  }
}
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(--secondary), 1) inset !important;
  -webkit-text-fill-color: rgba(var(--black), 1) !important;
  -webkit-transition: background-color 99999s ease-in-out 0s !important;
  transition: background-color 99999s ease-in-out 0s !important;
}
form.form fieldset {
  border: none;
  width: 90rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
form.form fieldset > p {
  text-align: center;
}
form.form fieldset .services__dropdowns {
  width: 100%;
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 1024px) {
  form.form fieldset .services__dropdowns {
    grid-template-columns: repeat(3, 1fr);
  }
}
form.form fieldset .service__group .service__content {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  width: 100%;
  opacity: 0;
  transition: grid-template-rows 0.4s cubic-bezier(0.26, 1, 0.3, 1), padding 0.4s cubic-bezier(0.26, 1, 0.3, 1), opacity 0.3s cubic-bezier(0.26, 1, 0.3, 1);
}
form.form fieldset .service__group .service__content .service__inner {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
form.form fieldset .service__group .service__content .service__inner label {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 1.4rem 1rem;
  cursor: pointer;
  background: rgba(var(--primary), 0.05);
  text-align: left;
  transition: background 0.4s cubic-bezier(0.26, 1, 0.3, 1);
}
@media (max-width: 1024px) {
  form.form fieldset .service__group .service__content .service__inner label {
    padding: 2rem;
  }
}
@media (min-width: 1024px) {
  form.form fieldset .service__group .service__content .service__inner label:hover {
    background: rgba(var(--primary), 0.1);
  }
}
form.form fieldset .service__group.is-open .service__content {
  grid-template-rows: 1fr;
  padding-top: 1rem;
  opacity: 1;
  transition: grid-template-rows 0.4s cubic-bezier(0.26, 1, 0.3, 1), padding 0.4s cubic-bezier(0.26, 1, 0.3, 1), opacity 0.8s 0.1s cubic-bezier(0.26, 1, 0.3, 1);
}
form.form fieldset .service__group.is-open .service__heading > svg {
  transform: rotateX(-180deg);
}
form.form fieldset .service__heading {
  all: unset;
  box-sizing: border-box;
  width: 100%;
  padding: 2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(var(--secondary), 1);
  color: rgba(var(--primary), 1);
  transition: background 0.4s cubic-bezier(0.26, 1, 0.3, 1);
  z-index: 1;
  overflow: hidden;
  border-radius: clamp(0.75rem, 1.5vw, 1.25rem);
}
@media (max-width: 1024px) {
  form.form fieldset .service__heading {
    padding: 3rem;
  }
}
@media (min-width: 1024px) {
  form.form fieldset .service__heading:hover {
    background: rgba(var(--secondary), 0.9);
  }
}
form.form fieldset .service__heading > svg {
  width: 1.8rem;
  height: 1.8rem;
  transition: transform 0.4s cubic-bezier(0.26, 1, 0.3, 1);
}
form.form fieldset .service__heading > svg path {
  fill: rgba(var(--primary), 1);
}
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.5);
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  transition: all 0.2s cubic-bezier(0.26, 1, 0.3, 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]::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);
  opacity: 0.15;
}
@media (max-width: 1024px) {
  form.form fieldset input[type=checkbox]::after {
    left: 1rem;
    top: 0.5rem;
    width: 1rem;
    height: 2rem;
    border-width: 0 0.5rem 0.5rem 0;
  }
}
form.form fieldset input[type=checkbox]:checked {
  border-color: rgba(var(--primary), 1);
  background-color: rgba(var(--bright-green), 1);
  box-shadow: 0 0 0 0.4rem rgba(var(--bright-green), 1);
}
form.form fieldset input[type=checkbox]:checked::after {
  opacity: 1;
}
form.form .file__upload {
  padding: 2rem;
  background: rgba(var(--secondary), 1) !important;
  color: rgba(var(--primary), 1) !important;
  cursor: pointer;
  font-size: inherit;
}
@media (max-width: 1024px) {
  form.form .file__upload {
    padding: 4rem;
  }
}
form.form .firstname {
  background: transparent !important;
  position: absolute !important;
  bottom: 0.5rem !important;
  left: 50rem !important;
  color: transparent !important;
  border: 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;
}
form.form label[for=firstname] {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
}
form.form button[type=submit] {
  width: 100%;
  margin-top: -3rem;
}
@media (min-width: 1024px) {
  form.form button[type=submit]:hover .button__inner {
    background: rgba(var(--black), 1);
    color: rgba(var(--white), 1);
  }
}
form.form button[type=submit] .button__inner {
  text-transform: uppercase !important;
  width: 100%;
  font-weight: bold;
}
@media (max-width: 1024px) {
  form.form button[type=submit] .button__inner {
    width: calc(100vw - 4rem);
  }
}

.image__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}
.image__grid .item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  overflow: hidden;
  z-index: 2;
  width: 56rem;
  height: 40rem;
  cursor: pointer;
}
@media (max-width: 1024px) {
  .image__grid .item {
    width: 100%;
    height: 50rem;
  }
}
.image__grid .item .picture__wrapper {
  display: flex;
  width: 100%;
  height: 100%;
}
.image__grid .item .picture__wrapper picture {
  width: 100%;
  height: 120%; /* extra height for parallax movement */
  filter: brightness(80%) saturate(120%);
  display: flex;
  overflow: hidden;
  z-index: 1;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(var(--primary), 1);
  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;
}
@media (max-width: 1024px) {
  .lightbox {
    justify-content: flex-start;
    padding-top: 18rem;
  }
}
.lightbox.active {
  display: flex;
  flex-direction: column;
}
.lightbox__img {
  max-width: 85vw;
  max-height: 85vh;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 1024px) {
  .lightbox__img {
    max-height: 63vh;
    max-width: 96vw;
  }
}
.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(--white), 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);
  background: rgba(var(--secondary), 1);
  padding: 1.8rem;
}
@media (max-width: 1024px) {
  .lightbox__prev, .lightbox__next {
    bottom: 5rem;
  }
}
.lightbox__prev {
  left: 5rem;
}
.lightbox__next {
  right: 5rem;
}
.lightbox .lightbox__caption {
  color: rgba(var(--white), 1);
  margin-top: 2rem;
  text-align: center;
  padding: 0 2rem;
  line-height: 1.4;
}
@media (max-width: 1024px) {
  .lightbox .lightbox__caption {
    font-size: 3.4rem;
  }
}

ul.menu {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (max-width: 1024px) {
  ul.menu {
    gap: 5rem;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
}
ul.menu li.menu__heading {
  text-transform: capitalize;
  margin-bottom: 0.5rem;
  color: rgba(var(--secondary), 1);
  font-weight: bold;
}
ul.menu li a {
  width: -moz-fit-content;
  width: fit-content;
}
@media (min-width: 1024px) {
  ul.menu li a:hover {
    opacity: 1;
  }
}
ul.menu li a svg {
  width: auto;
  height: 1.4rem;
  margin-right: 0.5rem;
}
@media (max-width: 1024px) {
  ul.menu li a svg {
    height: 2.8rem;
  }
}
ul.menu li a svg path {
  fill: currentColor;
}

.slider {
  --slider-padding: 1rem;
  --slide-width: 25%;
  --slide-min-width: 40rem;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: calc(100% - 2rem);
  /* ==============================
     Track
     ============================== */
  /* ==============================
     Buttons
     ============================== */
  /* ==============================
     Base Slide
     ============================== */
  /* ==============================
     Review Slider
     ============================== */
  /* ==============================
     Services Slider
     ============================== */
}
@media (max-width: 1024px) {
  .slider {
    --slide-width: 100%;
    --slide-min-width: 100%;
    width: 100%;
    gap: 3rem;
  }
}
.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;
  /* hide scrollbar */
  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;
}
.slider__track::-webkit-scrollbar {
  display: none;
}
.slider__buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-transform: uppercase;
  overflow: visible;
}
@media (max-width: 1024px) {
  .slider__buttons {
    gap: 3rem;
  }
}
.slider__buttons .slider__button {
  cursor: pointer;
  width: 14rem;
  text-align: center;
  padding: 2rem;
  background: rgba(var(--primary), 1);
  color: rgba(var(--secondary), 1);
}
@media (max-width: 1024px) {
  .slider__buttons .slider__button {
    padding: 2rem 3rem;
    width: 30rem;
  }
}
.slider__buttons [disabled] {
  opacity: 0.35;
  pointer-events: none;
}
.slider .slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  height: 38rem;
  z-index: 1;
  overflow: hidden;
  gap: 2rem;
}
@media (max-width: 1024px) {
  .slider .slide {
    padding: 0;
    height: 50rem;
  }
}
.slider .review__slide {
  --slide-width: 50%;
}
@media (max-width: 1024px) {
  .slider .review__slide {
    height: auto;
    padding: 4rem 1rem;
    gap: 3rem;
  }
}
.slider .review__slide:before {
  content: "";
  position: absolute;
  width: calc(100% - 1rem);
  height: calc(100% - 1rem);
  background: rgba(var(--secondary), 1);
}
@media (max-width: 1024px) {
  .slider .review__slide:before {
    width: calc(100% - 0.6rem);
    height: calc(100% - 0.6rem);
  }
}
.slider .review__slide p {
  width: calc(100% - 4rem);
}
.slider .review__slide p:nth-of-type(1)::before, .slider .review__slide p:nth-of-type(1)::after {
  content: '"';
}
.slider .review__slide p:nth-of-type(2) {
  text-transform: uppercase;
}
.slider.services__slider .service__slide {
  /* image */
  /* title */
}
@media (min-width: 1024px) {
  .slider.services__slider .service__slide:hover picture img {
    filter: brightness(90%) saturate(130%);
  }
}
.slider.services__slider .service__slide picture {
  position: absolute;
  width: calc(100% - 1rem);
  height: calc(100% - 1rem);
  overflow: hidden;
  z-index: 1;
}
@media (max-width: 1024px) {
  .slider.services__slider .service__slide picture {
    width: calc(100% - 0.6rem);
    height: calc(100% - 0.6rem);
  }
}
.slider.services__slider .service__slide picture img {
  width: 100%;
  height: 100%;
  transition: filter 1s cubic-bezier(0.26, 1, 0.3, 1);
  filter: brightness(70%) saturate(130%);
}
.slider.services__slider .service__slide p {
  position: relative;
  z-index: 2;
  margin-top: auto;
  padding: 2.5rem;
  max-width: 90%;
  color: rgba(var(--white), 1);
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.6);
}

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;
  }
}

.side__nav {
  position: fixed;
  z-index: 99;
  height: 100vh;
  top: 0;
  background: rgba(var(--primary), 1);
  width: 50rem;
  right: 0;
  clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
  transition: clip-path 0.6s cubic-bezier(0.26, 1, 0.3, 1);
  padding: 5rem;
  display: flex;
  flex-direction: column;
  gap: 0rem;
  overflow: auto;
  padding-top: 5rem;
  padding-right: 10rem;
  gap: 5rem;
  color: rgba(var(--white), 1);
}
@media (max-width: 1024px) {
  .side__nav {
    gap: 15rem;
    width: 100%;
    height: 115vh;
    right: auto;
    padding: 15rem 2rem 40rem 2rem;
  }
}
.side__nav > ul.menu {
  gap: 3rem;
}
@media (max-width: 1024px) {
  .side__nav > ul.menu {
    gap: 5rem;
    font-size: 3.5rem;
  }
}

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

.side__menu__toggler {
  position: fixed;
  top: 2rem;
  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 0.6s cubic-bezier(0.26, 1, 0.3, 1), color 0.6s cubic-bezier(0.26, 1, 0.3, 1);
}
@media (max-width: 1024px) {
  .side__menu__toggler {
    width: 11.2rem;
    height: 11.2rem;
    top: 1.4rem;
    right: 2rem;
    -webkit-backdrop-filter: none;
            backdrop-filter: none;
    transition: background 0.6s cubic-bezier(0.26, 1, 0.3, 1), color 0.6s cubic-bezier(0.26, 1, 0.3, 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.26, 1, 0.3, 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.26, 1, 0.3, 1);
}
@media (max-width: 1024px) {
  .side__menu__toggler .icon span {
    width: 6rem;
    height: 3px;
  }
}
.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.26, 1, 0.3, 1);
  backface-visibility: hidden;
}
@media (max-width: 1024px) {
  .side__menu__toggler .icon::before, .side__menu__toggler .icon::after {
    width: 6rem;
    height: 3px;
  }
}
.side__menu__toggler .icon::before {
  transform: translateY(0.8rem);
}
@media (max-width: 1024px) {
  .side__menu__toggler .icon::before {
    transform: translateY(1.4rem);
  }
}
.side__menu__toggler .icon::after {
  transform: translateY(-0.8rem);
}
@media (max-width: 1024px) {
  .side__menu__toggler .icon::after {
    transform: translateY(-1.4rem);
  }
}

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 0.6s cubic-bezier(0.26, 1, 0.3, 1);
}
main.side__menu__active:after {
  opacity: 1;
  pointer-events: auto;
}

footer {
  background: rgba(var(--secondary), 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5rem;
}
@media (max-width: 1024px) {
  footer {
    gap: 10rem;
  }
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10rem;
  width: 100%;
}
footer .container .logo {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
footer .container .logo img:nth-of-type(1) {
  width: 50rem;
  height: auto;
  border-bottom: 1px solid rgba(var(--primary), 0.2);
  padding-bottom: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 1024px) {
  footer .container .logo img:nth-of-type(1) {
    width: 64rem;
    padding-bottom: 5rem;
    margin-bottom: 5rem;
  }
}
footer .container .logo img:nth-of-type(2) {
  width: 20rem;
  height: auto;
}
@media (max-width: 1024px) {
  footer .container .logo img:nth-of-type(2) {
    width: 30rem;
  }
}
footer .container .container__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7.5rem;
  width: 100%;
  padding: 0 20rem;
}
@media (max-width: 1024px) {
  footer .container .container__inner {
    padding: 0 2rem;
  }
}
footer .container .container__inner .row {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  align-items: center;
  gap: 10rem;
}
footer .container .container__inner .row:nth-last-of-type(1) {
  padding-bottom: 3rem;
}
@media (max-width: 1024px) {
  footer .container .container__inner .row {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10rem;
  }
}
@media (max-width: 1024px) {
  footer .container .container__inner .row p {
    text-align: center;
    max-width: 60rem;
  }
}
footer .container .container__inner .row .menus {
  display: flex;
  gap: 7.5rem;
}
@media (max-width: 1024px) {
  footer .container .container__inner .row .menus {
    flex-direction: column;
    gap: 15rem;
  }
}
footer .container .container__inner .row .menus li.menu__heading {
  color: rgba(var(--primary), 1);
  margin-bottom: 2rem;
}
@media (min-width: 1024px) {
  footer .container .container__inner .row .menus li a {
    transition: color 0.6s cubic-bezier(0.26, 1, 0.3, 1);
  }
  footer .container .container__inner .row .menus li a:hover {
    color: rgba(var(--dark-grey), 1);
  }
}
footer .container .container__inner .row a.jswd__link img {
  width: 8rem;
  height: -moz-fit-content;
  height: fit-content;
}
@media (max-width: 1024px) {
  footer .container .container__inner .row a.jswd__link img {
    width: 12rem;
  }
}

:root {
  --headerHeight: 10rem;
}
@media (max-width: 1024px) {
  :root {
    --headerHeight: 14rem;
  }
}

header {
  position: fixed;
  width: 100%;
  z-index: 99999;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--headerHeight);
  color: rgba(var(--white), 1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3rem;
  transition: background 0.6s cubic-bezier(0.26, 1, 0.3, 1), color 0.6s cubic-bezier(0.26, 1, 0.3, 1);
}
@media (max-width: 1024px) {
  header {
    padding: 0 2rem;
  }
}
header .header__left {
  display: flex;
  align-items: center;
  gap: 5rem;
  z-index: 3;
}
header .header__left .logo__wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30rem;
  height: 100%;
}
@media (max-width: 1024px) {
  header .header__left .logo__wrapper {
    width: 40rem;
  }
}
header .header__left .logo__wrapper .logo {
  position: absolute;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: auto;
  transition: opacity 0.6s cubic-bezier(0.26, 1, 0.3, 1);
}
header .header__left .logo__wrapper .logo.logo__colour {
  opacity: 0;
}
header .header__left .logo__wrapper .logo picture {
  width: 100%;
  height: 100%;
}
header .header__left .logo__wrapper .logo picture img {
  width: 100%;
  height: 100%;
}
header .header__left .contacts {
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media (max-width: 1024px) {
  header .header__left .contacts {
    display: none;
  }
}
header .header__left .contacts a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(var(--secondary), 1) !important;
  color: rgba(var(--primary), 1) !important;
  padding: 2.4rem;
  transition: background 0.6s cubic-bezier(0.26, 1, 0.3, 1), color 0.6s cubic-bezier(0.26, 1, 0.3, 1);
}
@media (min-width: 1024px) {
  header .header__left .contacts a:hover {
    background: rgba(var(--primary), 1) !important;
    color: rgba(var(--white), 1) !important;
  }
}
header .header__left .contacts a svg {
  height: -moz-fit-content;
  height: fit-content;
  max-height: 1.8rem;
  width: 2rem;
}
header .header__left .contacts a svg path {
  fill: currentColor;
}
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;
  }
}

.scrolled__header {
  background: rgba(var(--white), 1) !important;
  color: rgba(var(--dark-grey), 1) !important;
  box-shadow: 0 0.4rem 1rem 0 rgba(var(--primary), 0.06);
}
.scrolled__header .dropdown__btn {
  color: rgba(var(--dark-grey), 1) !important;
}
.scrolled__header .header__left .logo__wrapper .logo.logo__colour {
  opacity: 1;
}
.scrolled__header .header__left .logo__wrapper .logo.logo__white {
  opacity: 0;
}

.contact__main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
}
.contact__main .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 5rem;
}
@media (max-width: 1024px) {
  .contact__main .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.contact__main .container > h2 {
  text-align: center;
  width: 80rem;
}
.contact__main .container > h2 strong {
  text-transform: capitalize;
}
@media (max-width: 1024px) {
  .contact__main .container > h2 {
    margin-bottom: 4rem;
    width: 100%;
  }
}
.contact__main .container .button__wrapper {
  margin-bottom: 6rem;
}
@media (max-width: 1024px) {
  .contact__main .container .button__wrapper .button:nth-last-of-type(1), .contact__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: 80rem;
  width: 100%;
}
@media (max-width: 1024px) {
  .home__page .hero {
    height: 110rem;
    flex-direction: column;
    margin-top: 0;
  }
}
.home__page .hero .container {
  z-index: 2;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  gap: 5rem;
}
.home__page .hero .container h1 {
  color: rgba(var(--white), 1);
}
.home__page .hero .container > p {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.home__page .hero .container > p > span {
  display: inline-block;
}
.home__page .hero .container > p > span:nth-of-type(1) {
  font-weight: bold;
  text-transform: uppercase;
  width: 90rem;
}
@media (max-width: 1024px) {
  .home__page .hero .container > p > span:nth-of-type(1) {
    width: 100%;
  }
}
.home__page .hero .picture__wrapper {
  position: absolute;
  top: 0;
  left: 0;
}
.home__page .hero .picture__wrapper picture img {
  transform: translateY(0);
  filter: brightness(50%) saturate(120%);
}

.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: 90rem;
}
@media (max-width: 1024px) {
  .policy__page .main .container > p {
    width: 100%;
  }
}

section.highlights__banner {
  height: 90rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
@media (max-width: 1024px) {
  section.highlights__banner {
    height: 100%;
    padding: 10rem 1rem;
  }
}
section.highlights__banner .picture__wrapper {
  position: absolute;
  top: 0;
  left: 0;
}
section.highlights__banner .picture__wrapper picture:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(var(--primary), 0.4);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
}
section.highlights__banner .picture__wrapper picture img {
  filter: saturate(130%);
}
section.highlights__banner .highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  justify-items: center;
  align-items: center;
  gap: 2rem;
  z-index: 3;
  padding: 0 5rem;
}
@media (max-width: 1024px) {
  section.highlights__banner .highlights {
    grid-template-columns: repeat(1, 1fr);
  }
}
section.highlights__banner .highlights .grid__item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  gap: 2rem;
  height: 100%;
  width: 100%;
  background: rgba(var(--primary), 1);
  color: rgba(var(--secondary), 1);
  padding: 2rem;
}
@media (max-width: 1024px) {
  section.highlights__banner .highlights .grid__item {
    padding: 5rem 3rem;
  }
}
section.highlights__banner .highlights .grid__item__row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
  text-align: center;
}
section.highlights__banner .highlights .grid__item__row:nth-of-type(1) .svg__wrapper {
  background: rgba(var(--secondary), 1);
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  width: 6rem;
  height: 6rem;
}
@media (max-width: 1024px) {
  section.highlights__banner .highlights .grid__item__row:nth-of-type(1) .svg__wrapper {
    width: 8rem;
    height: 8rem;
  }
}
section.highlights__banner .highlights .grid__item__row:nth-of-type(1) svg {
  width: 3rem;
  height: 3rem;
}
section.highlights__banner .highlights .grid__item__row:nth-of-type(1) svg path {
  fill: rgba(var(--primary), 1);
  stroke: rgba(var(--primary), 1);
}
@media (max-width: 1024px) {
  section.highlights__banner .highlights .grid__item__row:nth-of-type(1) svg {
    width: 5rem;
    height: 5rem;
  }
}
section.highlights__banner .highlights .grid__item__row:nth-of-type(2) p {
  font-size: 2.2rem;
  font-weight: bold;
}
@media (max-width: 1024px) {
  section.highlights__banner .highlights .grid__item__row:nth-of-type(2) p {
    font-size: 3.4rem;
  }
}

footer .picture__wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5rem;
  height: 60rem !important;
}
@media (max-width: 1024px) {
  footer .picture__wrapper {
    flex-direction: column;
    height: 80rem !important;
  }
}
footer .picture__wrapper:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  background: rgba(var(--primary), 0.4);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
}
footer .picture__wrapper > span {
  display: flex;
}
footer .picture__wrapper > span a {
  background: rgba(var(--primary), 1);
  color: rgba(var(--white), 1);
  padding: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  z-index: 2;
  transition: background 0.6s cubic-bezier(0.26, 1, 0.3, 1), color 0.6s cubic-bezier(0.26, 1, 0.3, 1);
}
@media (max-width: 1024px) {
  footer .picture__wrapper > span a {
    gap: 2rem;
    width: 50rem;
    padding: 6rem 4rem;
  }
}
@media (min-width: 1024px) {
  footer .picture__wrapper > span a:hover {
    background: rgba(var(--secondary), 1);
    color: rgba(var(--primary), 1);
  }
}
footer .picture__wrapper > span a svg {
  width: 2.4rem;
  max-height: 2rem;
  top: -0.2rem;
}
@media (max-width: 1024px) {
  footer .picture__wrapper > span a svg {
    width: 3.4rem;
    max-height: 3rem;
  }
}
footer .picture__wrapper > span a svg path {
  fill: currentColor;
}
footer .picture__wrapper picture {
  position: absolute;
  top: 0;
  left: 0;
}
footer .picture__wrapper picture img {
  filter: saturate(130%);
}

section.reviews .container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 3rem;
}
@media (max-width: 1024px) {
  section.reviews .container {
    gap: 5rem;
  }
}

section.services .container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}
@media (max-width: 1024px) {
  section.services .container {
    gap: 5rem;
  }
}

.standard__hero {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70rem;
  width: 100%;
  margin-top: calc(-1 * var(--headerHeight));
  overflow: hidden;
}
@media (max-width: 1024px) {
  .standard__hero {
    height: 105rem;
  }
}
.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.breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.standard__hero .container p.breadcrumb a {
  text-decoration: underline;
  text-transform: capitalize;
}
.standard__hero .container > p {
  width: 110rem;
}
@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 {
  transform: translateY(0);
  filter: brightness(50%) saturate(120%);
}

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

.text__img__section {
  display: flex;
  align-items: center;
  justify-content: center;
}
.text__img__section .container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5rem;
}
.text__img__section .container .container__inner {
  display: flex;
  gap: 5rem;
}
@media (max-width: 1024px) {
  .text__img__section .container .container__inner {
    flex-direction: column;
  }
}
.text__img__section .container .container__inner .col {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
@media (max-width: 1024px) {
  .text__img__section .container .container__inner .col {
    gap: 5rem;
  }
}
.text__img__section .container .container__inner .col .picture__wrapper {
  width: 80rem;
  height: 60rem;
}
@media (max-width: 1024px) {
  .text__img__section .container .container__inner .col .picture__wrapper {
    width: 100%;
    height: 50rem;
  }
}/*# sourceMappingURL=main.css.map */