@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Libre+Bodoni:ital,wght@0,400..700;1,400..700&display=swap");
@font-face {
  font-family: "paragraph";
  src: url("../fonts/Paragraph.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
:root {
  --heading-font: "Libre Bodoni", serif;
  --body-font: "Josefin Sans", sans-serif;
  --deocrative-font: "paragraph";
  --main-light: #f0f0ee;
  --main-mid: #c6bebe;
  --main-dark: #666161;
  --hover: #d9d9d8;
}

::-moz-selection {
  background-color: var(--hover);
  color: var(--main-dark);
}

::selection {
  background-color: var(--hover);
  color: var(--main-dark);
}

/* width */
::-webkit-scrollbar {
  width: 3px;
}

/* Track */
::-webkit-scrollbar-track {
  background: unset;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #888;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

body {
  margin: 0 auto;
  padding: 0;
  letter-spacing: 1px;
  font-family: var(--body-font);
  font-weight: 350;
  color: var(--main-dark);
  background-color: var(--main-light);
  overflow-x: hidden;
  max-width: 1920px;
}
body .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}
body .cookie-banner__actions {
  display: flex;
  gap: 2rem;
  flex-direction: column;
}
body .form-error {
  width: 280px;
  display: none;
  position: absolute;
  bottom: -10px;
  background-color: #fee2e2;
  border: 1px solid #dc2626;
  padding: 5px 10px;
}
body #cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  max-width: 200px;
  background: var(--hover);
  color: var(--main-dark);
  padding: 1.5rem;
  z-index: 999;
  font-size: 0.85rem;
  line-height: 1.6;
  font-weight: 350;
  display: none;
}
@media (max-width: 600px) {
  body #cookie-banner {
    bottom: 80px;
  }
}
body .form__contact-field-wrap {
  position: relative;
  width: 100%;
  margin: 1rem 0;
}
body .form__contact-field-wrap .form__contact-field {
  width: 100%;
  margin: 0;
  transition: opacity 0.3s ease;
}
body .form__contact-field-wrap .form__contact-field--hidden {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}
body .modal {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-sizing: border-box;
  padding: 1rem;
}
body .modal.active {
  display: flex;
}
body .modal__content {
  background-color: var(--main-light);
  position: relative;
  max-height: 80vh;
  overflow-y: auto;
  font-weight: 350;
  letter-spacing: 1px;
  line-height: 20px;
  box-sizing: border-box;
  margin: auto;
  width: 100%;
  max-width: 800px;
}
body .modal__content h4 {
  font-family: var(--heading-font);
}
body .modal__header {
  display: flex;
  flex-direction: row;
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  background-color: var(--main-light);
  border-bottom: 1px solid var(--hover);
}
body .modal__close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--main-dark);
}
body .modal__title {
  margin-top: 10px;
  text-align: center;
  width: 100%;
  margin-bottom: 0;
}
body .modal__body {
  letter-spacing: 0.5px;
}
body .modal__body p {
  border-bottom: 1px solid var(--hover);
  padding-bottom: 1rem;
}
body .modal__body-services {
  padding: 1rem;
}
body .modal__body-services__item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
body .modal__body-services__item-content {
  flex: 1;
}
body .modal__body-services__item-content__block {
  padding: 0 2rem;
}
body .modal__body-services__item-content__block-body {
  border-bottom: 1px solid var(--hover);
  padding-bottom: 2rem;
}
body .modal__body-services__item-content__block-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
body .modal__body-services__item-content__block-header span {
  font-family: var(--heading-font);
  color: var(--hover);
  font-style: italic;
}
body .modal__body-services__item-content__block-header h4 {
  font-family: var(--body-font);
  text-transform: uppercase;
  font-weight: 350;
  font-size: 10pt;
}
body .modal__body-services__item-content__block-body__quote {
  font-family: var(--heading-font);
  font-size: 18pt;
  text-align: center;
  line-height: 35px;
}
body .modal__body-services__item-content__block-body__context {
  font-weight: 320;
  padding: 1rem 0;
  line-height: 25px;
}
body .modal__body-services__item-content__block-body__metrics {
  display: flex;
  flex-direction: row;
  padding-bottom: 1rem;
}
body .modal__body-services__item-content__block-body__metrics .metric {
  width: 60px;
  height: 60px;
  background-color: var(--main-mid);
  padding: 1rem;
  border-radius: 3px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-right: 1rem;
}
body .modal__body-services__item-content__block-body__metrics .metric__value {
  font-family: var(--heading-font);
  font-size: 20pt;
}
body .modal__body-services__item-content__block-body__metrics .metric__label {
  font-size: 8pt;
  line-height: 12px;
  padding-top: 7px;
}
body .modal__body-services__item-content__block-body__bullet ul li {
  border-left: 3px solid var(--main-mid);
  font-weight: 400;
  margin-top: 1rem;
  padding-left: 1rem;
}
body .modal__body-learn {
  display: flex;
  flex-direction: column;
  padding: 1rem;
}
body .modal__body-learn__item-header {
  display: flex;
  align-items: self-end;
}
body .modal__body-learn__item-header > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: var(--main-mid);
  color: #fff;
  font-size: 0.9rem;
  line-height: 1;
  letter-spacing: 0;
}
body .modal__body-learn h4 {
  padding-left: 1rem;
  margin-bottom: 0;
  text-transform: uppercase;
}
body .modal__body-privacy, body .modal__body-terms {
  padding: 1rem;
}
body .modal__body-explainer {
  padding: 1.5rem;
}
body .modal__body-explainer p {
  border-bottom: 0;
  padding-bottom: 1rem;
  margin: 0;
  font-size: 15px;
}
body .modal__body-explainer ul li {
  border-top: 1px solid var(--hover);
  padding: 2rem 0;
}
body .modal__body-explainer ul li:last-child {
  border-bottom: 1px solid var(--hover);
  margin-bottom: 1rem;
}
body .modal__body-explainer ul li span {
  padding-right: 1rem;
  font-weight: 600;
  font-style: italic;
  color: var(--main-mid);
  font-family: var(--heading-font);
}
body .modal__body-enquiry {
  letter-spacing: 0.6px;
}
body .modal__body-enquiry--multistep {
  padding: 1.5rem;
}
body .modal__body-enquiry__progress {
  height: 2px;
  background: var(--hover);
  margin-bottom: 1.5rem;
  border-radius: 2px;
}
body .modal__body-enquiry__progress-fill {
  height: 100%;
  background: var(--main-dark);
  border-radius: 2px;
  transition: width 0.3s ease;
  width: 20%;
}
body .modal__body-enquiry__step {
  display: none;
}
body .modal__body-enquiry__step.active {
  display: block;
}
body .modal__body-enquiry__step-label {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--main-mid);
  margin-bottom: 1rem;
  border-bottom: none;
  padding-bottom: 0;
}
body .modal__body-enquiry__greeting {
  font-size: 16px;
  font-weight: 500;
  color: var(--main-dark);
  margin-bottom: 0.25rem;
  border-bottom: none;
}
body .modal__body-enquiry__sub {
  font-size: 13px;
  color: var(--main-mid);
  margin-bottom: 1rem;
  border-bottom: none;
  padding-bottom: 0;
}
body .modal__body-enquiry__field {
  margin-bottom: 1.25rem;
}
body .modal__body-enquiry__field input,
body .modal__body-enquiry__field textarea {
  width: 100%;
  margin: 0;
}
body .modal__body-enquiry__field textarea {
  border: 0;
  border-bottom: 1px solid var(--main-dark);
  background: unset;
  font-family: inherit;
  letter-spacing: 2px;
  padding: 10px 5px;
  resize: vertical;
  min-height: 80px;
  width: 100%;
}
body .modal__body-enquiry__field textarea::-moz-placeholder {
  font-family: inherit;
  letter-spacing: 2px;
  font-weight: 350;
}
body .modal__body-enquiry__field textarea::placeholder {
  font-family: inherit;
  letter-spacing: 2px;
  font-weight: 350;
}
body .modal__body-enquiry__field textarea:focus {
  outline: none;
}
body .modal__body-enquiry__field-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
  border-bottom: none;
  padding-bottom: 0;
}
body .modal__body-enquiry__toggle {
  display: flex;
  gap: 8px;
}
body .modal__body-enquiry__toggle-btn {
  flex: 1;
  height: 40px;
  width: auto;
  border: 1px solid var(--hover);
  background: transparent;
  color: var(--main-dark);
  font-family: inherit;
  font-size: 13px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: 0.2s ease;
  outline: none;
}
body .modal__body-enquiry__toggle-btn:hover {
  border-color: var(--main-dark);
  outline: none;
}
body .modal__body-enquiry__toggle-btn.active {
  background: var(--main-dark);
  color: var(--main-light);
  border-color: var(--main-dark);
}
body .modal__body-enquiry__radios {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
body .modal__body-enquiry__radio-btn {
  padding: 0.4rem 0.85rem;
  height: auto;
  width: auto;
  border: 1px solid var(--hover);
  background: transparent;
  color: var(--main-mid);
  font-family: inherit;
  font-size: 12px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: 0.2s ease;
  outline: none;
}
body .modal__body-enquiry__radio-btn:hover {
  border-color: var(--main-dark);
  color: var(--main-dark);
  outline: none;
}
body .modal__body-enquiry__radio-btn.active {
  border-color: var(--main-dark);
  color: var(--main-dark);
  font-weight: 500;
  outline: none;
}
body .modal__body-enquiry__concerns {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 0.5rem;
}
body .modal__body-enquiry__concern-item {
  border: 1px solid var(--hover);
  padding: 0.75rem 1rem;
  cursor: pointer;
  transition: border-color 0.15s;
  font-size: 13px;
  color: var(--main-dark);
  letter-spacing: 1px;
}
body .modal__body-enquiry__concern-item:hover {
  border-color: var(--main-dark);
}
body .modal__body-enquiry__concern-item.active {
  border-color: var(--main-dark);
  background: var(--hover);
}
body .modal__body-enquiry__concern-item.active .virtual-consultation-item__form-page-examples,
body .modal__body-enquiry__concern-item.active .cost-calculator-item__form-page-examples {
  display: block;
  color: var(--main-dark);
}
body .modal__body-enquiry__concern-item.active .virtual-consultation-item__form-page-examples a,
body .modal__body-enquiry__concern-item.active .cost-calculator-item__form-page-examples a {
  color: var(--main-dark);
}
body .modal__body-enquiry__concern-item.active .virtual-consultation-item__form-page-examples a:hover,
body .modal__body-enquiry__concern-item.active .cost-calculator-item__form-page-examples a:hover {
  color: var(--hover);
}
body .modal__body-enquiry__concern-followup {
  display: none;
  margin-top: 0.6rem;
}
body .modal__body-enquiry__concern-followup.visible {
  display: block;
}
body .modal__body-enquiry__concern-followup input[type=text] {
  width: 100%;
  margin: 0;
  font-size: 12px;
}
body .modal__body-enquiry__nav {
  display: flex;
  gap: 8px;
  margin-top: 1.5rem;
}
body .modal__body-enquiry__back {
  padding: 0 1rem;
  height: 50px;
  width: auto;
  border: 1px solid var(--hover);
  background: transparent;
  color: var(--main-dark);
  font-family: inherit;
  font-size: 13px;
  letter-spacing: 1px;
  cursor: pointer;
  outline: none;
}
body .modal__body-enquiry__back:hover {
  border-color: var(--main-dark);
  outline: none;
}
body .modal__body-enquiry__submit {
  flex: 1;
  height: 50px;
  width: auto;
  border: none;
  background: var(--main-dark);
  color: var(--main-light);
  font-family: inherit;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  outline: none;
}
body .modal__body-enquiry__submit:hover {
  outline: none;
  background: var(--main-mid);
}
body .modal__body-enquiry__error {
  font-size: 12px;
  color: #dc2626;
  margin-top: 0.35rem;
  display: none;
  border-bottom: none;
  padding-bottom: 0;
}
body .modal__body-enquiry__error.visible {
  display: block;
}
body .modal__body-enquiry__note {
  font-size: 11px;
  font-style: italic;
  color: var(--main-mid);
  text-align: center;
  margin-top: 0.75rem;
  border-bottom: none;
  padding-bottom: 0;
}
body .modal__body-enquiry__method {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 36px;
  margin-top: 0.5rem;
}
body .modal__body-enquiry__method-option {
  cursor: pointer;
}
body .modal__body-enquiry__method-input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
}
body .modal__body-enquiry__method-input:checked + .modal__body-enquiry__method-text {
  color: var(--main-dark);
  border-bottom-color: var(--main-dark);
}
body .modal__body-enquiry__method-input:focus-visible + .modal__body-enquiry__method-text {
  outline: 2px solid var(--main-dark);
  outline-offset: 4px;
}
body .modal__body-enquiry__method-text {
  display: inline-block;
  padding-bottom: 6px;
  font-size: 13px;
  letter-spacing: 1px;
  color: var(--main-mid);
  border-bottom: 1px solid transparent;
  transition: 0.3s ease;
}
body .modal__body-enquiry__privacy {
  text-align: center;
  font-size: 11px;
  font-style: italic;
  line-height: 22px;
}
body .modal__body-enquiry__thanks {
  padding: 3rem 1rem;
  text-align: center;
}
body .modal__body-enquiry__thanks h3 {
  font-family: var(--heading-font);
  font-style: italic;
  font-weight: 300;
  font-size: 16pt;
  line-height: 34px;
  margin: 0 0 1rem;
}
body .modal__body-enquiry__thanks p {
  margin: 0;
  border-bottom: 0;
  padding-bottom: 0;
  font-size: 15px;
  line-height: 32px;
}
body .modal__body-project {
  display: flex;
  flex-direction: column;
  position: relative;
}
body .modal__body-project h3 {
  font-size: 1.17em;
  margin-block-start: 0;
  margin-block-end: 0;
  font-family: var(--heading-font);
  font-weight: 350;
}
body .modal__body-project h4 {
  font-family: var(--heading-font);
  color: var(--hover);
  font-weight: 300;
  display: block;
  margin-block-start: 0;
  margin-block-end: 0;
  padding-left: 0 !important;
  font-style: italic;
}
body .modal__body-project__visit {
  position: sticky;
  bottom: 0;
  width: 100%;
  background-color: var(--main-light);
  border-top: 1px solid var(--hover);
  padding: 1rem;
  text-align: center;
  padding: 1rem 0;
}
body .modal__body-project__visit a {
  transition: 0.4s ease;
}
body .modal__body-project__visit a:hover span {
  transform: translateX(20px) !important;
}
body .modal__body-project__synopsis {
  padding: 1rem;
}
body .modal__body-project__synopsis span {
  font-weight: 300 !important;
  font-style: italic !important;
}
body .modal__body-project__performance {
  position: relative;
  padding: 1rem;
  border-top: 1px solid var(--hover);
  padding-top: 4rem;
}
body .modal__body-project__performance-header {
  display: flex;
  justify-content: space-between;
  color: var(--hover) !important;
  text-transform: uppercase !important;
  font-style: italic;
}
body .modal__body-project__performance::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.55));
  pointer-events: none;
}
body .modal__body-project__performance img {
  width: 100%;
  padding-top: 1rem;
}
body .modal__body-project__performance span {
  all: unset !important;
}
body .modal__body-project__colours {
  width: 100%;
  margin: 1rem 0;
  text-align: center;
}
body .modal__body-project__colours ul {
  display: flex;
  flex-direction: row;
  text-align: center;
  justify-content: center;
  gap: 2rem;
  padding-top: 2rem;
  flex-wrap: wrap;
}
body .modal__body-project__colours ul li .colour__swatch {
  width: 85px;
  height: 125px;
  transition: 0.4s ease;
  border-radius: 7px;
  border: 1px solid var(--hover);
}
body .modal__body-project__colours ul li .colour__swatch:hover {
  transform: translateY(-2px);
}
body .modal__body-project__colours ul li .colour__info {
  font-weight: 300;
  font-style: italic;
  color: var(--hover);
  padding-top: 5px;
  text-align: left;
}
body .modal__body-project__brochures {
  padding: 1rem;
  padding-top: 4rem;
  border-top: 1px solid var(--hover);
}
body .modal__body-project__brochures-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding-top: 1rem;
}
@media (max-width: 515px) {
  body .modal__body-project__brochures-block {
    display: flex;
    flex-direction: column;
  }
}
body .modal__body-project__brochures-block__left img, body .modal__body-project__brochures-block__right img {
  max-width: 380px;
  margin: auto;
  width: 100%;
  border-radius: 6px;
  border: 1px solid var(--hover);
  transition: 0.4s ease;
}
body .modal__body-project__brochures-block__left img:hover, body .modal__body-project__brochures-block__right img:hover {
  transform: scale(1.01);
}
body .modal__body-project__brochures-block__right-info {
  background-color: var(--main-mid);
  border-radius: 7px;
  padding: 1rem;
}
body .modal__body-project__usp {
  width: 100%;
  padding: 1rem 0;
}
body .modal__body-project__usp ul {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  padding: 1rem;
}
@media (max-width: 515px) {
  body .modal__body-project__usp ul {
    text-align: center;
    flex-direction: column;
  }
}
body .modal__body-project__usp ul li {
  position: relative;
  padding: 0 2rem;
}
body .modal__body-project__usp ul li:first-of-type {
  border-right: 1px solid var(--hover);
  padding-right: 3rem;
}
@media (max-width: 515px) {
  body .modal__body-project__usp ul li:first-of-type {
    padding: 0;
    padding-bottom: 1rem;
    border: unset;
  }
}
body .modal__body-project__usp ul li:last-of-type {
  border-left: 1px solid var(--hover);
  padding-left: 3rem;
}
@media (max-width: 515px) {
  body .modal__body-project__usp ul li:last-of-type {
    padding: 0;
    padding-top: 1rem;
    border: unset;
  }
}
body .modal__body-project__header {
  position: relative;
}
body .modal__body-project__header img {
  width: 100%;
  display: block;
}
body .modal__body-project__header-info {
  margin-left: 1rem;
  position: absolute;
  bottom: 35px;
  z-index: 2;
}
body .modal__body-project__header-info > h3 {
  color: var(--main-light);
  font-style: italic;
  text-transform: uppercase;
}
body .modal__body-project__header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.55));
  pointer-events: none;
}
body input {
  background-color: unset;
  border: 0;
  border-bottom: 1px solid var(--main-dark);
  font-family: inherit;
  letter-spacing: 2px;
  padding: 10px 5px;
}
body input::-moz-placeholder {
  font-family: inherit;
  letter-spacing: 2px;
  font-weight: 350;
}
body input::placeholder {
  font-family: inherit;
  letter-spacing: 2px;
  font-weight: 350;
}
body input:focus {
  outline: none;
}
body a {
  color: inherit;
  font-family: inherit;
  letter-spacing: inherit;
  text-decoration: none;
}
body button {
  border: 1px solid transparent;
  font-family: var(--body-font);
  color: var(--main-light);
  background-color: var(--main-dark);
  width: 200px;
  height: 50px;
  text-transform: uppercase;
  cursor: pointer;
  outline: 2px solid transparent;
  outline-offset: 4px;
  transition: outline 0.2s ease;
}
body button:hover {
  outline: 2px solid var(--main-dark);
}
body ul {
  margin-block-start: 0;
  margin-block-end: 0;
  padding-inline-start: 0;
}
body ul li {
  list-style: none;
}
body h1,
body .logo {
  font-family: var(--heading-font);
  font-weight: 100;
  font-size: 35pt;
  font-weight: 100;
  line-height: 50px;
  text-transform: uppercase;
}
body h2 {
  font-family: var(--heading-font);
  font-size: 28pt;
  font-weight: 100;
  line-height: 50px;
  text-transform: uppercase;
}
body .mode-bar {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: flex-end;
  padding: 0.4rem 1rem;
  background-color: var(--main-light);
  border-bottom: 1px solid var(--main-mid);
  transition: background-color 0.3s ease, border-color 0.3s ease;
}
body .mode-bar__toggle {
  all: unset;
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--main-mid) !important;
  color: var(--main-dark);
  font-size: 1rem;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
body .mode-bar__toggle:hover {
  background-color: var(--hover);
}
body .mode-bar__icon {
  pointer-events: none;
  line-height: 1;
}
body .home__main {
  background-color: var(--main-light);
  position: relative;
  text-align: center;
  height: 650px;
  z-index: 2;
}
@media (max-width: 500px) {
  body .home__main {
    height: 560px;
  }
}
body .home__main-location {
  position: absolute;
  z-index: 5;
  top: 50%;
  width: 100%;
  margin: auto;
  color: var(--main-light);
}
body .home__main-location > h1 {
  max-width: 400px;
  margin: auto;
  padding-top: 4rem;
  font-style: italic;
}
@media (max-width: 500px) {
  body .home__main-location > h1 {
    padding-top: 8rem;
  }
}
body .home__main-logo {
  padding: 2rem 0;
  letter-spacing: 1px;
  font-family: var(--heading-font);
  color: var(--main-dark);
  text-transform: uppercase;
  font-size: 20pt;
  font-weight: 100;
}
body .home__main-logo__nav-mobile nav #nav-burger {
  cursor: pointer;
}
@media (min-width: 1370px) {
  body .home__main-logo__nav-mobile nav #nav-burger {
    display: none;
  }
}
body .home__main-logo__nav-mobile nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: var(--body-font);
  font-weight: 300;
  font-size: 15pt;
  line-height: 40px;
}
body .home__main-video {
  position: absolute;
  z-index: 2;
  width: 100%;
}
body .home__main-video video {
  max-width: 650px;
  width: 100%;
  position: relative;
  z-index: 4;
}
@media (max-width: 1370px) {
  body .home__main-nav {
    display: none;
  }
}
body .home__main-nav {
  position: absolute;
  top: 15%;
  right: 10%;
  text-transform: uppercase;
  text-align: left;
  z-index: 3;
}
body .home__main-nav > nav ul li {
  padding: 1rem 0;
}
body .home__main-nav > nav ul li:last-of-type {
  font-weight: 400;
}
body .home__main-nav > nav ul li a {
  transition: 0.4s ease;
}
body .home__main-nav > nav ul li a:hover {
  color: var(--hover);
}
body .home__services {
  background-color: var(--main-dark);
  color: var(--main-light);
  position: relative;
  z-index: 1;
  padding-top: 250px;
  text-transform: uppercase;
  height: 700px;
}
@media (max-width: 500px) {
  body .home__services {
    padding-top: 145px;
  }
}
body .home__services-usp {
  text-align: center;
}
@media (max-width: 500px) {
  body .home__services-usp {
    margin: 1rem;
  }
}
body .home__services-usp > span {
  letter-spacing: 3px;
  font-weight: 350;
  line-height: 25px;
}
body .home__services-usp > h2 {
  margin: auto;
  max-width: 400px;
  padding-top: 8rem;
}
body .home__services-usp__seo-header,
body .home__services-usp__seo h2 {
  max-width: 800px !important;
  font-size: 20pt;
}
body .home__services-usp__seo-info {
  max-width: 500px;
  margin: auto;
  padding-top: 1rem;
  font-family: var(--body-font);
  text-transform: none;
  font-weight: 300;
  line-height: 35px;
  letter-spacing: 1px;
}
body .home__services-block {
  display: grid;
  grid-template-columns: 1fr 4fr;
  margin-top: 8rem;
  gap: 100px;
}
@media (max-width: 560px) {
  body .home__services-block {
    display: flex;
    flex-direction: column;
    grid-template-columns: 1fr;
    margin-top: -4rem;
  }
}
body .home__services-block__item img {
  height: 450px;
  width: auto;
}
@media (max-width: 1078px) {
  body .home__services-block__item img {
    display: none;
  }
}
body .home__services-block__item:last-of-type {
  background-color: var(--main-mid);
  color: var(--main-dark);
  font-weight: 350;
  position: relative;
  padding: 2rem;
}
@media (max-width: 560px) {
  body .home__services-block__item:last-of-type {
    padding: 0;
    max-width: 400px;
    margin: auto;
  }
}
@media (max-width: 560px) {
  body .home__services-block__item:last-of-type ul {
    padding: 2rem;
  }
}
body .home__services-block__item:last-of-type ul li {
  padding: 1rem;
}
@media (max-width: 560px) {
  body .home__services-block__item:last-of-type ul li:last-of-type {
    padding-bottom: 3rem;
  }
}
body .home__services-block__item:last-of-type button {
  position: absolute;
  bottom: -20px;
  right: 60px;
}
@media (max-width: 560px) {
  body .home__services-block__item:last-of-type button {
    right: 26%;
  }
}
body .home__about {
  position: relative;
  height: 800px;
  top: -34px;
  background-color: var(--main-light);
}
@media (max-width: 500px) {
  body .home__about {
    height: 870px;
  }
}
body .home__about video {
  width: 100%;
  position: absolute;
  top: 195px;
}
body .home__about-usp {
  text-transform: uppercase;
  position: absolute;
  top: 50%;
  max-width: 550px;
  width: 100%;
}
body .home__about-usp h2 {
  margin-left: 1rem;
}
@media (max-width: 500px) {
  body .home__about-usp h2 {
    padding-top: 3rem;
  }
}
@media (max-width: 560px) {
  body .home__about-usp {
    padding-top: 6rem;
  }
}
body .home__about-desc {
  position: absolute;
  background-color: var(--main-mid);
  max-width: 680px;
  bottom: -486px;
  font-weight: 350;
  line-height: 35px;
  letter-spacing: 1px;
  padding: 2rem;
}
@media (min-width: 640px) and (max-width: 689px) {
  body .home__about-desc {
    bottom: -70%;
  }
}
@media (min-width: 601px) and (max-width: 639px) {
  body .home__about-desc {
    bottom: -80%;
  }
}
@media (min-width: 550px) and (max-width: 600px) {
  body .home__about-desc {
    bottom: -90%;
  }
}
@media (min-width: 500px) and (max-width: 550px) {
  body .home__about-desc {
    bottom: -100%;
  }
}
@media (min-width: 420px) and (max-width: 449px) {
  body .home__about-desc {
    bottom: -109%;
  }
}
@media (min-width: 350px) and (max-width: 419px) {
  body .home__about-desc {
    bottom: -125%;
  }
}
@media (max-width: 350px) {
  body .home__about-desc {
    bottom: -144%;
  }
}
body .home__about-desc__info {
  color: var(--main-light);
  text-transform: uppercase;
  width: 100%;
  padding-top: 2rem;
  text-align: center;
  font-weight: 400;
}
body .home__transformation {
  font-family: var(--deocrative-font);
  position: relative;
  top: 550px;
  padding-bottom: 4rem;
  font-size: 100pt;
  text-align: center;
}
@media (max-width: 700px) {
  body .home__transformation {
    font-size: 6em;
    top: 730px;
  }
}
@media (max-width: 600px) and (min-width: 650px) {
  body .home__transformation {
    top: 675px;
  }
}
@media (min-width: 500px) and (max-width: 599px) {
  body .home__transformation {
    top: 830px;
  }
}
@media (max-width: 500px) {
  body .home__transformation {
    top: 1200px;
    height: 790px;
  }
}
body .home__showcase {
  width: 100%;
  height: 550px;
  position: relative;
  top: 550px;
  text-align: center;
  background: var(--main-dark);
  z-index: 3;
}
@media (max-width: 700px) {
  body .home__showcase {
    top: 830px;
  }
}
body .home__showcase h2 {
  color: var(--main-light);
  position: relative;
  top: -52px;
  margin-bottom: 0;
}
body .home__showcase-block {
  padding-bottom: 4rem;
}
body .home__showcase-block__header > h2 {
  width: 100%;
  text-align: center;
  position: absolute;
  top: 49px;
}
body .home__showcase-block__marquee {
  overflow: hidden;
  white-space: nowrap;
  opacity: 0.2;
}
body .home__showcase-block__marquee-track {
  display: inline-flex;
  animation: marquee 30s linear infinite;
}
body .home__showcase-block__marquee h3 {
  font-size: 4rem;
  text-transform: uppercase;
  padding: 0 2rem;
  color: var(--main-light);
  font-family: var(--heading-font);
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
body .home__showcase-block:last-of-type {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10rem;
}
@media (max-width: 930px) {
  body .home__showcase-block:last-of-type {
    gap: 5rem;
  }
}
@media (min-width: 800px) and (max-width: 929px) {
  body .home__showcase-block:last-of-type {
    gap: 2rem;
  }
}
@media (min-width: 750px) and (max-width: 799px) {
  body .home__showcase-block:last-of-type {
    gap: 1rem;
  }
}
@media (min-width: 0px) and (max-width: 749px) {
  body .home__showcase-block:last-of-type {
    display: flex;
    flex-direction: column-reverse;
  }
}
body .home__showcase-block__item {
  background-color: var(--main-mid);
  display: flex;
  flex-direction: column;
  text-transform: uppercase;
}
body .home__showcase-block__item:first-of-type {
  align-items: center;
}
@media (max-width: 749px) {
  body .home__showcase-block__item:first-of-type {
    display: none;
  }
}
body .home__showcase-block__item--nav {
  text-align: left;
  padding: 2rem;
  text-transform: uppercase;
  font-weight: 450;
}
@media (max-width: 749px) {
  body .home__showcase-block__item--nav {
    width: 100%;
    max-width: 500px;
    margin: auto;
    padding: 0;
    text-align: center;
    padding-top: 2rem;
  }
}
@media (max-width: 749px) {
  body .home__showcase-block__item--nav ul {
    padding: 2rem 1rem;
  }
}
body .home__showcase-block__item--nav ul li {
  cursor: pointer;
  padding: 2rem 0;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: opacity 0.2s ease;
  font-weight: 350;
}
@media (max-width: 499px) {
  body .home__showcase-block__item--nav ul li {
    padding: 2rem 1rem;
  }
}
body .home__showcase-block__item--nav ul li::after {
  content: "";
  display: block;
  height: 1px;
  width: 0;
  background-color: var(--main-dark);
  transition: width 0.3s ease;
}
body .home__showcase-block__item--nav ul li.active::after {
  width: 100px;
}
@media (min-width: 730px) and (max-width: 800px) {
  body .home__showcase-block__item--nav ul li.active::after {
    width: 40px;
  }
}
body .home__showcase-block__item--nav ul li:first-of-type {
  margin-top: 4rem;
}
@media (max-width: 749px) {
  body .home__showcase-block__item--nav ul li:first-of-type {
    margin-top: 0;
  }
}
body .home__showcase-block__item img {
  width: 500px;
  padding-bottom: 2rem;
}
body .home__showcase-block__item button {
  position: absolute;
  bottom: -20px;
}
body .home__showcase-block__item .mobile {
  display: none;
  left: 25%;
}
@media (max-width: 730px) {
  body .home__showcase-block__item .mobile {
    display: block;
  }
}
body .home__interlude {
  position: relative;
  bottom: -725px;
  text-align: center;
  max-width: 400px;
  margin: auto;
  padding-bottom: 8rem;
}
@media (min-width: 600px) and (max-width: 700px) {
  body .home__interlude {
    bottom: -971px;
    height: 580px;
  }
}
@media (max-width: 600px) {
  body .home__interlude {
    bottom: -971px;
    height: 500px;
  }
}
@media (max-width: 500px) {
  body .home__interlude h2 {
    padding: 0 1rem;
  }
}
body .home__contact {
  position: relative;
  bottom: 0;
  display: flex;
  flex-direction: row;
  letter-spacing: 0.6px;
}
body .home__contact video {
  position: absolute;
  z-index: 0;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}
body .home__contact-item {
  display: flex;
  flex-direction: column;
  z-index: 1;
  margin: 10.5rem auto;
  padding: 0 2rem;
  width: 100%;
  max-width: 1100px;
  box-sizing: border-box;
}
body .home__contact-item__header {
  width: 100%;
  text-align: center;
}
body .home__contact-item__header h2 span {
  position: relative;
  display: inline-block;
}
body .home__contact-item__header h2 span::after {
  content: "";
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 110%;
  height: 30px;
  background: url("../imgs/underline.png") no-repeat center bottom;
  background-size: 100% 100%;
}
body .home__contact-item__header h2 {
  margin: 0 auto;
  max-width: 17ch;
  font-size: 34pt;
  line-height: 66px;
  letter-spacing: 1px;
}
@media (max-width: 600px) {
  body .home__contact-item__header h2 {
    font-size: 26pt;
    line-height: 48px;
  }
}
body .home__contact-item__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: start;
  margin-top: 6rem;
}
@media (max-width: 900px) {
  body .home__contact-item__grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 2.5rem;
  }
}
body .home__contact-item__grid-left {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
body .home__contact-item__grid-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.375rem;
  margin-top: 2.5rem;
  text-align: center;
  margin: auto;
}
@media (max-width: 900px) {
  body .home__contact-item__grid-right {
    margin-top: 0;
  }
}
body .home__contact-item__grid-right button {
  width: 290px;
  padding: 0;
  white-space: nowrap;
  letter-spacing: 1.5px;
}
@media (max-width: 400px) {
  body .home__contact-item__grid-right button {
    width: 100%;
  }
}
body .home__contact-item__intro {
  margin: 1.75rem auto 0;
  max-width: 52ch;
  font-size: 15px;
  line-height: 32px;
}
body .home__contact-item__strategy {
  background-color: rgba(240, 240, 238, 0.62);
  border: 1px solid rgba(198, 190, 190, 0.8);
  backdrop-filter: blur(4px);
  padding: 2.75rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
body .home__contact-item__strategy p {
  margin: 0;
  font-size: 15px;
  line-height: 30px;
}
body .home__contact-item__strategy-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
body .home__contact-item__strategy-note {
  font-size: 13px;
  line-height: 26px;
  font-style: italic;
}
body .home__contact-item__strategy ul {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
body .home__contact-item__strategy ul li {
  display: flex;
  gap: 1rem;
  align-items: baseline;
}
body .home__contact-item__strategy ul li span {
  display: block;
  font-size: 14px;
  line-height: 28px;
  padding-top: 8px;
}
body .home__contact-item__marker {
  flex: none;
  width: 18px;
  height: 1px;
  padding-top: 0 !important;
  background-color: var(--main-mid);
}
body .home__contact-item__link {
  all: unset;
  font-family: inherit;
  font-weight: 600;
  letter-spacing: inherit;
  font-size: 16px;
  color: var(--main-dark);
  cursor: pointer;
  transition: 0.3s ease;
}
body .home__contact-item__link:hover {
  color: #a49b9b;
  outline: none;
}
body .home__contact-item__link-static {
  display: block;
  font-weight: 600;
  font-size: 16px;
  padding-top: 0;
}
body .home__contact-item__ask {
  all: unset;
  font-family: var(--body-font);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.6px;
  color: var(--main-dark);
  cursor: pointer;
  transition: 0.3s ease;
}
body .home__contact-item__ask:hover {
  color: #a49b9b;
  outline: none;
}
body .home__contact-item__reassurance {
  margin: 0.375rem 0 0;
  max-width: 30ch;
  font-size: 12px;
  line-height: 24px;
  font-style: italic;
}
body .home__contact-item__direct {
  width: 290px;
  margin-top: 1.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--main-mid);
}
body .home__contact-item__direct-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding-bottom: 0.75rem;
}
body .home__contact-item__direct ul li {
  padding: 3px 0;
}
body .home__contact-item__direct ul li a {
  font-size: 14px;
  line-height: 26px;
  border-bottom: 1px solid transparent;
  transition: 0.3s ease;
}
body .home__contact-item__direct ul li a:hover {
  border-bottom-color: var(--main-dark);
}
body .home-explainer {
  padding: 1.5rem;
}
body .home-explainer p {
  border-bottom: 0;
  padding-bottom: 0;
  margin: 0;
  font-size: 15px;
  line-height: 32px;
}
body .home__footer {
  position: relative;
  bottom: 0;
  color: var(--main-light);
  display: flex;
  height: 300px;
  background-color: var(--main-dark);
}
@media (max-width: 900px) {
  body .home__footer {
    justify-content: center;
  }
}
body .home__footer picture,
body .home__footer img {
  width: 100%;
  height: 320px;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 600px) {
  body .home__footer picture,
  body .home__footer img {
    height: 410px;
  }
}
body .home__footer-block {
  position: absolute;
  top: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 0 2rem;
  height: 100%;
  align-content: center;
}
@media (max-width: 900px) {
  body .home__footer-block {
    display: flex;
    flex-direction: column;
    padding-top: 4rem;
    text-align: center;
    height: 100px;
  }
}
body .home__footer-block__item {
  text-transform: uppercase;
}
body .home__footer-block__item:last-of-type {
  text-align: center;
}
@media (max-width: 900px) {
  body .home__footer-block__item:last-of-type {
    display: none;
  }
}
body .home__footer-block__item h1 {
  padding-bottom: 0;
  margin-bottom: 0;
  padding-top: 0;
  margin-top: 0;
}
body .home__footer-block__item-copyright {
  padding-bottom: 2rem;
}
body .home__footer-block__item ul li {
  padding: 5px 0;
  cursor: pointer;
  transition: 0.4s ease;
}
body .home__footer-block__item ul li:hover {
  color: var(--hover);
}
body .home__footer-block__item ul li:last-of-type {
  cursor: text;
}
body .home__footer-block__item ul li:last-of-type:hover {
  color: unset;
}
body .home__footer-block__item ul li span {
  color: var(--hover);
}
@keyframes faqCursorBlink {
  0%, 45% {
    opacity: 1;
  }
  50%, 95% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
body .home__seo {
  position: relative;
  color: var(--main-dark);
  z-index: 3;
}
body .home__seo-block {
  display: grid;
  grid-template-columns: 7fr 1fr;
  gap: 10rem;
  position: absolute;
  top: 357px;
}
@media (min-width: 860px) and (max-width: 970px) {
  body .home__seo-block {
    gap: 5rem;
  }
}
@media (min-width: 740px) and (max-width: 860px) {
  body .home__seo-block {
    gap: 1rem;
  }
}
@media (max-width: 740px) {
  body .home__seo-block {
    display: flex;
    width: 100%;
    gap: 0;
  }
}
body .home__seo-block__item video {
  height: 300px;
  width: 300px;
}
@media (max-width: 740px) {
  body .home__seo-block__item video {
    display: none;
  }
}
body .home__seo-block__item-info {
  text-align: center;
  padding-top: 2rem;
  margin-top: 2rem;
  margin-right: 2rem;
  margin-left: 2rem;
  border-top: 1px solid var(--main-dark);
}
body .home__seo-block__item:last-of-type {
  margin-right: 4rem;
  margin-top: 2rem;
}
@media (min-width: 740px) and (max-width: 860px) {
  body .home__seo-block__item:last-of-type {
    margin-right: 1rem;
  }
}
@media (max-width: 740px) {
  body .home__seo-block__item:last-of-type {
    margin-right: 0;
  }
}
body .home__seo-block__item-population {
  font-family: var(--heading-font);
  font-size: 50pt;
  font-weight: 600;
  color: #3a3939;
}
@media (max-width: 740px) {
  body .home__seo-block__item-population {
    font-size: 35pt;
  }
}
body .home__seo-block__item:first-of-type {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: var(--main-mid);
  height: 320px;
  text-align: center;
}
@media (max-width: 500px) {
  body .home__seo-block__item:first-of-type {
    height: 370px;
    width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
    gap: 0;
    display: flex;
    flex-direction: column;
  }
}
body .home__seo-block__item:first-of-type h2 {
  font-family: var(--body-font);
  font-size: inherit;
  font-weight: 600;
  line-height: 25px;
}
body .home__terminal {
  background: var(--main-dark);
  padding: 120px 64px 140px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: var(--body-font);
  position: relative;
  height: 100%;
  margin-top: 43rem;
}
body .home__terminal__eyebrow {
  color: var(--main-light);
  text-transform: uppercase;
  max-width: 840px;
  width: 100%;
  padding-top: 2rem;
  text-align: left;
  font-weight: 400;
  padding-bottom: 1rem;
}
@media (max-width: 500px) {
  body .home__terminal__eyebrow {
    text-align: center;
  }
}
body .home__terminal__usp {
  position: absolute;
  right: 39px;
  bottom: 146px;
}
@media (max-width: 1460px) {
  body .home__terminal__usp {
    display: none;
  }
}
body .home__terminal__heading {
  font-family: var(--heading-font);
  font-size: 44px;
  color: var(--main-dark);
  margin: 0 0 64px;
  text-align: center;
  letter-spacing: 0.5px;
}
body .home__terminal__screen {
  width: 100%;
  max-width: 760px;
  background: #3a3939;
  border-radius: 2px;
  padding: 40px 44px 44px;
  box-shadow: inset 0 0 0 1px rgba(240, 240, 238, 0.08);
}
body .home__terminal__body {
  font-family: var(--body-font);
  font-size: 15px;
  line-height: 1.8;
  color: #e9e7e2;
}
body .home__terminal__system-line {
  color: #9d9994;
  margin-bottom: 22px;
}
body .home__terminal__q {
  cursor: pointer;
  padding: 6px 10px;
  margin: 0 -10px;
  border-radius: 2px;
  color: var(--main-mid);
  transition: background 0.15s ease, color 0.15s ease;
}
body .home__terminal__q:hover {
  background: rgba(240, 240, 238, 0.06);
  color: var(--main-light);
}
body .home__terminal__q.is-active {
  color: var(--main-light);
}
body .home__terminal__q.is-active .faq-terminal__marker {
  color: #e9e7e2;
}
body .home__terminal__marker {
  color: #7c7a7a;
}
body .home__terminal__children {
  padding-left: 26px;
  margin: 2px 0 4px;
  border-left: 1px solid rgba(240, 240, 238, 0.12);
}
body .home__terminal__child {
  cursor: pointer;
  padding: 5px 10px;
  margin: 0 -10px 0 10px;
  border-radius: 2px;
  color: #a8a5a5;
  font-size: 14px;
  transition: background 0.15s ease, color 0.15s ease;
}
body .home__terminal__child:hover {
  background: rgba(240, 240, 238, 0.06);
  color: var(--main-light);
}
body .home__terminal__child.is-active {
  color: var(--main-light);
}
body .home__terminal__child.is-back {
  font-style: italic;
  color: #8f8d8d;
}
body .home__terminal__prompt {
  margin-top: 22px;
  color: #8f8d8d;
}
body .home__terminal__divider {
  margin: 22px 0 18px;
  border-top: 1px solid rgba(240, 240, 238, 0.12);
}
body .home__terminal__question-line {
  color: #9d9994;
  margin-bottom: 18px;
}
body .home__terminal__cursor {
  display: inline-block;
  width: 9px;
  animation: faqCursorBlink 1s step-end infinite;
}
body .areas {
  text-align: center;
  max-width: 1180px;
  margin: auto;
  padding: 1rem;
}
body .areas__content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
body .areas__content button {
  margin: 2rem 0;
}
body .areas__content input {
  width: 320px;
  margin: auto;
}
body .error-404 {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--main-light);
  color: var(--main-dark);
  padding: 40px 20px;
}
body .error-404__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 560px;
}
body .error-404__kicker {
  font-family: var(--body-font);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.46em;
  text-transform: uppercase;
  color: var(--main-mid);
  margin-bottom: 22px;
}
body .error-404__title {
  margin: 0 0 8px;
  font-family: var(--heading-font);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(90px, 16vw, 160px);
  line-height: 0.9;
  letter-spacing: 0.02em;
  color: var(--main-dark);
}
body .error-404__rule {
  width: 52px;
  height: 1px;
  background: var(--main-mid);
  margin: 26px 0;
}
body .error-404__copy {
  margin: 0 0 40px;
  font-family: var(--heading-font);
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
  line-height: 1.5;
  color: var(--main-dark);
  max-width: 34ch;
}
body .error-404__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
body .cost-calculator,
body .virtual-consultation {
  letter-spacing: 1px;
}
body .cost-calculator__head,
body .virtual-consultation__head {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 2rem;
  padding-bottom: 0;
}
body .cost-calculator__head > .logo,
body .virtual-consultation__head > .logo {
  text-align: center;
}
body .cost-calculator__head-back,
body .virtual-consultation__head-back {
  position: absolute;
  left: 23px;
  font-size: 23pt;
  cursor: pointer;
  transition: 0.3s ease;
}
body .cost-calculator__head-back:hover,
body .virtual-consultation__head-back:hover {
  transform: translateX(-3px);
}
body .cost-calculator-item__form,
body .virtual-consultation-item__form {
  display: flex;
  flex-direction: column;
  max-width: 370px;
  width: 100%;
  margin: 1rem auto;
  gap: 0;
}
@media (max-width: 400px) {
  body .cost-calculator-item__form,
  body .virtual-consultation-item__form {
    width: 100%;
  }
}
body .cost-calculator-item__form h1,
body .virtual-consultation-item__form h1 {
  font-size: 12pt;
  padding-bottom: 0;
  margin-bottom: 0;
  line-height: 20px;
  padding-bottom: 1rem;
  text-align: center;
}
body .cost-calculator-item__form-paragraph,
body .virtual-consultation-item__form-paragraph {
  text-align: center;
  font-size: 11pt;
  line-height: 20px;
}
body .cost-calculator-item__form-reveal-intro,
body .virtual-consultation-item__form-reveal-intro {
  padding-bottom: 1.5rem;
  text-align: center;
  font-size: 13pt;
  border-bottom: 1px solid var(--hover);
}
body .cost-calculator-item__form-reveal-meta,
body .virtual-consultation-item__form-reveal-meta {
  display: flex;
  gap: 2rem;
}
body .cost-calculator-item__form-reveal-meta-col,
body .virtual-consultation-item__form-reveal-meta-col {
  flex: 1;
}
body .cost-calculator-item__form-reveal-pkg,
body .virtual-consultation-item__form-reveal-pkg {
  font-size: 18px;
  font-weight: 400;
  margin: 0.25rem 0 0;
  color: var(--main-dark);
}
body .cost-calculator-item__form-reveal-timeline,
body .virtual-consultation-item__form-reveal-timeline {
  font-size: 28px;
  font-weight: 500;
  margin: 0.25rem 0 0;
  color: var(--main-dark);
}
body .cost-calculator-item__form-reveal-price,
body .virtual-consultation-item__form-reveal-price {
  font-size: 42px;
  font-weight: 600;
  color: var(--main-dark);
  font-family: var(--heading-font);
  letter-spacing: -1px;
  margin-top: 0;
  margin-bottom: 1rem;
}
body .cost-calculator-item__form-reveal-disclaimer,
body .virtual-consultation-item__form-reveal-disclaimer {
  font-size: 11px;
  font-style: italic;
  color: #978b8b;
  margin-bottom: 2rem;
  font-family: var(--body-font);
  letter-spacing: 1px;
  font-weight: 350;
}
body .cost-calculator-item__form-reveal-capture,
body .virtual-consultation-item__form-reveal-capture {
  background: var(--main-mid);
  padding: 1.5rem;
  margin-top: 1rem;
}
body .cost-calculator-item__form-reveal-capture-vc,
body .virtual-consultation-item__form-reveal-capture-vc {
  display: block;
  font-size: 12px;
  font-style: italic;
  color: var(--main-mid);
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-bottom: 1.25rem;
  transition: color 0.15s;
}
body .cost-calculator-item__form-reveal-capture-vc:hover,
body .virtual-consultation-item__form-reveal-capture-vc:hover {
  color: var(--main-dark);
}
body .cost-calculator-item__form-reveal-capture-heading,
body .virtual-consultation-item__form-reveal-capture-heading {
  font-family: var(--heading-font);
  font-style: italic;
  font-weight: 300;
  font-size: 20pt;
  text-transform: uppercase;
  line-height: 1.3;
  color: var(--main-dark);
  margin-bottom: 0.5rem;
}
body .cost-calculator-item__form-reveal-capture-label,
body .virtual-consultation-item__form-reveal-capture-label {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: var(--main-dark);
}
body .cost-calculator-item__form-label,
body .virtual-consultation-item__form-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 16px;
  margin-top: 1rem;
}
body .cost-calculator-item__form-interstitial,
body .virtual-consultation-item__form-interstitial {
  padding: 1rem 0;
}
body .cost-calculator-item__form-interstitial-status,
body .virtual-consultation-item__form-interstitial-status {
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: qfFadeIn 0.4s ease forwards;
}
body .cost-calculator-item__form-interstitial-bar,
body .virtual-consultation-item__form-interstitial-bar {
  height: 2px;
  background: var(--hover);
  margin-bottom: 1.5rem;
}
body .cost-calculator-item__form-interstitial-fill,
body .virtual-consultation-item__form-interstitial-fill {
  height: 100%;
  background: var(--main-dark);
  width: 0%;
  transition: width 1.8s ease;
}
body .cost-calculator-item__form-interstitial-usp,
body .virtual-consultation-item__form-interstitial-usp {
  opacity: 0;
  animation: qfFadeIn 0.4s ease 0.3s forwards;
}
@keyframes qfFadeIn {
  from {
    opacity: 0;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
body .cost-calculator-item__form-progress,
body .virtual-consultation-item__form-progress {
  height: 2px;
  background: var(--hover);
}
body .cost-calculator-item__form-progress-fill,
body .virtual-consultation-item__form-progress-fill {
  height: 100%;
  background: var(--main-dark);
  transition: width 0.3s ease;
  width: 20%;
}
body .cost-calculator-item__form-step,
body .virtual-consultation-item__form-step {
  display: none;
}
body .cost-calculator-item__form-step.active,
body .virtual-consultation-item__form-step.active {
  display: block;
}
body .cost-calculator-item__form-label, body .cost-calculator-item__form-steps,
body .virtual-consultation-item__form-label,
body .virtual-consultation-item__form-steps {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  display: block;
}
body .cost-calculator-item__form-steps,
body .virtual-consultation-item__form-steps {
  color: #978b8b;
}
body .cost-calculator-item__form-greeting,
body .virtual-consultation-item__form-greeting {
  font-size: 15px;
  font-weight: 500;
  color: var(--main-dark);
  margin-bottom: 0.2rem;
  padding-bottom: 1rem;
  padding-top: 1.5rem;
}
body .cost-calculator-item__form-sub,
body .virtual-consultation-item__form-sub {
  font-size: 12px;
  color: #978b8b;
  margin-bottom: 0.85rem;
}
body .cost-calculator-item__form-note,
body .virtual-consultation-item__form-note {
  font-size: 11px;
  font-style: italic;
  margin-top: 0.75rem;
  text-align: center;
}
body .cost-calculator-item__form input[type=text],
body .cost-calculator-item__form input[type=email],
body .cost-calculator-item__form input[type=tel],
body .virtual-consultation-item__form input[type=text],
body .virtual-consultation-item__form input[type=email],
body .virtual-consultation-item__form input[type=tel] {
  width: 100%;
  box-sizing: border-box;
}
body .cost-calculator-item__form textarea,
body .virtual-consultation-item__form textarea {
  width: 100%;
  box-sizing: border-box;
  border: 0;
  border-bottom: 1px solid var(--main-dark);
  background: unset;
  font-family: inherit;
  letter-spacing: 2px;
  padding: 10px 5px;
  resize: vertical;
  min-height: 80px;
  color: var(--main-dark);
}
body .cost-calculator-item__form textarea::-moz-placeholder, body .virtual-consultation-item__form textarea::-moz-placeholder {
  font-family: inherit;
  letter-spacing: 2px;
  font-weight: 350;
  color: var(--main-mid);
}
body .cost-calculator-item__form textarea::placeholder,
body .virtual-consultation-item__form textarea::placeholder {
  font-family: inherit;
  letter-spacing: 2px;
  font-weight: 350;
  color: var(--main-mid);
}
body .cost-calculator-item__form textarea:focus,
body .virtual-consultation-item__form textarea:focus {
  outline: none;
}
body .cost-calculator-item__form-error,
body .virtual-consultation-item__form-error {
  font-size: 12px;
  color: #dc2626;
  margin-top: 0.35rem;
  display: none;
}
body .cost-calculator-item__form-error.visible,
body .virtual-consultation-item__form-error.visible {
  display: block;
}
body .cost-calculator-item__form-toggle,
body .virtual-consultation-item__form-toggle {
  display: flex;
  gap: 8px;
  margin-top: 0.5rem;
}
body .cost-calculator-item__form-toggle-btn,
body .virtual-consultation-item__form-toggle-btn {
  flex: 1;
  height: 40px;
  width: auto;
  border: 1px solid var(--hover);
  background: transparent;
  color: var(--main-dark);
  font-family: inherit;
  font-size: 13px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: 0.2s ease;
  outline: none;
}
body .cost-calculator-item__form-toggle-btn:hover,
body .virtual-consultation-item__form-toggle-btn:hover {
  border-color: var(--main-dark);
  outline: none;
}
body .cost-calculator-item__form-toggle-btn.active,
body .virtual-consultation-item__form-toggle-btn.active {
  background: var(--hover);
  color: var(--main-dark);
  border-color: var(--main-dark);
}
body .cost-calculator-item__form-radios,
body .virtual-consultation-item__form-radios {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}
body .cost-calculator-item__form-radio-btn,
body .virtual-consultation-item__form-radio-btn {
  padding: 0.4rem 0.85rem !important;
  height: auto;
  width: auto;
  border: 1px solid var(--hover);
  background: transparent;
  color: var(--main-dark);
  font-family: inherit;
  font-size: 12px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: 0.2s ease;
  outline: none;
}
body .cost-calculator-item__form-radio-btn:hover,
body .virtual-consultation-item__form-radio-btn:hover {
  border-color: var(--main-dark);
  color: var(--main-dark);
  outline: none;
}
body .cost-calculator-item__form-radio-btn.active,
body .virtual-consultation-item__form-radio-btn.active {
  border-color: var(--main-dark);
  color: var(--main-dark);
  font-weight: 500;
  outline: none;
}
body .cost-calculator-item__form-concerns,
body .virtual-consultation-item__form-concerns {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 0.5rem;
}
body .cost-calculator-item__form-page-examples,
body .virtual-consultation-item__form-page-examples {
  font-size: 11px;
  color: var(--main-dark);
  letter-spacing: 0.5px;
  padding: 0.5rem 0;
}
body .cost-calculator-item__form-page-examples a,
body .virtual-consultation-item__form-page-examples a {
  color: var(--main-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.15s;
}
body .cost-calculator-item__form-page-examples a:hover,
body .virtual-consultation-item__form-page-examples a:hover {
  color: #978b8b;
}
body .cost-calculator-item__form-info,
body .virtual-consultation-item__form-info {
  padding: 1rem 0;
  color: var(--main-dark);
  font-style: italic;
  text-align: center;
  letter-spacing: 1px;
  font-size: 9.5pt;
}
body .cost-calculator-item__form-concern,
body .virtual-consultation-item__form-concern {
  border: 1px solid var(--hover);
  padding: 0.65rem 0.85rem;
  cursor: pointer;
  transition: border-color 0.15s;
  font-size: 13px;
  color: var(--main-dark);
  letter-spacing: 1px;
}
body .cost-calculator-item__form-concern:hover,
body .virtual-consultation-item__form-concern:hover {
  border-color: var(--main-dark);
}
body .cost-calculator-item__form-concern.active,
body .virtual-consultation-item__form-concern.active {
  border-color: var(--main-dark);
  background: var(--hover);
  color: var(--main-dark);
}
body .cost-calculator-item__form-concern-followup,
body .virtual-consultation-item__form-concern-followup {
  display: none;
  margin-top: 0.6rem;
}
body .cost-calculator-item__form-concern-followup.visible,
body .virtual-consultation-item__form-concern-followup.visible {
  display: block;
}
body .cost-calculator-item__form-concern-followup input[type=text],
body .virtual-consultation-item__form-concern-followup input[type=text] {
  font-size: 12px;
}
body .cost-calculator-item__form-concern-page-label,
body .virtual-consultation-item__form-concern-page-label {
  display: block;
  margin-bottom: 0.2rem;
}
body .cost-calculator-item__form-concern-page-note,
body .virtual-consultation-item__form-concern-page-note {
  font-size: 11px;
  color: #978b8b;
  font-weight: 400;
}
body .cost-calculator-item__form-concern-page-examples,
body .virtual-consultation-item__form-concern-page-examples {
  display: none;
  font-size: 11px;
  color: #978b8b;
  letter-spacing: 0.5px;
  margin-top: 0.4rem;
}
body .cost-calculator-item__form-concern-page-sep,
body .virtual-consultation-item__form-concern-page-sep {
  color: #978b8b;
}
body .cost-calculator-item__form-concern-page-link,
body .virtual-consultation-item__form-concern-page-link {
  color: #978b8b;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.15s;
}
body .cost-calculator-item__form-concern-page-link:hover,
body .virtual-consultation-item__form-concern-page-link:hover {
  color: var(--main-dark);
}
body .cost-calculator-item__form-nav,
body .virtual-consultation-item__form-nav {
  display: flex;
  gap: 8px;
  margin-top: 1.5rem;
}
body .cost-calculator-item__form-back,
body .virtual-consultation-item__form-back {
  padding: 0 1rem;
  height: 50px;
  width: auto;
  border: 1px solid var(--hover);
  background: transparent;
  color: var(--main-dark);
  font-family: inherit;
  font-size: 13px;
  letter-spacing: 1px;
  cursor: pointer;
  outline: none;
}
body .cost-calculator-item__form-back:hover,
body .virtual-consultation-item__form-back:hover {
  border-color: var(--main-dark);
  outline: none;
}
body .cost-calculator-item__form #qf-next,
body .virtual-consultation-item__form #qf-next {
  flex: 1;
  height: 50px;
  width: auto;
  font-size: 13px;
  letter-spacing: 1.5px;
  padding: 10px;
}
body .cost-calculator-item__form-thanks,
body .virtual-consultation-item__form-thanks {
  padding: 1.5rem 0;
}
body .cost-calculator-item__form-thanks h3,
body .virtual-consultation-item__form-thanks h3 {
  font-family: var(--heading-font);
  font-style: italic;
  font-weight: 300;
  font-size: 16pt;
  line-height: 34px;
  margin: 0 0 1rem;
}
body .cost-calculator-item__form-thanks p,
body .virtual-consultation-item__form-thanks p {
  margin: 0;
  font-size: 14px;
  line-height: 28px;
  color: #978b8b;
}
body .cta {
  position: fixed;
  bottom: 0;
  right: 0;
  margin: 1rem;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: self-end;
}
body .cta button:hover {
  outline: none;
}
body .cta__top {
  color: var(--hover);
  font-size: 25pt;
  margin-left: 1rem;
  cursor: pointer;
  padding-bottom: 1rem;
}
@media (max-width: 500px) {
  body .cta__top {
    float: right;
    padding-bottom: 1rem;
  }
}
body .cta__row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
  position: relative;
}
body .cta__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: var(--main-dark);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 8px 20px -6px rgba(0, 0, 0, 0.45), 0 2px 6px rgba(0, 0, 0, 0.25);
  transition: background-color 0.15s ease, color 0.15s ease;
}
body .cta__icon:hover {
  background-color: var(--main-mid);
  color: var(--main-dark);
}
body .cta__icon svg {
  width: 22px;
  height: 22px;
}
body .cta__icon--chat {
  width: 56px;
  height: 56px;
  position: relative;
}
body .cta__icon--chat::after {
  content: "";
  position: absolute;
  top: 11px;
  right: 0px;
  width: 10px;
  height: 10px;
  background: #5db87a;
  box-shadow: 0 0 6px 2px rgba(93, 184, 122, 0.45);
  border-radius: 50%;
  animation: qf-pulse 2.5s ease-in-out infinite;
}
body .cta__icon--chat svg {
  width: 23px;
  height: 23px;
}
@keyframes qf-pulse {
  0%, 100% {
    box-shadow: 0 0 6px 2px rgba(93, 184, 122, 0.8);
  }
  50% {
    box-shadow: 0 0 10px 4px rgba(93, 184, 122, 0.2);
  }
}
body .cta__icon--chat .cta__icon-close {
  display: none;
}
body .cta__icon--chat.is-open .cta__icon-open {
  display: none;
}
body .cta__icon--chat.is-open .cta__icon-close {
  display: block;
}
body .cta__chat {
  display: none;
  position: absolute;
  bottom: calc(100% + 12px);
  right: 0;
  width: 300px;
  max-width: calc(100vw - 2rem);
  background-color: #fdfdfc;
  border-radius: 16px;
  box-shadow: 0 20px 50px -10px rgba(20, 20, 20, 0.28), 0 4px 14px rgba(20, 20, 20, 0.1);
  overflow: hidden;
  flex-direction: column;
}
body .cta__chat.is-open {
  display: flex;
  animation: cta-pop 0.22s cubic-bezier(0.2, 0.7, 0.3, 1) both;
}
body .cta__chat-header {
  background-color: var(--main-dark);
  padding: 0.9rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
body .cta__chat-header-left {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
body .cta__chat-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--main-mid);
  color: var(--main-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}
body .cta__chat-avatar svg {
  width: 16px;
  height: 16px;
}
body .cta__chat-title {
  color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
}
body .cta__chat-close {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.15s ease;
}
body .cta__chat-close:hover {
  color: #fff;
}
body .cta__chat-body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  max-height: 320px;
  overflow-y: auto;
}
body .cta__bubble {
  max-width: 84%;
  padding: 0.55rem 0.8rem;
  font-size: 0.8125rem;
  line-height: 1.45;
  display: none;
  letter-spacing: 1px;
}
body .cta__bubble--bot {
  align-self: flex-start;
  background-color: #f0efec;
  color: #2b2b2b;
  border-radius: 14px 14px 14px 3px;
}
body .cta__bubble--user {
  align-self: flex-end;
  background-color: var(--main-dark);
  color: #fff;
  border-radius: 14px 14px 3px 14px;
}
body .cta__bubble {
  /* first bot bubble always visible once chat is open */
}
body .cta__bubble--bot:not(body .cta__bubble--ask-question):not(body .cta__bubble--thanks) {
  display: block;
}
body .cta__bubble.is-visible {
  display: block;
  animation: cta-bubble-in 0.2s ease both;
}
body .cta__chat-form {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 0.75rem;
  border-top: 1px solid #ececea;
  letter-spacing: 1px;
}
body .cta__chat-form.is-hidden {
  display: none;
}
body .cta__chat-input {
  flex: 1;
  border: none;
  background-color: #f5f5f3;
  border-radius: 20px;
  padding: 0.55rem 0.9rem;
  font-size: 0.8125rem;
  color: #2b2b2b;
  font-family: inherit;
}
body .cta__chat-input:focus {
  outline: none;
}
body .cta__chat-send {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: var(--main-dark);
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease;
}
body .cta__chat-send:hover {
  background-color: var(--main-mid);
  color: var(--main-dark);
}
body .cta__chat-send svg {
  width: 15px;
  height: 15px;
}
@keyframes cta-pop {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes cta-bubble-in {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
body .cta .btn-1,
body .cta .btn-2 {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-family: var(--body-font);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease;
}
body .cta .btn-1 {
  background: var(--main-dark);
  color: var(--main-light);
  padding: 15px 34px;
  border: none;
}
body .cta .btn-1:hover {
  background: #333232;
  outline: none;
}
body .cta .btn-1__arrow {
  font-family: serif;
  font-size: 14px;
}
body .cta .btn-2 {
  background: transparent;
  color: var(--main-dark);
  padding: 14px 32px;
  border: 1px solid var(--main-mid);
}
body .cta .btn-2:hover {
  background: var(--hover);
  border-color: var(--main-dark);
}
body .cta .btn-2__arrow {
  font-family: serif;
  font-size: 14px;
}/*# sourceMappingURL=css.css.map */