@charset "UTF-8";
/**
*
* Testing
*
**/
main section {
  padding: 10rem 0;
}
@media (max-width: 1024px) {
  main section {
    padding: 20rem 0;
  }
}

main figure {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

main figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.home__page section.hero figure:after, ul.header__socials li a:before, .testimonial__section .container .testimonials__card__wrapper .button-wrapper .pagination:after,
.testimonial__section .container .testimonials__card__wrapper .button-wrapper a.google__link:after, span.scroll__to__wrapper .scroll__btn:before {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.whatsapp__now, .call-now {
  border-radius: 100%;
}

[data-scroll-class=s-t-reveal] .line {
  z-index: 1;
  overflow: hidden;
  border: 1px solid red;
}
[data-scroll-class=s-t-reveal] .line .word {
  display: inline-flex;
  transform: translate3d(0, 100%, 0) rotate(0.4deg);
  will-change: transform;
  border: 1px solid green;
}

.s-t-reveal .line .word {
  animation: sTReveal 2s cubic-bezier(0.22, 1, 0.16, 1) forwards;
  animation-delay: calc(var(--line) * 0.1s);
}

@keyframes sTReveal {
  to {
    transform: none;
  }
}
.in__view__element .s-t-reveal .line .word {
  animation: sTReveal 2s cubic-bezier(0.22, 1, 0.16, 1) forwards;
  animation-delay: calc(0.6s + var(--line) * 0.15s);
}

.lazy-load-item {
  height: 100%;
  width: 100%;
  background: rgb(207, 207, 207);
  transition: background 0s cubic-bezier(0.22, 1, 0.16, 1);
}

.lazy-load-item .lazy-item {
  display: none;
}
.lazy-load-item .lazy-item.loaded {
  display: block;
}

.contact__page section.contact__main .container .column .row ul.contact__menu li a, ul.header__contact li a, footer .container .row:nth-of-type(1) .column:nth-of-type(2) ul li.item a, nav ul.nav__menu li a {
  display: inline-block;
  position: relative;
  vertical-align: top;
}

.contact__page section.contact__main .container .column .row ul.contact__menu li a:after, ul.header__contact li a:after, footer .container .row:nth-of-type(1) .column:nth-of-type(2) ul li.item a:after, nav ul.nav__menu li a:after {
  background: currentColor;
  bottom: 0;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transition: transform 1s cubic-bezier(0.22, 1, 0.16, 1);
  width: 100%;
  z-index: 0;
}
@media (max-width: 1024px) {
  .contact__page section.contact__main .container .column .row ul.contact__menu li a:after, ul.header__contact li a:after, footer .container .row:nth-of-type(1) .column:nth-of-type(2) ul li.item a:after, nav ul.nav__menu li a:after {
    display: none !important;
  }
}

.contact__page section.contact__main .container .column .row ul.contact__menu li a:hover:after, ul.header__contact li a:hover:after, footer .container .row:nth-of-type(1) .column:nth-of-type(2) ul li.item a:hover:after, nav ul.nav__menu li a:hover:after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.contact__page section.contact__main .container .column .row ul.contact__menu li a:after, ul.header__contact li a:after, footer .container .row:nth-of-type(1) .column:nth-of-type(2) ul li.item a:after, nav ul.nav__menu li a:after {
  transform: scaleX(0);
  transform-origin: bottom right;
}

.contact__page section.contact__main .container .column .row ul.contact__menu li a, ul.header__contact li a, footer .container .row:nth-of-type(1) .column:nth-of-type(2) ul li.item a, nav ul.nav__menu li a {
  display: inline-block;
}
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  position: relative;
  -webkit-tap-highlight-color: transparent !important;
}

html {
  -webkit-tap-highlight-color: transparent !important;
  font-size: 0.5208333333vw !important;
  transition: font-size 0s 0s !important;
}
@media (max-width: 1024px) {
  html {
    font-size: 0.7291666667vw !important;
  }
}

body {
  -webkit-tap-highlight-color: transparent !important;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1024px) {
  body {
    display: block;
    overflow: auto;
  }
}

.heading__label {
  display: none !important;
}

#down {
  top: -7rem;
}
@media (max-width: 1024px) {
  #down {
    top: -22rem;
  }
}

.hidden__always {
  visibility: hidden !important;
  pointer-events: none !important;
  opacity: 0 !important;
}

img,
svg {
  -webkit-user-drag: none;
  image-rendering: optimizeQuality;
}

main {
  z-index: 20;
  width: 100vw;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  background: rgba(var(--off-white), 1);
  transition: background 0s cubic-bezier(0.22, 1, 0.16, 1);
}
main section.hero {
  padding: 0;
}
main section,
main footer {
  background: rgba(var(--off-white), 1);
  transition: background 0s cubic-bezier(0.22, 1, 0.16, 1);
}
main section {
  height: 100%;
  width: 100%;
  z-index: 1;
  overflow: hidden;
}
main section h1,
main section h2,
main section h3,
main section h4,
main section p {
  transition: color 0s cubic-bezier(0.22, 1, 0.16, 1);
}
main section .container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  z-index: 2;
  padding: 0 8rem;
}
@media (max-width: 1024px) {
  main section .container {
    padding: 0 8rem;
  }
}
main section .container .row {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
}
@media (max-width: 1024px) {
  main section .container .row {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  main section .container .row h1,
  main section .container .row h2 {
    text-align: center;
  }
}
main section .container .row .heading__wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column-reverse;
  gap: 2rem;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 1024px) {
  main section .container .row .heading__wrapper {
    align-items: center;
  }
}
:root {
  --black: 5, 5, 5;
  --always-black: 5, 5, 5;
  --always-black-2: 19, 19, 19;
  --always-black-3: 37, 37, 37;
  --white: 255, 255, 255;
  --always-white: 255, 255, 255;
  --off-white: 248, 248, 248;
  --hint: 195, 15, 10;
}

.darkMode {
  --black: 193, 193, 193;
  --always-black-2: 7, 7, 9;
  --always-black-3: 17, 17, 19;
  --white: 27, 27, 29;
  --off-white: 23, 23, 25;
  --always-white: 193, 193, 193;
  --hint: 125, 10, 8;
}
.darkMode .darkmode__button span.switch:nth-of-type(1) {
  opacity: 1;
  pointer-events: all;
  cursor: pointer !important;
}
.darkMode .darkmode__button span.switch:nth-of-type(3) {
  pointer-events: none;
  cursor: default !important;
  opacity: 0.3;
}
.darkMode .logo,
.darkMode .footer__logo,
.darkMode .jswd__logo {
  filter: brightness(70%) !important;
}
.darkMode .lazy-load-item {
  background: rgb(53, 53, 55);
}
.darkMode figure {
  filter: brightness(60%) !important;
}
.darkMode .cutout__text__container {
  color: rgba(var(--black), 1);
}
.darkMode .cutout__text__container {
  mix-blend-mode: normal;
}
.darkMode .button svg.tt {
  filter: brightness(80%);
}
.darkMode .g-recaptcha {
  opacity: 0.6;
}

.darkmode__button {
  cursor: default !important;
  white-space: nowrap;
  width: 12rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: rgba(var(--always-white), 1);
  transition: color 0s cubic-bezier(0.22, 1, 0.16, 1);
}
@media (max-width: 1024px) {
  .darkmode__button {
    width: -moz-fit-content;
    width: fit-content;
    gap: 3rem;
    right: 25rem;
  }
}
.darkmode__button .separator {
  display: inline-block;
  width: 0.1rem;
  height: 2.6rem;
  transform: rotate(30deg);
  background: currentColor;
  opacity: 0.5;
}
@media (max-width: 1024px) {
  .darkmode__button .separator {
    height: 10rem;
    width: 0.5rem;
    opacity: 0.25;
  }
}
.darkmode__button span.switch {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  transition: opacity 1s cubic-bezier(0.22, 1, 0.16, 1);
}
.darkmode__button span.switch:nth-of-type(3) svg {
  width: 2rem;
  height: 2rem;
}
@media (max-width: 1024px) {
  .darkmode__button span.switch:nth-of-type(3) svg {
    width: 6.5rem;
    height: 6.5rem;
  }
}
.darkmode__button span.switch svg {
  width: 2.8rem;
  height: 2.8rem;
}
@media (max-width: 1024px) {
  .darkmode__button span.switch svg {
    width: 9rem;
    height: 9rem;
  }
}
.darkmode__button span.switch svg path {
  fill: currentColor;
}
@media (max-width: 1024px) {
  .darkmode__button span.switch {
    overflow: visible;
  }
}
.darkmode__button span.switch:nth-of-type(1) {
  pointer-events: none;
  cursor: default !important;
  opacity: 0.3;
}
.darkmode__button span.switch:nth-of-type(3) {
  cursor: pointer !important;
}

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,
video {
  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;
}

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

@font-face {
  font-family: "NeueMontreal";
  font-weight: 400;
  font-style: normal;
  src: url("../NeueMontreal.woff2") format("woff2");
  font-display: swap;
}
body {
  font-family: "CabinetGrotesk", Arial, sans-serif;
  color: rgba(var(--black), 1);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  letter-spacing: 0.022em;
  font-weight: 400;
}
body .font__opaque__dark {
  color: rgba(var(--black), 0.7);
}
body .font__opaque__light {
  color: rgba(var(--white), 0.7);
}
body .line__height__1-5 {
  line-height: 1.5;
}
@media (max-width: 1024px) {
  body .line__height__1-5 {
    line-height: 1.2;
  }
}
body .font__xxs {
  font-size: 1.4rem;
}
@media (max-width: 1024px) {
  body .font__xxs {
    font-size: 4rem;
  }
}
body .font__xs {
  font-size: 2rem;
}
@media (max-width: 1024px) {
  body .font__xs {
    font-size: 5rem;
  }
}
body .font__s {
  font-size: 2.4rem;
}
@media (max-width: 1024px) {
  body .font__s {
    font-size: 5.5rem;
  }
}
body .font__m {
  font-size: 3rem;
}
@media (max-width: 1024px) {
  body .font__m {
    font-size: 7rem;
  }
}
body .font__l {
  font-size: 4rem;
}
@media (max-width: 1024px) {
  body .font__l {
    font-size: 9rem;
  }
}
body .font__xl {
  font-size: 7rem;
}
@media (max-width: 1024px) {
  body .font__xl {
    font-size: 10rem;
  }
}
body ul {
  list-style: none;
}
body a,
body button,
body .accordionItemHeading {
  text-decoration: none;
  color: inherit;
  cursor: pointer !important;
}
body a p,
body button p,
body .accordionItemHeading p {
  cursor: pointer !important;
}

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

.button__wrapper {
  display: flex;
  gap: 2rem;
}
@media (max-width: 1024px) {
  .button__wrapper {
    flex-direction: column;
    gap: 5rem;
    width: 100%;
  }
}

.button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  transition: color 1s cubic-bezier(0.22, 1, 0.16, 1);
  border: 1px solid rgba(var(--black), 1);
  border-radius: 20rem;
  padding: 2rem;
  transition: box-shadow 1s cubic-bezier(0.22, 1, 0.16, 1), transform 1s cubic-bezier(0.22, 1, 0.16, 1);
  text-transform: capitalize;
}
@media (max-width: 1024px) {
  .button {
    padding: 2rem 6rem;
    background: rgba(var(--black), 1);
    border: 1px solid rgba(var(--black), 1);
    color: rgba(var(--white), 1);
  }
}
@media (min-width: 768px) {
  .button:hover {
    background: rgba(var(--black), 1);
    color: rgba(var(--white), 1);
    box-shadow: 0 2rem 4rem rgba(var(--always-black), 0.2);
    transform: translate3d(0, -0.3rem, 0) scale(1.01);
  }
}

.g-recaptcha {
  transition: opacity 1s cubic-bezier(0.22, 1, 0.16, 1);
}

span.icon {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  margin-right: 1.2rem;
  padding-right: 1.2rem;
}
span.icon:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background: currentColor;
  opacity: 0.3;
}
@media (max-width: 1024px) {
  span.icon {
    width: 12rem;
    height: 12rem;
    margin-right: 4rem;
    padding-right: 4rem;
  }
}
span.icon svg {
  width: 2.5rem;
  height: 2.5rem;
}
span.icon svg path {
  fill: currentColor;
}
@media (max-width: 1024px) {
  span.icon svg {
    width: 6rem;
    height: 6rem;
  }
}

span.scroll__to__wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 1024px) {
  span.scroll__to__wrapper {
    gap: 4rem;
  }
}
span.scroll__to__wrapper > span {
  pointer-events: none;
}
span.scroll__to__wrapper .scroll__btn svg {
  right: -0.1rem;
}
span.scroll__to__wrapper .scroll__btn {
  width: 8rem;
  height: 8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
@media (max-width: 1024px) {
  span.scroll__to__wrapper .scroll__btn {
    width: 22rem;
    height: 22rem;
  }
}
@media (min-width: 768px) {
  span.scroll__to__wrapper .scroll__btn:hover:before {
    transform: scale(0.9);
  }
}
span.scroll__to__wrapper .scroll__btn:before {
  content: "";
  border-radius: 100%;
  border: 1px solid rgba(var(--always-white), 0.1);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.16, 1), border 1s cubic-bezier(0.22, 1, 0.16, 1);
}
span.scroll__to__wrapper .scroll__btn svg {
  width: 1.4rem;
  height: 1.4rem;
}
@media (max-width: 1024px) {
  span.scroll__to__wrapper .scroll__btn svg {
    width: 4rem;
    height: 4rem;
  }
}
span.scroll__to__wrapper .scroll__btn svg path {
  fill: rgba(var(--always-white), 1);
  transition: fill 1s cubic-bezier(0.22, 1, 0.16, 1);
}

.contact__now {
  z-index: 999;
  position: fixed;
  bottom: 5rem;
  right: 5rem;
}
.contact__now .button {
  background: rgb(75, 79, 76);
  border: none;
  color: white;
  text-transform: uppercase;
}
.contact__now .button svg {
  height: 3rem;
  width: 3rem;
}
@media (max-width: 1024px) {
  .contact__now {
    display: none;
  }
}

.call-now {
  position: fixed;
  z-index: 9999;
  bottom: 15rem;
  right: 5rem;
  display: none;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  align-items: center;
  justify-content: center;
  background: rgb(15, 205, 50);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  box-shadow: 0 0 2rem rgba(var(--black), 0.1);
}
@media (max-width: 1024px) {
  .call-now {
    display: flex;
  }
}
.call-now a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem;
}
.call-now a svg {
  width: 6rem;
  height: 6rem;
  display: flex;
}
.call-now a svg path {
  fill: white;
}

.whatsapp__now {
  bottom: 35rem;
  position: fixed;
  z-index: 9999;
  right: 5rem;
  display: none;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  align-items: center;
  justify-content: center;
  background: rgb(104, 229, 140);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  box-shadow: 0 0 2rem rgba(var(--black), 0.1);
}
@media (max-width: 1024px) {
  .whatsapp__now {
    display: flex;
  }
}
.whatsapp__now a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4.5rem;
}
.whatsapp__now a svg {
  width: 7rem;
  height: 7rem;
  display: flex;
}

#consent-popup {
  border-radius: 2rem;
  position: fixed;
  bottom: 5rem;
  left: 5rem;
  padding: 2rem 3rem;
  background: rgba(0, 0, 0, 0.8);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  transition: color 0.4s cubic-bezier(0.22, 1, 0.16, 1), background 0.4s cubic-bezier(0.22, 1, 0.16, 1);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  z-index: 999;
  animation: revealCookie 1s 1s cubic-bezier(0.22, 1, 0.16, 1) forwards;
  opacity: 0;
}
@media (max-width: 1024px) {
  #consent-popup {
    width: -moz-fit-content;
    width: fit-content;
    padding: 5rem;
    border-radius: 4rem;
    bottom: 10rem;
  }
}
@keyframes revealCookie {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
#consent-popup p.description {
  display: flex;
  align-items: center;
  color: rgba(var(--always-white), 0.7);
}
#consent-popup .cookie__buttons {
  display: flex;
}
#consent-popup .btn {
  color: rgba(var(--always-white), 1);
  text-decoration: underline;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
  margin-top: 1rem;
  transition: color 0.4s cubic-bezier(0.22, 1, 0.16, 1);
}
#consent-popup .btn:hover {
  text-decoration: none;
}
@media (max-width: 1024px) {
  #consent-popup .btn {
    margin-top: 3rem;
  }
}
#consent-popup.hidden {
  display: none !important;
  opacity: 0;
  z-index: -99;
}

form.form {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 400 !important;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: -2rem;
}
@media (max-width: 1024px) {
  form.form {
    width: 100%;
  }
}
form.form input:not([type=submit]),
form.form input:not([type=firstname]),
form.form textarea,
form.form select {
  position: relative;
  width: 60rem;
  height: 10rem;
  margin-top: 1.6rem;
  background: transparent;
  font-family: inherit !important;
  color: inherit;
  font-size: 2.4rem;
  background: none;
  border: none;
  border: 1px solid rgba(var(--black), 0.2);
  border-radius: 1.4rem;
  padding-left: 1rem;
  resize: none;
  color: inherit;
  caret-color: inherit;
}
@media (max-width: 1024px) {
  form.form input:not([type=submit]),
  form.form input:not([type=firstname]),
  form.form textarea,
  form.form select {
    width: calc(100vw - 17rem);
    height: 20rem;
    font-size: 8rem !important;
    padding-left: 2rem;
  }
}
form.form input:not([type=submit]):active, form.form input:not([type=submit]):focus,
form.form input:not([type=firstname]):active,
form.form input:not([type=firstname]):focus,
form.form textarea:active,
form.form textarea:focus,
form.form select:active,
form.form select:focus {
  outline: none;
  padding-bottom: 0;
  background: rgba(var(--white), 0);
}
form.form input:not([type=submit]):focus ~ label,
form.form input:not([type=firstname]):focus ~ label,
form.form textarea:focus ~ label,
form.form select:focus ~ label {
  color: rgba(var(--black), 0.2);
}
form.form input:not([type=submit])::-moz-placeholder, form.form input:not([type=firstname])::-moz-placeholder, form.form textarea::-moz-placeholder, form.form select::-moz-placeholder {
  opacity: 0;
}
form.form input:not([type=submit])::placeholder,
form.form input:not([type=firstname])::placeholder,
form.form textarea::placeholder,
form.form select::placeholder {
  opacity: 0;
}
form.form input:not([type=submit]):not(:-moz-placeholder) ~ label, form.form input:not([type=firstname]):not(:-moz-placeholder) ~ label, form.form textarea:not(:-moz-placeholder) ~ label, form.form select:not(:-moz-placeholder) ~ label {
  color: rgba(var(--black), 0);
}
form.form input:not([type=submit]):not(:placeholder-shown) ~ label,
form.form input:not([type=firstname]):not(:placeholder-shown) ~ label,
form.form textarea:not(:placeholder-shown) ~ label,
form.form select:not(:placeholder-shown) ~ label {
  color: rgba(var(--black), 0);
}
form.form label {
  position: absolute;
  transform-origin: left;
  left: 1rem;
  top: 5.5rem;
  backface-visibility: hidden;
  font-size: 2rem;
  font-family: inherit;
  pointer-events: none;
  color: inherit;
}
@media (max-width: 1024px) {
  form.form label {
    font-size: 6rem;
    top: 8rem;
    left: 2rem;
  }
}
form.form textarea {
  height: 20rem;
  padding-top: 3.6rem;
  overflow: hidden;
  margin-bottom: 2rem;
}
@media (max-width: 1024px) {
  form.form textarea {
    height: 50rem;
    padding-top: 5rem;
  }
}
form.form input:focus,
form.form select:focus,
form.form textarea:focus,
form.form button:focus {
  box-shadow: 0 0 0 12rem rgba(var(--off-white), 1) inset !important;
  -webkit-box-shadow: 0 0 0 12rem rgba(var(--off-white), 1) inset !important;
}
form.form input:-webkit-autofill,
form.form input:-webkit-autofill:hover,
form.form input:-webkit-autofill:focus,
form.form input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 12rem rgba(var(--off-white), 1) inset !important;
}
form.form input:-webkit-autofill {
  -webkit-text-fill-color: rgba(var(--black), 1) !important;
}

button[type=submit] {
  text-transform: uppercase;
  width: 34rem;
  margin-top: 2rem;
}
@media (max-width: 1024px) {
  button[type=submit] {
    margin-top: 4rem;
    width: 100%;
  }
}

.firstname {
  background-color: transparent !important;
  color: transparent !important;
  border: none !important;
  border-bottom: none !important;
  outline: none !important;
  font-size: 1rem !important;
  padding: 0 !important;
  height: 2rem !important;
  margin-top: -2rem !important;
}
.firstname ~ label {
  color: transparent !important;
}

nav {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 9;
  overflow-y: scroll;
  color: rgba(var(--white), 1);
  opacity: 0;
  pointer-events: none;
  padding: 9rem 30rem;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  background: rgba(var(--black), 0.2);
}
@media (max-width: 1380px) {
  nav {
    position: fixed;
    flex-direction: column;
    justify-content: flex-start;
    z-index: 90;
    padding: 8rem 4rem;
  }
}
nav .nav__inner {
  height: 100%;
  width: 100%;
  gap: 2rem;
  padding: 1rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  justify-content: center;
}
@media (max-width: 1024px) {
  nav .nav__inner {
    display: block;
  }
}
nav ul.nav__menu {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: flex-start;
  width: 54rem;
  height: 48rem;
  padding: 5rem;
  color: rgba(var(--black), 1);
  background: rgba(var(--off-white), 1);
  box-shadow: 0 0 3rem rgba(var(--always-black), 0.04);
  gap: 2rem;
  border-radius: 4rem;
  opacity: 0;
  transform: scale(0.9);
  transition: transform 0s 0.2s cubic-bezier(0.22, 1, 0.16, 1), opacity 0.2s cubic-bezier(0.22, 1, 0.16, 1);
  transform-origin: center center;
}
@media (max-width: 1024px) {
  nav ul.nav__menu {
    box-shadow: 0 2rem 4rem rgba(var(--always-black), 0.1);
    gap: 4rem;
    width: 100%;
    padding: 10rem 5rem;
    height: -moz-fit-content;
    height: fit-content;
    border-radius: 10rem;
    margin-bottom: 3rem;
  }
}
nav ul.nav__menu li.menu__heading {
  margin-bottom: 2rem;
  color: rgba(var(--black), 0.7);
  text-transform: uppercase;
}
nav ul.nav__menu li {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
nav ul.nav__menu li svg path {
  fill: rgba(var(--black), 1);
  transition: fill 1s cubic-bezier(0.22, 1, 0.16, 1);
}

.menu__toggle {
  position: absolute;
  top: 0;
  right: 10rem;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 8rem;
  cursor: pointer !important;
  height: 14rem;
  background: rgba(var(--black), 1);
  border-radius: 0 0 0.5rem 0.5rem;
}
.menu__toggle:after {
  content: "";
  width: 100%;
  height: 0.15rem;
  width: 6rem;
  height: 0.2rem;
  background: rgba(var(--white), 1);
}
@media (max-width: 1024px) {
  .menu__toggle:after {
    height: 1rem;
    width: 10rem;
  }
}
@media (max-width: 1380px) {
  .menu__toggle {
    position: fixed;
  }
}
@media (max-width: 1024px) {
  .menu__toggle {
    box-shadow: 0 0 2rem rgba(var(--black), 0.1);
    z-index: 99;
    height: 16rem;
    width: 16rem;
    top: 4rem;
    right: 4rem;
    transform: none;
    transition: color 0s cubic-bezier(0.22, 1, 0.16, 1), background 0s cubic-bezier(0.22, 1, 0.16, 1);
    border-radius: 100%;
  }
}
.menu__toggle .lines {
  pointer-events: none;
  position: absolute;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  height: 100%;
  width: -moz-fit-content;
  width: fit-content;
  gap: 2rem;
}
@media (max-width: 1024px) {
  .menu__toggle .lines {
    gap: 3rem;
  }
}
.menu__toggle .lines span {
  width: 6rem;
  height: 0.2rem;
  background: rgba(var(--white), 1);
  transition: background 0s cubic-bezier(0.22, 1, 0.16, 1), transform 1s cubic-bezier(0.22, 1, 0.16, 1);
}
@media (max-width: 1024px) {
  .menu__toggle .lines span {
    height: 1rem;
    width: 10rem;
  }
}

.menu__active nav {
  opacity: 1;
  pointer-events: all;
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.16, 1);
}
.menu__active nav .nav__inner ul.nav__menu {
  transform: scale(1);
  opacity: 1;
  transition: transform 1s cubic-bezier(0.22, 1, 0.16, 1), opacity 0.6s cubic-bezier(0.22, 1, 0.16, 1);
}
.menu__active .menu__toggle:after {
  display: none;
}
.menu__active .menu__toggle .lines {
  gap: 0;
}
.menu__active .menu__toggle .lines span:nth-of-type(1) {
  transform: rotate(25deg) translateY(0.1rem);
}
.menu__active .menu__toggle .lines span:nth-of-type(2) {
  transform: rotate(-25deg) translateY(-0.1rem);
}
@media (max-width: 1024px) {
  .menu__active .menu__toggle .lines span:nth-of-type(1) {
    transform: rotate(45deg) translateY(0.5rem);
  }
  .menu__active .menu__toggle .lines span:nth-of-type(2) {
    transform: rotate(-45deg) translateY(-0.7rem);
  }
}

.page__tran__wrapper {
  display: none !important;
}

.testimonial__section {
  padding-top: calc(10rem + var(--headerHeight));
  padding-left: 30rem;
  padding-right: 30rem;
}
@media (max-width: 1024px) {
  .testimonial__section {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.testimonial__section .container h2 {
  text-align: center;
}
@media (max-width: 1024px) {
  .testimonial__section .container h2 {
    margin-bottom: 10rem;
  }
}
.testimonial__section .container .testimonials__card__wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  padding-top: 8rem;
}
@media (max-width: 1024px) {
  .testimonial__section .container .testimonials__card__wrapper {
    flex-direction: column-reverse;
  }
}
.testimonial__section .container .testimonials__card__wrapper .slider-container {
  height: 36rem;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  z-index: 3;
}
@media (max-width: 1024px) {
  .testimonial__section .container .testimonials__card__wrapper .slider-container {
    width: 100%;
    height: auto;
  }
}
.testimonial__section .container .testimonials__card__wrapper .slider-container .slide-item {
  height: -moz-fit-content;
  height: fit-content;
  width: 90rem;
  transition: opacity 0.4s cubic-bezier(0.22, 1, 0.16, 1), transform 0.2s cubic-bezier(0.22, 1, 0.16, 1);
  opacity: 0;
  transform: scale(0.99);
  transform-origin: center;
  position: absolute;
  display: flex;
}
@media (max-width: 1024px) {
  .testimonial__section .container .testimonials__card__wrapper .slider-container .slide-item {
    width: 90vw;
    height: 100%;
    display: none;
    position: relative;
  }
}
.testimonial__section .container .testimonials__card__wrapper .slider-container .slide-item.show-slide {
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.4s 0.1s cubic-bezier(0.22, 1, 0.16, 1), transform 0.4s 0.2s cubic-bezier(0.22, 1, 0.16, 1);
}
@media (max-width: 1024px) {
  .testimonial__section .container .testimonials__card__wrapper .slider-container .slide-item.show-slide {
    display: block;
  }
}
.testimonial__section .container .testimonials__card__wrapper .slider-container .slide-item figure {
  margin-right: 4rem;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  overflow: visible;
}
.testimonial__section .container .testimonials__card__wrapper .slider-container .slide-item figure .lazy-load-item {
  background: none;
}
.testimonial__section .container .testimonials__card__wrapper .slider-container .slide-item figure img {
  width: 12rem;
  height: 12rem;
}
.testimonial__section .container .testimonials__card__wrapper .slider-container .slide-item .text__wrap {
  display: flex;
  flex-direction: column;
}
.testimonial__section .container .testimonials__card__wrapper .slider-container .slide-item .text__wrap .name {
  margin-top: 4rem;
  font-weight: bold;
}
.testimonial__section .container .testimonials__card__wrapper .slider-container .slide-item .text__wrap .name:after {
  content: "★★★★★ - Google";
  display: block;
  margin-top: 1.2rem;
  color: rgb(210, 178, 20);
}
.testimonial__section .container .testimonials__card__wrapper .button-wrapper {
  width: -moz-fit-content;
  width: fit-content;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-left: 10rem;
  border-left: 1px solid rgba(var(--black), 0.3);
}
@media (max-width: 1024px) {
  .testimonial__section .container .testimonials__card__wrapper .button-wrapper {
    flex-direction: row-reverse;
    padding-left: 0;
    margin-bottom: 10rem;
  }
}
.testimonial__section .container .testimonials__card__wrapper .button-wrapper .pagination,
.testimonial__section .container .testimonials__card__wrapper .button-wrapper a.google__link {
  cursor: pointer;
  width: 6rem;
  height: 6rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1024px) {
  .testimonial__section .container .testimonials__card__wrapper .button-wrapper .pagination,
  .testimonial__section .container .testimonials__card__wrapper .button-wrapper a.google__link {
    width: 14rem;
    height: 14rem;
  }
}
.testimonial__section .container .testimonials__card__wrapper .button-wrapper .pagination:hover:after,
.testimonial__section .container .testimonials__card__wrapper .button-wrapper a.google__link:hover:after {
  transform: scale(0.9);
}
.testimonial__section .container .testimonials__card__wrapper .button-wrapper .pagination:after,
.testimonial__section .container .testimonials__card__wrapper .button-wrapper a.google__link:after {
  content: "";
  border: 1px solid rgba(var(--black), 0.2);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.16, 1);
  z-index: 3;
  border-radius: 1rem;
}
.testimonial__section .container .testimonials__card__wrapper .button-wrapper .pagination#previous:before, .testimonial__section .container .testimonials__card__wrapper .button-wrapper .pagination#next:before,
.testimonial__section .container .testimonials__card__wrapper .button-wrapper a.google__link#previous:before,
.testimonial__section .container .testimonials__card__wrapper .button-wrapper a.google__link#next:before {
  content: "";
  position: absolute;
  height: 1rem;
  width: 1rem;
  border-right: solid 2px currentColor;
  border-bottom: solid 2px currentColor;
}
@media (max-width: 1024px) {
  .testimonial__section .container .testimonials__card__wrapper .button-wrapper .pagination#previous:before, .testimonial__section .container .testimonials__card__wrapper .button-wrapper .pagination#next:before,
  .testimonial__section .container .testimonials__card__wrapper .button-wrapper a.google__link#previous:before,
  .testimonial__section .container .testimonials__card__wrapper .button-wrapper a.google__link#next:before {
    height: 2.2rem;
    width: 2.2rem;
  }
}
.testimonial__section .container .testimonials__card__wrapper .button-wrapper .pagination#previous:before,
.testimonial__section .container .testimonials__card__wrapper .button-wrapper a.google__link#previous:before {
  transform: rotate(135deg);
  margin-left: 0.8rem;
}
.testimonial__section .container .testimonials__card__wrapper .button-wrapper .pagination#next:before,
.testimonial__section .container .testimonials__card__wrapper .button-wrapper a.google__link#next:before {
  transform: rotate(-45deg);
  margin-right: 0.4rem;
}

footer {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-direction: column;
  transition: background 0s cubic-bezier(0.22, 1, 0.16, 1);
  z-index: -1;
}
@media (max-width: 1024px) {
  footer {
    height: 100%;
  }
}
footer .container {
  width: 100%;
  height: 54rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  z-index: 1;
  padding: 10rem 10rem 2.5rem 10rem;
  background: rgba(var(--always-black-3), 1);
  color: rgba(var(--always-white), 1);
  transition: background 0s cubic-bezier(0.22, 1, 0.16, 1), color 0s cubic-bezier(0.22, 1, 0.16, 1);
}
@media (max-width: 1024px) {
  footer .container {
    height: 100%;
    padding: 15rem 8rem 10rem 8rem;
  }
}
footer .container .row {
  width: 100%;
}
@media (max-width: 1024px) {
  footer .container .row {
    gap: 10rem;
  }
}
footer .container .row:nth-of-type(1) {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  footer .container .row:nth-of-type(1) {
    flex-direction: column;
  }
}
footer .container .row:nth-of-type(1) .column {
  justify-content: flex-start;
}
@media (max-width: 1024px) {
  footer .container .row:nth-of-type(1) .column {
    width: 100%;
    margin-bottom: 5rem;
  }
}
footer .container .row:nth-of-type(1) .column:nth-of-type(1) ul.social__links {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  margin-top: 5rem;
}
@media (max-width: 1024px) {
  footer .container .row:nth-of-type(1) .column:nth-of-type(1) ul.social__links {
    margin-top: 10rem;
  }
}
footer .container .row:nth-of-type(1) .column:nth-of-type(1) ul.social__links li.following__heading {
  color: rgba(var(--always-white), 0.7);
  transition: color 0s cubic-bezier(0.22, 1, 0.16, 1);
}
footer .container .row:nth-of-type(1) .column:nth-of-type(1) ul.social__links li.sharing__heading {
  color: rgba(var(--always-white), 0.7);
  transition: color 0s cubic-bezier(0.22, 1, 0.16, 1);
  margin-left: 2rem;
}
@media (max-width: 1024px) {
  footer .container .row:nth-of-type(1) .column:nth-of-type(1) ul.social__links li.sharing__heading {
    margin-left: 5rem;
  }
}
footer .container .row:nth-of-type(1) .column:nth-of-type(1) ul.social__links a svg {
  width: 1.6rem;
  height: 1.6rem;
}
@media (max-width: 1024px) {
  footer .container .row:nth-of-type(1) .column:nth-of-type(1) ul.social__links a svg {
    width: 5rem;
    height: 5rem;
  }
}
footer .container .row:nth-of-type(1) .column:nth-of-type(1) ul.social__links a svg path {
  fill: rgba(var(--always-white), 1);
  transition: fill 1s cubic-bezier(0.22, 1, 0.16, 1);
}
footer .container .row:nth-of-type(1) .column:nth-of-type(2) {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 10rem;
}
@media (max-width: 1024px) {
  footer .container .row:nth-of-type(1) .column:nth-of-type(2) {
    flex-direction: column;
  }
}
footer .container .row:nth-of-type(1) .column:nth-of-type(2) ul {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (max-width: 1024px) {
  footer .container .row:nth-of-type(1) .column:nth-of-type(2) ul {
    gap: 3rem;
  }
}
footer .container .row:nth-of-type(1) .column:nth-of-type(2) ul li.heading {
  margin-bottom: 1.5rem;
  opacity: 0.5;
  text-transform: uppercase;
}
footer .container .row:nth-of-type(2) {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  border-top: 1px solid rgba(var(--always-white), 0.1);
  padding-top: 2.5rem;
}
@media (max-width: 1024px) {
  footer .container .row:nth-of-type(2) {
    margin-top: 10rem;
    padding-top: 10rem;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }
}
footer .container .row:nth-of-type(2) > span {
  display: flex;
  justify-content: space-between;
  width: 100%;
  gap: 3rem;
}
@media (max-width: 1024px) {
  footer .container .row:nth-of-type(2) > span {
    width: 100%;
    flex-direction: column;
  }
}
footer .container .row:nth-of-type(2) > span .design__credit a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
}
footer .reveal__bottom {
  background: rgba(var(--always-black-2), 1);
  transition: background 0s cubic-bezier(0.22, 1, 0.16, 1);
  width: 100vw;
  height: 55rem;
  margin-top: -30rem;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 5rem;
}
@media (max-width: 1024px) {
  footer .reveal__bottom {
    height: -moz-fit-content;
    height: fit-content;
    margin-top: 0;
    align-items: center;
    justify-content: flex-start;
    padding: 10rem 8rem;
  }
}
footer .reveal__bottom .footer__logo {
  height: 12rem;
}
@media (max-width: 1024px) {
  footer .reveal__bottom .footer__logo {
    height: 18rem;
  }
}

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

header {
  position: fixed;
  top: 0;
  width: 100vw;
  z-index: 9;
  height: var(--headerHeight);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(var(--white), 1);
  color: rgba(var(--black), 1);
  transition: background 0s cubic-bezier(0.22, 1, 0.16, 1), color 0s cubic-bezier(0.22, 1, 0.16, 1), border-bottom 1s cubic-bezier(0.22, 1, 0.16, 1), box-shadow 1s cubic-bezier(0.22, 1, 0.16, 1);
  box-shadow: 0 0 1rem rgba(var(--always-black), 0.06);
}
@media (max-width: 1024px) {
  header {
    width: 100%;
    background: rgba(var(--white), 1);
    color: rgba(var(--black), 1);
  }
  header .container:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    transition: box-shadow 1s cubic-bezier(0.22, 1, 0.16, 1);
    z-index: 1;
    pointer-events: none;
  }
  header ul.header__socials li svg path {
    fill: rgba(var(--black), 1);
  }
  header ul.header__contact li svg path {
    fill: rgba(var(--black), 1);
  }
}
header .container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10rem;
  padding-right: 20rem;
  transition: background 0s cubic-bezier(0.22, 1, 0.16, 1);
}
@media (max-width: 1024px) {
  header .container {
    width: 100%;
    padding: 0 4rem;
  }
}
header .container .col {
  display: flex;
  align-items: center;
}
header .logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10rem;
  filter: brightness(0%);
}
header .logo a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto;
  width: 40rem;
  flex-direction: column;
  overflow: hidden;
  z-index: 1;
}
@media (max-width: 1024px) {
  header .logo a {
    width: 60rem;
  }
}
header .logo a img {
  width: 100%;
  height: 100%;
}

ul.header__socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
@media (max-width: 1024px) {
  ul.header__socials {
    display: none;
  }
}
ul.header__socials li a {
  width: 3.4rem;
  height: 3.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
ul.header__socials li a:hover:before {
  transform: scale(1.1);
}
ul.header__socials li a:before {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 100%;
  background: rgba(var(--black), 1);
  transition: background 0s cubic-bezier(0.22, 1, 0.16, 1), transform 1s cubic-bezier(0.22, 1, 0.16, 1);
}
ul.header__socials li a svg {
  height: 1.4rem;
  width: 1.4rem;
}
ul.header__socials li a svg path {
  fill: rgba(var(--white), 1) !important;
}

ul.header__contact {
  margin-left: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
@media (max-width: 1024px) {
  ul.header__contact {
    display: none;
  }
}
ul.header__contact li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1rem 2rem;
  border-radius: 6rem;
  border: 1px solid rgba(var(--black), 0.2);
  transition: border 1s cubic-bezier(0.22, 1, 0.16, 1);
}
ul.header__contact li svg {
  height: 1.4rem;
  width: auto;
}
ul.header__contact li svg path {
  fill: currentColor;
  transition: fill 1s cubic-bezier(0.22, 1, 0.16, 1);
}

.darkmode__button {
  color: rgba(var(--black), 1);
}

.header__active {
  box-shadow: 0 0 3rem rgba(var(--always-black), 0.06);
  box-shadow: 0 0 3rem rgba(var(--always-black), 1);
}

.about__page .about__main {
  padding-top: calc(10rem + var(--headerHeight));
}
.about__page .about__main .container {
  display: flex;
  flex-direction: row;
}
@media (max-width: 1024px) {
  .about__page .about__main .container {
    flex-direction: column;
    gap: 10rem;
  }
}
.about__page .about__main .container picture {
  width: 80rem;
  height: 140rem;
}
@media (max-width: 1024px) {
  .about__page .about__main .container picture {
    width: 100%;
    height: 200rem;
  }
}
.about__page .about__main .container picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about__page .about__main .container .row {
  gap: 3rem;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1024px) {
  .about__page .about__main .container .row {
    flex-direction: column;
    gap: 5rem;
  }
}
.about__page .about__main .container p.description {
  max-width: 80rem;
  margin-bottom: 5rem;
}
@media (max-width: 1024px) {
  .about__page .about__main .container p.description {
    max-width: 100%;
    margin-bottom: 10rem;
  }
}

.contact__page section.contact__main {
  padding-top: calc(10rem + var(--headerHeight));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.contact__page section.contact__main .container {
  flex-direction: row;
  align-items: flex-start;
  gap: 20rem;
}
@media (max-width: 1024px) {
  .contact__page section.contact__main .container {
    flex-direction: column;
    gap: 10rem;
  }
}
.contact__page section.contact__main .container .column {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  width: -moz-fit-content;
  width: fit-content;
  height: 100%;
}
@media (max-width: 1024px) {
  .contact__page section.contact__main .container .column {
    width: 100%;
    align-items: center;
    justify-content: center;
  }
}
.contact__page section.contact__main .container .column h1 {
  width: 50rem;
  margin-bottom: 10rem;
}
@media (max-width: 1024px) {
  .contact__page section.contact__main .container .column h1 {
    width: 100%;
    text-align: center;
    margin-bottom: 0;
  }
}
.contact__page section.contact__main .container .column .row ul.contact__menu {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
}
@media (max-width: 1024px) {
  .contact__page section.contact__main .container .column .row ul.contact__menu {
    gap: 4rem;
    display: none;
  }
}
.contact__page section.contact__main .container .column .row ul.contact__menu li {
  display: flex;
  align-items: center;
}
.contact__page section.contact__main .container .column .row ul.contact__menu li svg path {
  fill: rgba(var(--black), 1);
}
.contact__page section.contact__main .container .column .row ul.contact__menu li a {
  transition: color 0s cubic-bezier(0.22, 1, 0.16, 1);
}

.home__page section.hero {
  background: rgba(var(--white), 1);
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: var(--headerHeight);
}
@media (max-width: 1024px) {
  .home__page section.hero {
    height: 180rem !important;
    padding-top: calc(var(--headerHeight) - 20rem);
  }
}
.home__page section.hero figure {
  z-index: -1;
  width: 100%;
  height: 100%;
  margin: 0 auto;
}
.home__page section.hero figure:after {
  content: "";
  background: rgba(var(--always-black), 0.5);
}
.home__page section.hero figure img {
  width: 100%;
  height: 100%;
}
@media (max-width: 1024px) {
  .home__page section.hero {
    height: 100%;
    margin-top: 10rem;
  }
}
.home__page section.hero .container {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(var(--always-white), 1);
  z-index: 2;
  position: absolute;
  height: -moz-fit-content;
  height: fit-content;
  gap: 3rem;
}
@media (max-width: 1024px) {
  .home__page section.hero .container {
    gap: 5rem;
  }
}
.home__page section.hero .container h1 {
  text-align: center;
  text-transform: uppercase;
}
@media (max-width: 1024px) {
  .home__page section.hero .container h1 {
    width: 100%;
  }
}
.home__page section.hero .container p {
  text-align: center;
  width: 100rem;
}
@media (max-width: 1024px) {
  .home__page section.hero .container p {
    width: 100%;
  }
}
.home__page section.hero .scroll__to__wrapper {
  z-index: 3;
  bottom: 10rem;
  left: 50%;
  transform: translateX(-50%);
  flex-direction: column-reverse;
}
@media (max-width: 1024px) {
  .home__page section.hero .scroll__to__wrapper {
    bottom: 20rem;
  }
}
.home__page section.hero .scroll__to__wrapper > span {
  color: rgba(var(--always-white), 1);
}
.home__page section.services .container h2 {
  width: 100%;
  text-align: center;
}
@media (max-width: 1024px) {
  .home__page section.services .container h2 {
    margin-bottom: 10rem;
  }
}
.home__page section.services .container .row .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 5rem;
  width: 100%;
}
@media (max-width: 1024px) {
  .home__page section.services .container .row .grid {
    display: flex;
    flex-direction: column;
    gap: 5rem;
  }
}
.home__page section.services .container .row .grid a.grid__item {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  border-radius: 4rem;
  z-index: 1;
  overflow: hidden;
  box-shadow: 0 0 3rem rgba(var(--always-black), 0.04);
  background: rgba(var(--always-black), 1);
  transition: background 0s cubic-bezier(0.22, 1, 0.16, 1), box-shadow 1s cubic-bezier(0.22, 1, 0.16, 1), transform 1s cubic-bezier(0.22, 1, 0.16, 1), z-index 1s cubic-bezier(0.22, 1, 0.16, 1);
  transform-origin: center;
}
@media (max-width: 1024px) {
  .home__page section.services .container .row .grid a.grid__item {
    border-radius: 10rem;
  }
}
@media (min-width: 768px) {
  .home__page section.services .container .row .grid a.grid__item:hover {
    box-shadow: 0 2rem 4rem rgba(var(--always-black), 0.2);
    transform: translate3d(0, -1rem, 0) scale(1.01);
    z-index: 9;
  }
}
.home__page section.services .container .row .grid a.grid__item figure {
  height: 34rem;
  overflow: hidden;
  z-index: 1;
}
@media (max-width: 1024px) {
  .home__page section.services .container .row .grid a.grid__item figure {
    height: 80rem;
  }
}
.home__page section.services .container .row .grid a.grid__item span.text {
  padding: 3rem 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1024px) {
  .home__page section.services .container .row .grid a.grid__item span.text {
    padding: 7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
}
.home__page section.services .container .row .grid a.grid__item span.text span.text__heading {
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  transition: color 0s cubic-bezier(0.22, 1, 0.16, 1);
  text-align: center;
  color: rgba(var(--always-white), 1);
}
.home__page .instagram__sect {
  background: rgba(var(--white), 1);
}
.home__page .instagram__sect .container {
  margin-bottom: 5rem;
  align-items: center;
}
.home__page .instagram__sect .container h2 {
  text-align: center;
}
@media (max-width: 1024px) {
  .home__page .instagram__sect .container h2 {
    margin-bottom: 10rem;
  }
}
.home__page .instagram__sect .grid {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: grid;
  justify-items: center;
  grid-template-columns: repeat(4, 1fr);
  padding: 0 10rem;
}
@media (max-width: 1024px) {
  .home__page .instagram__sect .grid {
    display: flex;
    flex-direction: column;
    gap: 5rem;
    padding: 0;
  }
}
.home__page .instagram__sect .grid .grid__item {
  height: 40rem;
  width: 40rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  border-radius: 2rem;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .home__page .instagram__sect .grid .grid__item {
    height: 100rem;
    width: 90vw;
    margin: 0 auto;
    border-radius: 4rem;
  }
}
.home__page .instagram__sect .grid .grid__item figure {
  z-index: -1;
}
.home__page .instagram__sect .grid .grid__item figure img {
  filter: brightness(60%);
}
.home__page .instagram__sect .grid .grid__item svg {
  position: absolute;
  z-index: 1;
  width: 4rem;
  height: 4rem;
}
@media (max-width: 1024px) {
  .home__page .instagram__sect .grid .grid__item svg {
    width: 8rem;
    height: 8rem;
  }
}

.policy__page section.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: -moz-fit-content;
  height: fit-content;
  padding-bottom: 10rem;
  padding-top: calc(10rem + var(--headerHeight));
}
@media (max-width: 1024px) {
  .policy__page section.hero {
    min-height: 200rem;
  }
}
.policy__page section.hero .company-name:after {
  content: "Edwards Carpentry & Build";
  color: rgba(var(--black), 1);
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}
.policy__page section.hero a {
  color: rgba(var(--black), 1);
}
.policy__page section.hero .company-website:after {
  content: "https://edwardscarpentrybuild.com";
  color: rgba(var(--black), 1);
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}
.policy__page section.hero .container {
  align-items: center;
}
@media (max-width: 1024px) {
  .policy__page section.hero .container {
    padding: 0 4rem;
  }
}
.policy__page section.hero .container h1 {
  text-align: center;
  max-width: 120rem;
  line-height: 1.2;
}
.policy__page section.hero .container .button {
  margin-top: 3rem;
}
.policy__page section.hero .container p.description {
  margin-top: 5rem;
  max-width: 120rem;
  line-height: 1.5;
}
.policy__page section.hero .container p.description a:hover {
  text-decoration: underline;
}

.project__page section.project__main {
  padding-top: calc(10rem + var(--headerHeight));
}
.project__page section.project__main .container {
  align-items: center;
  justify-content: center;
  gap: 5rem;
}
.project__page section.project__main .container .row:nth-of-type(1) {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2.5rem;
}
.project__page section.project__main .container .row:nth-of-type(1) .heading__wrapper {
  align-items: center;
}
.project__page section.project__main .container .row:nth-of-type(1) p.description {
  max-width: 100rem;
}
@media (max-width: 1024px) {
  .project__page section.project__main .container .row:nth-of-type(1) p.description {
    text-align: center;
    max-width: 100%;
  }
}
.project__page section.project__main .container .row:nth-of-type(2) {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
@media (max-width: 1024px) {
  .project__page section.project__main .container .row:nth-of-type(2) {
    gap: 5rem;
    display: flex;
    flex-direction: column;
  }
}
.project__page section.project__main .container .row:nth-of-type(2) figure {
  height: 50rem;
  z-index: 1;
  overflow: hidden;
  border-radius: 4rem;
}
@media (max-width: 1024px) {
  .project__page section.project__main .container .row:nth-of-type(2) figure {
    height: 100%;
    width: 100%;
    border-radius: 10rem;
  }
}
.project__page section.project__main .container .row:nth-of-type(3) {
  display: flex;
  align-items: center;
  justify-content: center;
}

.services__page .services__main .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: var(--headerHeight);
}
.services__page .services__main .container .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 5rem;
  width: 100%;
}
@media (max-width: 1024px) {
  .services__page .services__main .container .grid {
    display: flex;
    flex-direction: column;
    gap: 5rem;
    margin-top: 10rem;
  }
}
.services__page .services__main .container .grid a.grid__item {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  border-radius: 4rem;
  z-index: 1;
  overflow: hidden;
  box-shadow: 0 0 3rem rgba(var(--always-black), 0.04);
  background: rgba(var(--always-black), 1);
  transition: background 0s cubic-bezier(0.22, 1, 0.16, 1), box-shadow 1s cubic-bezier(0.22, 1, 0.16, 1), transform 1s cubic-bezier(0.22, 1, 0.16, 1), z-index 1s cubic-bezier(0.22, 1, 0.16, 1);
  transform-origin: center;
}
@media (max-width: 1024px) {
  .services__page .services__main .container .grid a.grid__item {
    border-radius: 10rem;
  }
}
@media (min-width: 768px) {
  .services__page .services__main .container .grid a.grid__item:hover {
    box-shadow: 0 2rem 4rem rgba(var(--always-black), 0.2);
    transform: translate3d(0, -1rem, 0) scale(1.01);
    z-index: 9;
  }
}
.services__page .services__main .container .grid a.grid__item figure {
  height: 34rem;
  overflow: hidden;
  z-index: 1;
}
@media (max-width: 1024px) {
  .services__page .services__main .container .grid a.grid__item figure {
    height: 80rem;
  }
}
.services__page .services__main .container .grid a.grid__item span.text {
  padding: 3rem 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1024px) {
  .services__page .services__main .container .grid a.grid__item span.text {
    padding: 7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
}
.services__page .services__main .container .grid a.grid__item span.text span.text__heading {
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  transition: color 0s cubic-bezier(0.22, 1, 0.16, 1);
  text-align: center;
  color: rgba(var(--always-white), 1);
}

.service__page section.hero {
  background: black;
  padding-top: var(--headerHeight);
  height: 80rem;
}
@media (max-width: 1024px) {
  .service__page section.hero {
    height: 120rem;
  }
}
.service__page section.hero .container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  gap: 2rem;
  color: rgba(var(--always-white), 1);
}
@media (max-width: 1024px) {
  .service__page section.hero .container {
    gap: 5rem;
  }
}
.service__page section.hero picture {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.service__page section.hero picture img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  height: 100%;
  filter: brightness(70%);
}
.service__page section.gallery .container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5rem;
}
@media (max-width: 1024px) {
  .service__page section.gallery .container {
    gap: 10rem;
  }
}
.service__page section.gallery .container .container__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  gap: 3rem;
  width: 120rem;
}
@media (max-width: 1024px) {
  .service__page section.gallery .container .container__inner {
    gap: 7.5rem;
    width: 100%;
  }
}
.service__page section.gallery .container .grid {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
@media (max-width: 1024px) {
  .service__page section.gallery .container .grid {
    flex-direction: column;
    gap: 3rem;
  }
}
.service__page section.gallery .container .grid picture {
  display: flex;
  width: 40rem;
  height: 40rem;
}
@media (max-width: 1024px) {
  .service__page section.gallery .container .grid picture {
    width: 100%;
    height: 90rem;
  }
}
.service__page section.gallery .container .grid picture img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

html.has-scroll-smooth,
.has-scroll-smooth body {
  overflow: hidden;
}

html.has-scroll-dragging {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.has-scroll-smooth [data-scroll-container] {
  min-height: 100vh;
  width: 100%;
}
@media (max-width: 1024px) {
  .has-scroll-smooth [data-scroll-container] {
    width: 100vw;
  }
}

.c-scrollbar {
  position: fixed;
  right: 0;
  top: 0;
  width: 8px;
  height: 100vh;
  transform-origin: center right;
  opacity: 0;
  background: rgba(175, 175, 175, 0.2);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  z-index: 9999;
}

.c-scrollbar:hover,
.has-scroll-scrolling .c-scrollbar,
.has-scroll-dragging .c-scrollbar {
  opacity: 1;
}

.has-scroll-scrolling .c-scrollbar_thumb {
  opacity: 1 !important;
}

[data-scroll-direction=horizontal] .c-scrollbar {
  width: 100%;
  height: 8px;
  top: auto;
  bottom: 0;
  transform: scaleY(1);
}

[data-scroll-direction=horizontal] .c-scrollbar:hover {
  transform: scaleY(1.3);
}

.c-scrollbar_thumb {
  opacity: 1;
  position: absolute;
  top: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.75);
  width: 8px;
  border-radius: 1px;
  cursor: grab;
}

.has-scroll-dragging .c-scrollbar_thumb {
  cursor: grabbing;
}

[data-scroll-direction=horizontal] .c-scrollbar_thumb {
  right: auto;
  bottom: 0;
}

html,
body {
  position: fixed;
  overscroll-behavior: none;
  width: 100vw;
}
@media (max-width: 1380px) {
  html,
  body {
    position: relative !important;
    overflow: initial !important;
    overscroll-behavior: auto !important;
  }
}

[data-scroll-container] {
  overflow: hidden !important;
}
@media (max-width: 1380px) {
  [data-scroll-container] {
    overflow: initial !important;
  }
}

[data-scroll-section],
[data-scroll-speed] {
  will-change: transform !important;
}/*# sourceMappingURL=main.css.map */