/**
*
* Testing
*
**/
:root {
  --black: 0, 0, 0;
  --white: 255, 255, 255;
  --dark-grey: 75, 75, 77;
  --primary: 0, 54, 134;
  --secondary: 148, 167, 233;
  --tertiary: 206, 229, 232;
  --yellow: 254, 208, 0;
}

header, #consent-popup, .call-now, .button .button__inner {
  box-shadow: 0 0.4rem 1rem 0 rgba(var(--primary), 0.1);
}

.slider.services__slider .service__slide p, .image__grid .item .image__caption {
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.6);
}

.text__img__section .container .row picture, .slider.services__slider .service__slide picture, .slider .review__slide:before, .slider__buttons .slider__button, .side__menu__toggler, .lightbox__img, .image__grid .item, form.form fieldset input[type=checkbox], .button .button__inner, section.values .grid .item {
  border-radius: clamp(0.25rem, 1vw, 0.5rem);
}

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: rgb(228, 228, 228);
  overflow: hidden;
  z-index: 1;
}

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

.lazy-load-item .lazy-item.loaded {
  display: block;
  animation: fadeInLazy 3s cubic-bezier(0.26, 1, 0.07, 1) forwards;
}

@keyframes fadeInLazy {
  0% {
    opacity: 0;
    transform: scale(1.08);
  }
  100% {
    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.26, 1, 0.07, 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.07, 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: block;
}
.heading__reveal > span {
  display: block;
  z-index: 1;
}
.heading__reveal > span > span {
  height: 1em;
  display: inline-block;
  opacity: 0;
  transform: translate3d(0, 30%, 0) rotateX(-70deg) scale(0.9);
}

.heading__reveal.visible > span > span {
  animation: revealHeading 2s cubic-bezier(0.26, 1, 0.07, 1) forwards;
}
.heading__reveal.visible > span:nth-of-type(1) {
  /* store stagger delay in CSS variable */
  --stagger-delay: calc(0s + (0 * 0.2s));
}
.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.2s));
}
.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.2s));
}
.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.2s));
}
.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.2s));
}
.heading__reveal.visible > span:nth-of-type(5) > span {
  animation-delay: var(--stagger-delay);
}

.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 2s 0.5s cubic-bezier(0.26, 1, 0.07, 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, 3rem, 0);
  pointer-events: none;
}

.button__reveal.visible {
  animation: btnReveal 2s 0.6s cubic-bezier(0.26, 1, 0.07, 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)
  ------------------------------ */
html {
  scroll-behavior: auto;
  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: auto;
  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;
}
body main section {
  padding: 10rem 0;
  background: rgba(var(--white), 1);
  z-index: 1;
}
body main section:nth-of-type(1) {
  padding-top: calc(10rem + var(--headerHeight));
}
@media (max-width: 1024px) {
  body main section:nth-of-type(1) {
    padding-top: calc(5rem + var(--headerHeight));
  }
}
body main section .container {
  width: 100%;
  height: 100%;
  padding: 0 10rem;
}
@media (max-width: 1024px) {
  body main section .container {
    padding: 0 1.6rem;
  }
}
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: 130%; /* 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";
  font-style: normal;
  src: url("../fonts/NeueMontreal-Medium.woff2") format("woff2");
  font-display: swap;
}
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(--primary), 1);
  letter-spacing: 0.02rem;
}
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 .font__s {
  font-size: 1.7rem;
}
@media (max-width: 1024px) {
  body .font__s {
    font-size: 2.6rem;
  }
}
body .font__m {
  font-size: 3rem;
}
@media (max-width: 1024px) {
  body .font__m {
    letter-spacing: 0;
    font-size: 5rem;
  }
}
body .font__l {
  font-size: 10rem;
  text-transform: uppercase;
  letter-spacing: 0.04rem;
  word-spacing: 0.8rem;
  line-height: 1.1;
}
@media (max-width: 1024px) {
  body .font__l {
    letter-spacing: 0;
    font-size: 7rem;
  }
}

.accreditation__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10rem;
}
@media (max-width: 1024px) {
  .accreditation__logos {
    gap: 2rem;
  }
}
.accreditation__logos > picture {
  height: 7rem;
  width: auto;
  background: transparent !important;
}
@media (max-width: 1024px) {
  .accreditation__logos > picture {
    height: 100%;
  }
}
.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;
  }
}

.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.26, 1, 0.07, 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.07, 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.values {
  height: 100rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
@media (max-width: 1024px) {
  section.values {
    height: 100%;
    padding: 10rem 2rem;
  }
}
section.values .picture__wrapper {
  position: absolute;
  top: 0;
  left: 0;
}
section.values .picture__wrapper img {
  transform: translateY(0);
  filter: brightness(40%) saturate(150%);
}
section.values .grid {
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  z-index: 3;
}
@media (max-width: 1024px) {
  section.values .grid {
    flex-direction: column;
    gap: 3rem;
  }
}
section.values .grid .item {
  width: 40rem;
  height: 30rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  text-align: center;
  padding: 5rem;
  background: rgba(var(--tertiary), 0.1);
  border: 1px solid rgba(var(--tertiary), 0.3);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
@media (max-width: 1024px) {
  section.values .grid .item {
    width: 100%;
  }
}

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.6rem;
  background: rgba(var(--tertiary), 1);
  color: rgba(var(--primary), 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.26, 1, 0.07, 1), color 0.6s cubic-bezier(0.26, 1, 0.07, 1);
}
.button .button__inner svg {
  width: 1.6rem;
  height: auto;
}
.button .button__inner svg path {
  fill: currentColor;
  transition: fill 0.6s cubic-bezier(0.26, 1, 0.07, 1);
}
@media (min-width: 1024px) {
  .button .button__inner:hover {
    background: rgba(var(--secondary), 1);
  }
}
@media (max-width: 1024px) {
  .button .button__inner {
    padding: 3rem;
  }
}

.button__alt .button__inner {
  background: rgba(var(--primary), 1);
  color: rgba(var(--tertiary), 1);
}
@media (min-width: 1024px) {
  .button__alt .button__inner:hover {
    background: rgba(var(--secondary), 1);
    color: rgba(var(--primary), 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.07, 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: 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(--tertiary), 1);
  border-radius: 50%;
  border: 1px solid rgba(var(--secondary), 1);
}
@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.26, 1, 0.07, 1), transform 1.6s cubic-bezier(0.26, 1, 0.07, 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;
}
#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.07, 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 {
  z-index: -99;
  opacity: 0;
  transform: translate3d(0, 1rem, 0);
}

.dropdown {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1024px) {
  .dropdown {
    display: none;
  }
}
.dropdown:hover .dropdown__content {
  z-index: 9;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  transition: clip-path 1.4s cubic-bezier(0.26, 1, 0.07, 1);
}
.dropdown .dropdown__btn {
  cursor: pointer !important;
  height: 100%;
  display: flex;
  align-items: center;
  z-index: 4;
}
.dropdown .dropdown__btn svg {
  width: 1.3rem;
  height: auto;
  pointer-events: none;
  margin-left: 0.25rem;
  top: 0.1rem;
}
.dropdown .dropdown__btn svg path {
  fill: currentColor;
}
.dropdown .dropdown__content {
  position: absolute;
  top: calc(var(--headerHeight) - 5rem);
  padding-top: 3rem;
  left: 50%;
  transform: translateY(-3.4rem) translateX(-50%);
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  transition: clip-path 1.4s 0.1s cubic-bezier(0.26, 1, 0.07, 1);
  background: rgba(var(--tertiary), 1);
  width: 40rem;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  gap: 0;
  z-index: 9999999;
}
.dropdown .dropdown__content .dropdown__content__inner {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  flex-direction: column;
  z-index: 9;
}
.dropdown .dropdown__content .dropdown__content__inner ul.menu {
  gap: 0;
}
.dropdown .dropdown__content .dropdown__content__inner ul.menu li.menu__heading {
  display: none;
}
.dropdown .dropdown__content .dropdown__content__inner ul.menu li a {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer !important;
  z-index: 3;
  padding: 1.6rem 1rem;
  transition: background 0.6s cubic-bezier(0.26, 1, 0.07, 1), color 0.6s cubic-bezier(0.26, 1, 0.07, 1);
  color: rgba(var(--primary), 1);
  background: rgba(var(--tertiary), 1);
}
.dropdown .dropdown__content .dropdown__content__inner ul.menu li a:after {
  display: none;
}
@media (min-width: 1024px) {
  .dropdown .dropdown__content .dropdown__content__inner ul.menu li a:hover {
    background: rgba(var(--primary), 1);
    color: rgba(var(--tertiary), 1);
  }
}

.fixed__btn {
  z-index: 9;
  position: fixed;
  bottom: 1.2rem;
  right: 1.2rem;
  padding: 1rem 0.25rem;
  transform: translate3d(0, 15rem, 0);
  transition: transform 1s cubic-bezier(0.26, 1, 0.07, 1);
}
.fixed__btn .button__inner {
  background: rgba(var(--secondary));
  color: rgba(var(--primary));
}
.fixed__btn .button__inner svg {
  transform: rotate(-45deg);
}
@media (max-width: 1024px) {
  .fixed__btn {
    display: none !important;
  }
}

.show__btn {
  transform: translate3d(0, 0, 0);
}

form.form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: -moz-fit-content;
  width: fit-content;
  text-align: left;
}
@media (max-width: 1024px) {
  form.form {
    padding: 0 2rem;
  }
}
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: 80rem;
  height: 4rem;
  margin-top: 0.25rem;
  color: rgba(var(--primary), 1);
  caret-color: rgba(var(--primary), 1);
  background: transparent;
  font: inherit;
  letter-spacing: 0.04rem;
  border-bottom: 1px solid rgba(var(--primary), 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,
  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: transparent !important;
}
form.form input:not([type=submit]),
form.form input:not([type=firstname]) {
  background-color: transparent !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 transparent 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: 80rem;
}
@media (max-width: 1024px) {
  form.form button[type=submit] .button__inner {
    width: calc(100vw - 4rem);
  }
}
form.form fieldset {
  border: none;
  padding: 0;
  margin: 2rem 0;
}
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.26, 1, 0.07, 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 .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 {
    width: 100%;
  }
}

.image__grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
@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;
  width: 56rem;
  height: 40rem;
  cursor: pointer;
}
@media (max-width: 1024px) {
  .image__grid .item {
    width: 100%;
    height: 60rem;
  }
}
@media (min-width: 1024px) {
  .image__grid .item:hover picture img {
    filter: brightness(90%) saturate(120%);
  }
}
.image__grid .item .image__caption {
  position: absolute;
  top: 2rem;
  z-index: 3;
  color: rgba(var(--white), 1);
}
.image__grid .item picture {
  z-index: 1;
  overflow: hidden;
}
.image__grid .item picture img {
  filter: brightness(70%) saturate(120%);
  transition: filter 1s cubic-bezier(0.26, 1, 0.07, 1);
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(var(--black), 0.7);
  -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;
}
@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(--white), 1);
}
@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: 0.75rem;
}
@media (max-width: 1024px) {
  ul.menu {
    gap: 2rem;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  ul.menu:not(:nth-of-type(1)) li.menu__heading {
    margin-top: 5rem;
  }
}
ul.menu li.menu__heading {
  text-transform: capitalize;
  margin-bottom: 2rem;
}
ul.menu li a {
  width: -moz-fit-content;
  width: fit-content;
  opacity: 0.6;
  transition: opacity 0.8s cubic-bezier(0.26, 1, 0.07, 1);
}
@media (min-width: 1024px) {
  ul.menu li a:hover {
    opacity: 1;
  }
}

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

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

.side__nav {
  position: fixed;
  z-index: 99;
  height: 100vh;
  top: 0;
  background: rgba(var(--tertiary), 1);
  width: 50rem;
  right: 0;
  clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0% 100%);
  transition: clip-path 0.8s cubic-bezier(0.26, 1, 0.07, 1);
  padding: 5rem;
  padding-top: calc(var(--headerHeight) - 5rem);
  display: flex;
  flex-direction: column;
  gap: 5rem;
  overflow: auto;
}
@media (max-width: 1024px) {
  .side__nav {
    width: 100%;
    height: 115vh;
    right: auto;
    padding: 5rem;
    padding-top: 10rem;
    padding-bottom: 55rem;
    align-items: center;
  }
}

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

.side__menu__toggler {
  position: fixed;
  top: 1.5rem;
  right: 3rem;
  z-index: 999999999;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  width: 7rem;
  height: 7rem;
  background: rgba(var(--primary), 1);
  color: rgba(var(--tertiary), 1);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  transition: background 1.2s cubic-bezier(0.26, 1, 0.07, 1), color 1.2s cubic-bezier(0.26, 1, 0.07, 1);
}
@media (max-width: 1024px) {
  .side__menu__toggler {
    width: 8rem;
    height: 8rem;
    top: 2.8rem;
    -webkit-backdrop-filter: none;
            backdrop-filter: none;
    transition: background 0.6s cubic-bezier(0.26, 1, 0.07, 1), color 0.6s cubic-bezier(0.26, 1, 0.07, 1);
  }
}
.side__menu__toggler.active .icon span {
  opacity: 0;
  transition: 0.2s opacity cubic-bezier(0.26, 1, 0.07, 1);
}
.side__menu__toggler.active .icon::before {
  transform: rotate(45deg);
}
.side__menu__toggler.active .icon::after {
  transform: rotate(-45deg);
}
.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: 3rem;
  height: 2px;
  background: currentColor;
  transition: 0.4s 0.2s opacity cubic-bezier(0.26, 1, 0.07, 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: 3rem;
  height: 2px;
  background: currentColor;
  display: block;
  position: absolute;
  right: 0;
  transition: transform 0.6s cubic-bezier(0.26, 1, 0.07, 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);
  }
}

main:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100000000000000000000000000;
  width: 100vw;
  height: 100%;
  background: rgba(var(--black), 0.7);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s cubic-bezier(0.26, 1, 0.07, 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: 2rem;
  width: 100%;
  /* ==============================
     Track
     ============================== */
  /* ==============================
     Buttons
     ============================== */
  /* ==============================
     Base Slide
     ============================== */
  /* ==============================
     Review Slider
     ============================== */
  /* ==============================
     Services Slider
     ============================== */
}
@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;
  /* 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;
  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);
}
@media (max-width: 1024px) {
  .slider__buttons {
    gap: 3rem;
  }
}
.slider__buttons .slider__button {
  cursor: pointer;
  border: 1px solid rgba(var(--primary), 1);
  width: 14rem;
  text-align: center;
  padding: 1rem;
}
@media (max-width: 1024px) {
  .slider__buttons .slider__button {
    padding: 2rem 3rem;
  }
}
.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;
  padding: 2rem;
}
@media (max-width: 1024px) {
  .slider .slide {
    padding: 0;
    height: 50rem;
  }
}
@media (max-width: 1024px) {
  .slider .review__slide {
    height: auto;
    padding: 3rem;
    gap: 5rem;
  }
}
.slider .review__slide:before {
  content: "";
  position: absolute;
  width: calc(100% - 2rem);
  height: calc(100% - 2rem);
  background: rgba(var(--tertiary), 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% - 2rem);
  height: calc(100% - 2rem);
  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.07, 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);
}

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

.standard__hero {
  padding: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  height: calc(76rem + var(--headerHeight));
  width: 100%;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .standard__hero {
    height: 80rem;
  }
}
.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;
  margin-top: var(--headerHeight);
}
@media (max-width: 1024px) {
  .standard__hero .container {
    gap: 3rem;
  }
}
.standard__hero .container h1 {
  width: 140rem;
}
@media (max-width: 1024px) {
  .standard__hero .container h1 {
    width: 100%;
  }
}
.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 img {
  -o-object-position: center;
     object-position: center;
  filter: brightness(60%) saturate(120%);
}

.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;
  gap: 5rem;
}
.text__img__section .container .row {
  display: flex;
  gap: 10rem;
}
@media (max-width: 1024px) {
  .text__img__section .container .row {
    flex-direction: column;
  }
}
.text__img__section .container .row h2 {
  width: 140rem;
  text-align: center;
}
.text__img__section .container .row .txt__btn__wrapper {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
@media (max-width: 1024px) {
  .text__img__section .container .row .txt__btn__wrapper {
    align-items: center;
    gap: 5rem;
  }
}
.text__img__section .container .row .txt__btn__wrapper > p {
  max-width: 80rem;
}
@media (max-width: 1024px) {
  .text__img__section .container .row .txt__btn__wrapper > p {
    max-width: 100%;
  }
}
.text__img__section .container .row .txt__btn__wrapper ul {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  width: 100%;
}
.text__img__section .container .row picture {
  width: 70rem;
  height: 45rem;
  z-index: 1;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .text__img__section .container .row picture {
    width: 100%;
  }
}

.text__img__section__centered .container .row,
.text__img__section__centered .container .txt__btn__wrapper {
  align-items: center;
  text-align: center;
  justify-content: center;
}
.text__img__section__centered .container .row > p,
.text__img__section__centered .container .txt__btn__wrapper > p {
  max-width: 120rem !important;
}
@media (max-width: 1024px) {
  .text__img__section__centered .container .row > p,
  .text__img__section__centered .container .txt__btn__wrapper > p {
    max-width: 100% !important;
  }
}

footer {
  background: rgba(var(--primary), 1);
  color: rgba(var(--tertiary), 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5rem;
  padding-top: 10rem;
  overflow: hidden;
  z-index: 1;
}
@media (max-width: 1024px) {
  footer {
    padding-bottom: 5rem;
  }
}
footer .watermark {
  background: none !important;
  position: absolute;
  right: 0;
  top: 0;
  width: auto;
  transform: translate(20%, -15%);
  height: 110%;
  filter: saturate(0%);
  opacity: 0.2;
  z-index: -1;
}
@media (max-width: 1024px) {
  footer .watermark {
    height: 100rem;
    opacity: 0.1;
  }
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 5rem;
  width: 100%;
  padding: 0 20rem;
}
@media (max-width: 1024px) {
  footer .container {
    align-items: center;
    padding: 0;
    gap: 10rem;
  }
}
footer .container .logo img {
  width: 60rem;
  height: auto;
}
@media (max-width: 1024px) {
  footer .container .logo img {
    width: 50rem;
  }
}
footer .container .container__inner {
  display: flex;
  flex-direction: column;
  gap: 10rem;
  width: 100%;
}
footer .container .container__inner .row {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 3rem;
}
@media (max-width: 1024px) {
  footer .container .container__inner .row {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10rem;
  }
}
footer .container .container__inner .row .menus {
  display: flex;
  gap: 10rem;
}
@media (max-width: 1024px) {
  footer .container .container__inner .row .menus {
    flex-direction: column;
    gap: 5rem;
  }
}
footer .container .container__inner .row .menus .menu {
  flex-direction: row;
}
@media (max-width: 1024px) {
  footer .container .container__inner .row .menus .menu {
    flex-direction: column;
    gap: 3rem;
  }
}
footer .container .container__inner .row .menus .menu li:not(:nth-of-type(1)):after {
  content: "|";
  margin-left: 0.5rem;
}
@media (max-width: 1024px) {
  footer .container .container__inner .row .menus .menu li:not(:nth-of-type(1)):after {
    display: none;
  }
}
footer .container .container__inner .row .menus .menu li:nth-last-of-type(1):after {
  content: "";
}
footer .container .container__inner .row:nth-last-of-type(1) {
  padding-bottom: 2rem;
}
footer .container .container__inner .row:nth-last-of-type(1) .col {
  display: flex;
  gap: 10rem;
}
@media (max-width: 1024px) {
  footer .container .container__inner .row:nth-last-of-type(1) .col {
    flex-direction: column;
    align-items: center;
  }
}
footer .container .container__inner .row:nth-last-of-type(1) .col a.jswd__link img {
  width: 6.6rem;
  height: -moz-fit-content;
  height: fit-content;
  margin-left: 0.3rem;
}
@media (max-width: 1024px) {
  footer .container .container__inner .row:nth-last-of-type(1) .col a.jswd__link img {
    width: 11rem;
  }
}

:root {
  --headerHeight: 10rem;
}
@media (max-width: 1024px) {
  :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: center;
  background: rgba(var(--white), 1);
  color: rgba(var(--primary), 1);
  padding: 0 3rem;
}
@media (max-width: 1024px) {
  header {
    padding: 0 2rem;
    justify-content: flex-end;
  }
}
header .logo__wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22rem;
  height: 100%;
  position: absolute;
  left: 3rem;
}
@media (max-width: 1024px) {
  header .logo__wrapper {
    width: 34rem;
  }
}
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;
}
header .logo__wrapper .logo picture {
  width: 100%;
  height: 100%;
}
header .logo__wrapper .logo picture img {
  width: 100%;
  height: 100%;
}
header .menu {
  flex-direction: row;
  gap: 3rem;
}
@media (max-width: 1024px) {
  header .menu {
    display: none;
  }
}
header .menu li:nth-of-type(1) {
  display: none;
}
header .menu li:not(:nth-of-type(1)):after {
  content: "|";
  margin-left: 0.5rem;
  display: none !important;
}
header .menu li:nth-last-of-type(1):after {
  content: "";
}

.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 .accreditation__logos {
  gap: 4rem;
}
@media (max-width: 1024px) {
  .enquire__main .container .accreditation__logos {
    gap: 2rem;
  }
}
.enquire__main .container .accreditation__logos > picture {
  height: 4rem;
}
@media (max-width: 1024px) {
  .enquire__main .container .accreditation__logos > picture {
    height: 100%;
  }
}
.enquire__main .container .accreditation__logos > picture > img {
  height: 4rem;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 1024px) {
  .enquire__main .container .accreditation__logos > picture > img {
    height: 5.4rem;
  }
}
.enquire__main .container > h2 {
  text-align: center;
  width: 80rem;
}
.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;
  flex-direction: column;
  height: 100%;
  width: 100%;
}
@media (max-width: 1024px) {
  .home__page .hero {
    flex-direction: column;
    margin-top: 0;
    justify-content: flex-start;
    height: 100%;
  }
}
.home__page .hero .container {
  z-index: 2;
  height: 100%;
  width: 100%;
  padding: 0;
  padding-top: calc(var(--headerHeight) + 10rem);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  gap: 3rem;
}
.home__page .hero .container > p {
  text-transform: uppercase;
}
@media (max-width: 1024px) {
  .home__page .hero .container > p {
    width: 60rem;
  }
}
.home__page .hero .container .accreditation__logos {
  margin: 5rem 0;
}
.home__page .hero .container .picture__wrapper {
  height: 100rem;
  width: 100%;
  overflow: hidden;
  z-index: 2;
}
@media (max-width: 1024px) {
  .home__page .hero .container .picture__wrapper {
    height: 65rem;
  }
}
.home__page .hero .container .picture__wrapper img {
  transform: translateY(0);
  filter: brightness(90%) saturate(130%);
}

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

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;
}/*# sourceMappingURL=main.css.map */