/*!***************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[4].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[4].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[4].use[3]!./css/style.scss ***!
  \***************************************************************************************************************************************************************************************************************************************/
/* ----------------------------- Base ----------------------------- */
.hero__benefits-item.monthly .info-circle {
  transition: all;
  transition-duration: 300ms;
  transition-duration-function: cubic-bezier(0.02, 0.41, 0.18, 1.04);
}
.hero__benefits-item.monthly .info-circle:hover {
  transition: all;
  transition-duration: 300ms;
  transition-duration-function: cubic-bezier(0.02, 0.41, 0.18, 1.04);
}

.anime--pop-up {
  animation: popup 300ms cubic-bezier(0.48, 0, 0.37, 1);
}

.anime--pop-out {
  animation: popup--reverse 300ms cubic-bezier(0.48, 0, 0.37, 1);
}

.anime--fade-in {
  animation: fade-in 300ms cubic-bezier(0.48, 0, 0.37, 1);
}

.anime--fade-out {
  animation: fade-out 300ms cubic-bezier(0.48, 0, 0.37, 1);
}

.anime--rotate-180 {
  animation: rotate-180deg 300ms cubic-bezier(0.48, 0, 0.37, 1) forwards;
}
.anime--rotate-180--reverse {
  animation: rotate-180deg-reverse 300ms cubic-bezier(0.48, 0, 0.37, 1) forwards;
}

.anime--rotate-45 {
  animation: rotate-45deg 300ms cubic-bezier(0.48, 0, 0.37, 1) forwards;
  transform-origin: top left;
}
.anime--rotate-45--reverse {
  animation: rotate-45deg--reverse 300ms cubic-bezier(0.48, 0, 0.37, 1) forwards;
}

.anime--rotate-45-neg {
  transform-origin: bottom left;
  animation: rotate-neg45deg 300ms cubic-bezier(0.48, 0, 0.37, 1) forwards;
}
.anime--rotate-45-neg--reverse {
  animation: rotate-neg45deg--reverse 300ms cubic-bezier(0.48, 0, 0.37, 1) forwards;
}

.anime--slide-left {
  animation: slide-left 300ms cubic-bezier(0.48, 0, 0.37, 1) forwards;
}
.anime--slide-left--reverse {
  animation: slide-left--reverse 300ms cubic-bezier(0.48, 0, 0.37, 1) forwards;
}

.anime--slide-down {
  animation: slide-down 300ms cubic-bezier(0.48, 0, 0.37, 1) forwards;
}

.anime--slide-up {
  animation: slide-up 300ms cubic-bezier(0.48, 0, 0.37, 1) forwards;
}

@keyframes popup {
  0% {
    opacity: 0;
    transform: translateY(-20px) scale(0.9);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes popup--reverse {
  100% {
    opacity: 0;
    transform: translateY(-20px) scale(0.9);
  }
  0% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes rotate-180deg {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(180deg);
  }
}
@keyframes rotate-180deg-reverse {
  0% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(0);
  }
}
@keyframes rotate-45deg {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(45deg);
  }
}
@keyframes rotate-45deg--reverse {
  0% {
    transform: rotate(45deg);
  }
  100% {
    transform: rotate(0);
  }
}
@keyframes rotate-neg45deg {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(-45deg);
  }
}
@keyframes rotate-neg45deg--reverse {
  0% {
    transform: rotate(-45deg);
  }
  100% {
    transform: rotate(0);
  }
}
@keyframes slide-left {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(-30px);
    opacity: 0;
  }
}
@keyframes slide-left--reverse {
  0% {
    transform: translateX(-30px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slide-down {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(-30px);
    opacity: 0;
  }
}
@keyframes slide-up {
  0% {
    transform: translateY(-30px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.animatedTarget {
  opacity: 0;
  transform: translateY(-20px);
}

.anime-fadeLeft {
  animation: fadeLeft cubic-bezier(0.48, 0, 0.37, 1) forwards;
  animation-duration: 300ms;
}

.anime-appearLeft {
  animation: appearLeft cubic-bezier(0.48, 0, 0.37, 1) forwards;
}

@keyframes fadeLeft {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  100% {
    transform: translateX(-30px);
    opacity: 0;
  }
}
@keyframes appearLeft {
  0% {
    transform: translateX(30px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes infinite-rotation {
  100% {
    transform: rotate(-360deg);
  }
}
.display-none {
  display: none !important;
}

.display-flex {
  display: flex !important;
}

.roundel-spin {
  animation: infinite-rotation 12s infinite forwards linear;
}

/* primary colors */
/*-- background colors *--/ */
/*-- Other Colors --*/
.p-brown-01 {
  color: #BA8034;
}
.p-brown-01--bg {
  background-color: #BA8034;
}
.p-brown-01 p {
  color: #BA8034;
}

.p-grey-01 {
  color: #403D39;
}
.p-grey-01--bg {
  background-color: #403D39;
}
.p-grey-01 p {
  color: #403D39;
}

.p-body {
  color: #47484A;
}
.p-body p {
  color: #47484A;
}

.bg-black {
  color: #1B1C1E;
}
.bg-black p {
  color: #1B1C1E;
}
.bg-black--bg {
  background-color: #1B1C1E;
}

.bg-white {
  color: #fff;
}
.bg-white p {
  color: #fff;
}
.bg-white--bg {
  background-color: #fff;
}

.bg-grey {
  color: #F8F8F8;
}
.bg-grey p {
  color: #F8F8F8;
}
.bg-grey--bg {
  background-color: #F8F8F8;
}

.bg-beige {
  color: #FDF3E7;
}
.bg-beige p {
  color: #FDF3E7;
}
.bg-beige--bg {
  background-color: #FDF3E7;
}

.o-warning {
  color: #DA0000;
}
.o-warning p {
  color: #DA0000;
}
.o-warning--bg {
  background-color: #DA0000;
}

/* ----------------------------- Applying Global Styles ----------------------------- */
* {
  box-sizing: border-box;
}

html {
  max-width: 100vw;
  margin: 0;
  padding: 0;
  scroll-padding-top: 240px;
  scroll-behavior: smooth;
}

body {
  max-width: 100vw !important;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, p {
  margin: 0;
  padding: 0;
}

/* Media Query Mixins */
/* ----------------------------- Media Query Mixins ----------------------------- */
/* ----------------------------- Display Mixins ----------------------------- */
/* ----------------------------- Clamp Function ----------------------------- */
/* ----------------------------- Clamp Spacing ----------------------------- */
/* ----------------------------- Global Clamps ----------------------------- */
/* unchanging */
/* ----------------------------- Global Spacing ----------------------------- */
/* ----------------------------- Responsive Mixin ----------------------------- */
/* -------------------------- Full Page Horizontal Padding Support -------------------------- */
/* ----------------------------- Forced Scrollbar Support ----------------------------- */
/* Force scrollbars to always appear */
/* ----------------------------- Parallax ----------------------------- */
.back-button {
  cursor: pointer;
}

.header-spacer {
  width: 100%;
  min-height: 104px;
}
@media only screen and (max-width: 700px) {
  .header-spacer {
    max-height: 0;
    min-height: 0;
  }
}

body {
  overflow-x: hidden;
}
@media only screen and (min-width: 1680px) {
  body {
    padding-right: calc((100vw - clamp(1440px, 0px + 1 * 100vw, 1680px)) / 2);
    padding-left: calc((100vw - clamp(1440px, 0px + 1 * 100vw, 1680px)) / 2);
  }
}
@media only screen and (max-width: 1680px) {
  body {
    padding-right: 0;
    padding-left: 0;
  }
}

.expansion {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  width: auto;
  flex: 1;
  height: auto;
}

.position-relative {
  position: relative;
}

section {
  position: relative;
}

/* Desktop */
/* Mobile */
.h1, .h1 p {
  font-family: "Urbanist", sans-serif !important;
  font-size: 66px !important;
  line-height: 70px !important;
  font-weight: 500 !important;
  letter-spacing: 1px !important;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}
@media only screen and (max-width: 1000px) {
  .h1, .h1 p {
    font-family: "Urbanist", sans-serif !important;
    font-size: 60px !important;
    line-height: 64px !important;
    font-weight: 500 !important;
    letter-spacing: 1px !important;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
  }
}
@media only screen and (max-width: 700px) {
  .h1, .h1 p {
    font-family: "Urbanist", sans-serif !important;
    font-size: 38px !important;
    line-height: 44px !important;
    font-weight: 600 !important;
    letter-spacing: 1px !important;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
  }
}

.h2, .h2 p {
  font-family: "Urbanist", sans-serif !important;
  font-size: 38px !important;
  line-height: 48px !important;
  font-weight: 600 !important;
  letter-spacing: 0.5px !important;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}
@media only screen and (max-width: 700px) {
  .h2, .h2 p {
    font-family: "Urbanist", sans-serif !important;
    font-size: 28px !important;
    line-height: 32px !important;
    font-weight: 600 !important;
    letter-spacing: 1px !important;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
  }
}

.h3, .h3 p {
  font-family: "Urbanist", sans-serif !important;
  font-size: 24px !important;
  line-height: 36px !important;
  font-weight: 700 !important;
  letter-spacing: 0.3px !important;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}
@media only screen and (max-width: 700px) {
  .h3, .h3 p {
    font-family: "Urbanist", sans-serif !important;
    font-size: 22px !important;
    line-height: auto !important;
    font-weight: 600 !important;
    letter-spacing: 1px !important;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
  }
}

.h4, .h4 p {
  font-family: "Urbanist", sans-serif !important;
  font-size: 20px !important;
  line-height: 28px !important;
  font-weight: 700 !important;
  letter-spacing: 0.5px !important;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}
@media only screen and (max-width: 700px) {
  .h4, .h4 p {
    font-family: "Urbanist", sans-serif !important;
    font-size: 18px !important;
    line-height: 24px !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
  }
}

/* Body */
.body20reg {
  font-family: "Urbanist", sans-serif !important;
  font-size: 20px !important;
  line-height: 32px !important;
  font-weight: 400 !important;
  letter-spacing: 0.5px !important;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

.body20bold {
  font-family: "Urbanist", sans-serif !important;
  font-size: 20px !important;
  line-height: 30px !important;
  font-weight: 700 !important;
  letter-spacing: 0.5px !important;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

.body18reg {
  font-family: "Urbanist", sans-serif !important;
  font-size: 18px !important;
  line-height: 28px !important;
  font-weight: 400 !important;
  letter-spacing: 0.3px !important;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

.body18bold {
  font-family: "Urbanist", sans-serif !important;
  font-size: 18px !important;
  line-height: 26px !important;
  font-weight: 700 !important;
  letter-spacing: 0.2px !important;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

.body16reg {
  font-family: "Urbanist", sans-serif !important;
  font-size: 16px !important;
  line-height: 26px !important;
  font-weight: 400 !important;
  letter-spacing: 0.2px !important;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

.body16bold {
  font-family: "Urbanist", sans-serif !important;
  font-size: 16px !important;
  line-height: 24px !important;
  font-weight: 700 !important;
  letter-spacing: 0.5px !important;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

.body14reg {
  font-family: "Urbanist", sans-serif !important;
  font-size: 14px !important;
  line-height: 22px !important;
  font-weight: 400 !important;
  letter-spacing: 0.2px !important;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

.body14bold {
  font-family: "Urbanist", sans-serif !important;
  font-size: 14px !important;
  line-height: 20px !important;
  font-weight: 700 !important;
  letter-spacing: 0.2px !important;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

.body12reg {
  font-family: "Urbanist", sans-serif !important;
  font-size: 12px !important;
  line-height: 18px !important;
  font-weight: 400 !important;
  letter-spacing: 1px !important;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

.body12bold {
  font-family: "Urbanist", sans-serif !important;
  font-size: 12px !important;
  line-height: 18px !important;
  font-weight: 700 !important;
  letter-spacing: 1px !important;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

/* UI */
.label-s {
  font-family: "Urbanist", sans-serif !important;
  font-size: 12px !important;
  line-height: 18px !important;
  font-weight: 400 !important;
  letter-spacing: 0.8px !important;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  color: #BA8034;
  text-transform: uppercase;
}

.label-l {
  font-family: "Urbanist", sans-serif !important;
  font-size: 16px !important;
  line-height: 22px !important;
  font-weight: 600 !important;
  letter-spacing: 1px !important;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-transform: uppercase;
  color: #BA8034;
}
@media only screen and (max-width: 700px) {
  .label-l {
    font-family: "Urbanist", sans-serif !important;
    font-size: 12px !important;
    line-height: 18px !important;
    font-weight: 400 !important;
    letter-spacing: 0.8px !important;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    color: #BA8034;
  }
}

/* tag declarations */
h1 {
  font-family: "Urbanist", sans-serif !important;
  font-size: 66px !important;
  line-height: 70px !important;
  font-weight: 500 !important;
  letter-spacing: 1px !important;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  color: #403D39;
}
@media only screen and (max-width: 1000px) {
  h1 {
    font-family: "Urbanist", sans-serif !important;
    font-size: 60px !important;
    line-height: 64px !important;
    font-weight: 500 !important;
    letter-spacing: 1px !important;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
  }
}
@media only screen and (max-width: 700px) {
  h1 {
    font-family: "Urbanist", sans-serif !important;
    font-size: 38px !important;
    line-height: 44px !important;
    font-weight: 600 !important;
    letter-spacing: 1px !important;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
  }
}

h2 {
  font-family: "Urbanist", sans-serif !important;
  font-size: 38px !important;
  line-height: 48px !important;
  font-weight: 600 !important;
  letter-spacing: 0.5px !important;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  color: #403D39;
}
@media only screen and (max-width: 700px) {
  h2 {
    font-family: "Urbanist", sans-serif !important;
    font-size: 28px !important;
    line-height: 32px !important;
    font-weight: 600 !important;
    letter-spacing: 1px !important;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
  }
}

h3 {
  font-family: "Urbanist", sans-serif !important;
  font-size: 24px !important;
  line-height: 36px !important;
  font-weight: 700 !important;
  letter-spacing: 0.3px !important;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  color: #403D39;
}
@media only screen and (max-width: 700px) {
  h3 {
    font-family: "Urbanist", sans-serif !important;
    font-size: 22px !important;
    line-height: auto !important;
    font-weight: 600 !important;
    letter-spacing: 1px !important;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
  }
}

h4 {
  font-family: "Urbanist", sans-serif !important;
  font-size: 20px !important;
  line-height: 28px !important;
  font-weight: 700 !important;
  letter-spacing: 0.5px !important;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  color: #403D39;
}
@media only screen and (max-width: 700px) {
  h4 {
    font-family: "Urbanist", sans-serif !important;
    font-size: 18px !important;
    line-height: 24px !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
  }
}

p {
  font-family: "Urbanist", sans-serif !important;
  font-size: 20px !important;
  line-height: 32px !important;
  font-weight: 400 !important;
  letter-spacing: 0.5px !important;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  color: #47484A;
}

.link-hover {
  color: #47484A;
  text-decoration: none;
  transition: all;
  transition-duration: 300ms;
  transition-duration-function: cubic-bezier(0.02, 0.41, 0.18, 1.04);
}
.link-hover:hover, .link-hover:hover > h3, .link-hover:hover > h4, .link-hover:hover > p, .link-hover:active {
  transition: all;
  transition-duration: 300ms;
  transition-duration-function: cubic-bezier(0.02, 0.41, 0.18, 1.04);
  color: #E2665C;
  text-decoration: underline;
}

.text-deco-none {
  text-decoration: none;
  cursor: pointer;
}

.svg-social circle {
  transition: all;
  transition-duration: 300ms;
  transition-duration-function: cubic-bezier(0.02, 0.41, 0.18, 1.04);
  fill: #BA8034;
  stroke: white;
}
.svg-social:hover circle {
  transition: all;
  transition-duration: 300ms;
  transition-duration-function: cubic-bezier(0.02, 0.41, 0.18, 1.04);
  fill: none;
  stroke: #BA8034;
}

.content h1 {
  font-family: "Urbanist", sans-serif !important;
  font-size: 66px !important;
  line-height: 70px !important;
  font-weight: 500 !important;
  letter-spacing: 1px !important;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  -webkit-hyphens: auto !important;
  hyphens: auto !important;
  word-break: break-word;
}
@media only screen and (max-width: 1000px) {
  .content h1 {
    font-family: "Urbanist", sans-serif !important;
    font-size: 60px !important;
    line-height: 64px !important;
    font-weight: 500 !important;
    letter-spacing: 1px !important;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
  }
}
@media only screen and (max-width: 700px) {
  .content h1 {
    font-family: "Urbanist", sans-serif !important;
    font-size: 38px !important;
    line-height: 44px !important;
    font-weight: 600 !important;
    letter-spacing: 1px !important;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
  }
}
.content h2 {
  font-family: "Urbanist", sans-serif !important;
  font-size: 38px !important;
  line-height: 48px !important;
  font-weight: 600 !important;
  letter-spacing: 0.5px !important;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  -webkit-hyphens: auto !important;
  hyphens: auto !important;
  word-break: break-word;
  text-transform: capitalize;
}
@media only screen and (max-width: 700px) {
  .content h2 {
    font-family: "Urbanist", sans-serif !important;
    font-size: 28px !important;
    line-height: 32px !important;
    font-weight: 600 !important;
    letter-spacing: 1px !important;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
  }
}
.content h3 {
  font-family: "Urbanist", sans-serif !important;
  font-size: 24px !important;
  line-height: 36px !important;
  font-weight: 700 !important;
  letter-spacing: 0.3px !important;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  -webkit-hyphens: auto !important;
  hyphens: auto !important;
  word-break: break-word;
}
@media only screen and (max-width: 700px) {
  .content h3 {
    font-family: "Urbanist", sans-serif !important;
    font-size: 22px !important;
    line-height: auto !important;
    font-weight: 600 !important;
    letter-spacing: 1px !important;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
  }
}
.content h4 {
  font-family: "Urbanist", sans-serif !important;
  font-size: 20px !important;
  line-height: 28px !important;
  font-weight: 700 !important;
  letter-spacing: 0.5px !important;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  -webkit-hyphens: auto !important;
  hyphens: auto !important;
  word-break: break-word;
}
@media only screen and (max-width: 700px) {
  .content h4 {
    font-family: "Urbanist", sans-serif !important;
    font-size: 18px !important;
    line-height: 24px !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
  }
}
.content p {
  font-family: "Urbanist", sans-serif !important;
  font-size: 16px !important;
  line-height: 26px !important;
  font-weight: 400 !important;
  letter-spacing: 0.2px !important;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  -webkit-hyphens: auto !important;
  hyphens: auto !important;
  word-break: break-word;
}
.content ol {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  flex: 1;
  padding: 0;
  margin: 0;
}
@media only screen and (max-width: 1000px) and (min-width: 1680px) {
  .content ol {
    padding-left: 100px;
  }
}
@media only screen and (max-width: 1000px) and (max-width: 1680px) {
  .content ol {
    padding-left: 100px;
  }
}
@media only screen and (max-width: 1000px) and (max-width: 1440px) {
  .content ol {
    padding-left: calc((100vw - clamp(62.5rem, 100vw + 0rem, 90rem)) / 2 + clamp(64px, -17.8181818182px + 0.0818181818 * 100vw, 100px));
  }
}
@media only screen and (max-width: 1000px) and (max-width: 1000px) {
  .content ol {
    padding-left: calc((100vw - clamp(43.75rem, 100vw + 0rem, 62.5rem)) / 2 + clamp(40px, -16px + 0.08 * 100vw, 64px));
  }
}
@media only screen and (max-width: 1000px) and (max-width: 700px) {
  .content ol {
    padding-left: calc((100vw - clamp(22.5rem, 100vw + 0rem, 43.75rem)) / 2 + clamp(20px, -1.1764705882px + 0.0588235294 * 100vw, 40px));
  }
}
@media only screen and (max-width: 1000px) and (max-width: 360px) {
  .content ol {
    padding-left: calc((100vw - clamp(0rem, 100vw + 0rem, 22.5rem)) / 2 + clamp(20px, -1.1764705882px + 0.0588235294 * 100vw, 40px));
  }
}
@media only screen and (max-width: 700px) {
  .content ol {
    min-width: 100%;
  }
}
.content ol li {
  width: 100%;
  font-family: "Urbanist", sans-serif !important;
  font-size: 16px !important;
  line-height: 26px !important;
  font-weight: 400 !important;
  letter-spacing: 0.2px !important;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  color: #47484A;
  word-wrap: break-word;
}
.content ul {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  flex: 1;
  padding: 0;
  margin: 0;
}
@media only screen and (max-width: 1000px) and (min-width: 1680px) {
  .content ul {
    padding-left: 100px;
  }
}
@media only screen and (max-width: 1000px) and (max-width: 1680px) {
  .content ul {
    padding-left: 100px;
  }
}
@media only screen and (max-width: 1000px) and (max-width: 1440px) {
  .content ul {
    padding-left: calc((100vw - clamp(62.5rem, 100vw + 0rem, 90rem)) / 2 + clamp(64px, -17.8181818182px + 0.0818181818 * 100vw, 100px));
  }
}
@media only screen and (max-width: 1000px) and (max-width: 1000px) {
  .content ul {
    padding-left: calc((100vw - clamp(43.75rem, 100vw + 0rem, 62.5rem)) / 2 + clamp(40px, -16px + 0.08 * 100vw, 64px));
  }
}
@media only screen and (max-width: 1000px) and (max-width: 700px) {
  .content ul {
    padding-left: calc((100vw - clamp(22.5rem, 100vw + 0rem, 43.75rem)) / 2 + clamp(20px, -1.1764705882px + 0.0588235294 * 100vw, 40px));
  }
}
@media only screen and (max-width: 1000px) and (max-width: 360px) {
  .content ul {
    padding-left: calc((100vw - clamp(0rem, 100vw + 0rem, 22.5rem)) / 2 + clamp(20px, -1.1764705882px + 0.0588235294 * 100vw, 40px));
  }
}
@media only screen and (max-width: 700px) {
  .content ul {
    min-width: 100%;
  }
}
.content ul li {
  width: 100%;
  font-family: "Urbanist", sans-serif !important;
  font-size: 16px !important;
  line-height: 26px !important;
  font-weight: 400 !important;
  letter-spacing: 0.2px !important;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  color: #47484A;
}
.content ul li::marker {
  font-size: 8px;
  margin-right: 0;
  top: 0;
}
.content a {
  color: #47484A;
  text-decoration: none;
  transition: all;
  transition-duration: 300ms;
  transition-duration-function: cubic-bezier(0.02, 0.41, 0.18, 1.04);
}
.content a:hover, .content a:hover > h3, .content a:hover > h4, .content a:hover > p, .content a:active {
  transition: all;
  transition-duration: 300ms;
  transition-duration-function: cubic-bezier(0.02, 0.41, 0.18, 1.04);
  color: #E2665C;
  text-decoration: underline;
}
.content--darkText h1, .content--darkText h2, .content--darkText h3, .content--darkText h4, .content--darkText p {
  color: #47484A;
}
.content--accordion h2 {
  font-family: "Urbanist", sans-serif !important;
  font-size: 24px !important;
  line-height: 36px !important;
  font-weight: 700 !important;
  letter-spacing: 0.3px !important;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}
@media only screen and (max-width: 700px) {
  .content--accordion h2 {
    font-family: "Urbanist", sans-serif !important;
    font-size: 22px !important;
    line-height: auto !important;
    font-weight: 600 !important;
    letter-spacing: 1px !important;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
  }
}
.content--accordion h3 {
  font-family: "Urbanist", sans-serif !important;
  font-size: 20px !important;
  line-height: 28px !important;
  font-weight: 700 !important;
  letter-spacing: 0.5px !important;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}
@media only screen and (max-width: 700px) {
  .content--accordion h3 {
    font-family: "Urbanist", sans-serif !important;
    font-size: 18px !important;
    line-height: 24px !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
  }
}

.gutenberg-content {
  gap: 16px;
}
.gutenberg-content h1 {
  font-family: "Urbanist", sans-serif !important;
  font-size: 66px !important;
  line-height: 70px !important;
  font-weight: 500 !important;
  letter-spacing: 1px !important;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  margin-bottom: 0;
}
@media only screen and (max-width: 1000px) {
  .gutenberg-content h1 {
    font-family: "Urbanist", sans-serif !important;
    font-size: 60px !important;
    line-height: 64px !important;
    font-weight: 500 !important;
    letter-spacing: 1px !important;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
  }
}
@media only screen and (max-width: 700px) {
  .gutenberg-content h1 {
    font-family: "Urbanist", sans-serif !important;
    font-size: 38px !important;
    line-height: 44px !important;
    font-weight: 600 !important;
    letter-spacing: 1px !important;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
  }
}
.gutenberg-content h2 {
  font-family: "Urbanist", sans-serif !important;
  font-size: 38px !important;
  line-height: 48px !important;
  font-weight: 600 !important;
  letter-spacing: 0.5px !important;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  margin-bottom: 0;
}
@media only screen and (max-width: 700px) {
  .gutenberg-content h2 {
    font-family: "Urbanist", sans-serif !important;
    font-size: 28px !important;
    line-height: 32px !important;
    font-weight: 600 !important;
    letter-spacing: 1px !important;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
  }
}
.gutenberg-content h3 {
  font-family: "Urbanist", sans-serif !important;
  font-size: 24px !important;
  line-height: 36px !important;
  font-weight: 700 !important;
  letter-spacing: 0.3px !important;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  margin-bottom: 0;
}
@media only screen and (max-width: 700px) {
  .gutenberg-content h3 {
    font-family: "Urbanist", sans-serif !important;
    font-size: 22px !important;
    line-height: auto !important;
    font-weight: 600 !important;
    letter-spacing: 1px !important;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
  }
}
.gutenberg-content h4 {
  font-family: "Urbanist", sans-serif !important;
  font-size: 20px !important;
  line-height: 28px !important;
  font-weight: 700 !important;
  letter-spacing: 0.5px !important;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  margin-bottom: 0;
}
@media only screen and (max-width: 700px) {
  .gutenberg-content h4 {
    font-family: "Urbanist", sans-serif !important;
    font-size: 18px !important;
    line-height: 24px !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
  }
}
.gutenberg-content p {
  font-family: "Urbanist", sans-serif !important;
  font-size: 16px !important;
  line-height: 26px !important;
  font-weight: 400 !important;
  letter-spacing: 0.2px !important;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  margin-bottom: 0;
}
.gutenberg-content ol {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  flex: 1;
  padding: 0;
  padding-left: 15px;
  margin: 0;
}
@media only screen and (max-width: 1000px) and (min-width: 1680px) {
  .gutenberg-content ol {
    padding-left: 100px;
  }
}
@media only screen and (max-width: 1000px) and (max-width: 1680px) {
  .gutenberg-content ol {
    padding-left: 100px;
  }
}
@media only screen and (max-width: 1000px) and (max-width: 1440px) {
  .gutenberg-content ol {
    padding-left: calc((100vw - clamp(62.5rem, 100vw + 0rem, 90rem)) / 2 + clamp(64px, -17.8181818182px + 0.0818181818 * 100vw, 100px));
  }
}
@media only screen and (max-width: 1000px) and (max-width: 1000px) {
  .gutenberg-content ol {
    padding-left: calc((100vw - clamp(43.75rem, 100vw + 0rem, 62.5rem)) / 2 + clamp(40px, -16px + 0.08 * 100vw, 64px));
  }
}
@media only screen and (max-width: 1000px) and (max-width: 700px) {
  .gutenberg-content ol {
    padding-left: calc((100vw - clamp(22.5rem, 100vw + 0rem, 43.75rem)) / 2 + clamp(20px, -1.1764705882px + 0.0588235294 * 100vw, 40px));
  }
}
@media only screen and (max-width: 1000px) and (max-width: 360px) {
  .gutenberg-content ol {
    padding-left: calc((100vw - clamp(0rem, 100vw + 0rem, 22.5rem)) / 2 + clamp(20px, -1.1764705882px + 0.0588235294 * 100vw, 40px));
  }
}
@media only screen and (max-width: 700px) {
  .gutenberg-content ol {
    min-width: 100%;
  }
}
.gutenberg-content ol li {
  width: 100%;
  font-family: "Urbanist", sans-serif !important;
  font-size: 16px !important;
  line-height: 26px !important;
  font-weight: 400 !important;
  letter-spacing: 0.2px !important;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  color: #47484A;
  word-wrap: break-word;
}
.gutenberg-content ul {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  flex: 1;
  padding: 0;
  padding-left: 15px;
  margin: 0;
}
@media only screen and (max-width: 1000px) and (min-width: 1680px) {
  .gutenberg-content ul {
    padding-left: 100px;
  }
}
@media only screen and (max-width: 1000px) and (max-width: 1680px) {
  .gutenberg-content ul {
    padding-left: 100px;
  }
}
@media only screen and (max-width: 1000px) and (max-width: 1440px) {
  .gutenberg-content ul {
    padding-left: calc((100vw - clamp(62.5rem, 100vw + 0rem, 90rem)) / 2 + clamp(64px, -17.8181818182px + 0.0818181818 * 100vw, 100px));
  }
}
@media only screen and (max-width: 1000px) and (max-width: 1000px) {
  .gutenberg-content ul {
    padding-left: calc((100vw - clamp(43.75rem, 100vw + 0rem, 62.5rem)) / 2 + clamp(40px, -16px + 0.08 * 100vw, 64px));
  }
}
@media only screen and (max-width: 1000px) and (max-width: 700px) {
  .gutenberg-content ul {
    padding-left: calc((100vw - clamp(22.5rem, 100vw + 0rem, 43.75rem)) / 2 + clamp(20px, -1.1764705882px + 0.0588235294 * 100vw, 40px));
  }
}
@media only screen and (max-width: 1000px) and (max-width: 360px) {
  .gutenberg-content ul {
    padding-left: calc((100vw - clamp(0rem, 100vw + 0rem, 22.5rem)) / 2 + clamp(20px, -1.1764705882px + 0.0588235294 * 100vw, 40px));
  }
}
@media only screen and (max-width: 700px) {
  .gutenberg-content ul {
    min-width: 100%;
  }
}
.gutenberg-content ul li {
  width: 100%;
  font-family: "Urbanist", sans-serif !important;
  font-size: 16px !important;
  line-height: 26px !important;
  font-weight: 400 !important;
  letter-spacing: 0.2px !important;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  color: #47484A;
}
.gutenberg-content ul li::marker {
  font-size: 8px;
  margin-right: 0;
  top: 0;
}
.gutenberg-content a {
  color: #47484A;
  text-decoration: none;
  transition: all;
  transition-duration: 300ms;
  transition-duration-function: cubic-bezier(0.02, 0.41, 0.18, 1.04);
}
.gutenberg-content a:hover, .gutenberg-content a:hover > h3, .gutenberg-content a:hover > h4, .gutenberg-content a:hover > p, .gutenberg-content a:active {
  transition: all;
  transition-duration: 300ms;
  transition-duration-function: cubic-bezier(0.02, 0.41, 0.18, 1.04);
  color: #E2665C;
  text-decoration: underline;
}

.split-ul {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
}
.split-ul ul {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0;
  margin: 0;
}
@media only screen and (max-width: 1000px) and (min-width: 1680px) {
  .split-ul ul {
    padding-left: 100px;
  }
}
@media only screen and (max-width: 1000px) and (max-width: 1680px) {
  .split-ul ul {
    padding-left: 100px;
  }
}
@media only screen and (max-width: 1000px) and (max-width: 1440px) {
  .split-ul ul {
    padding-left: calc((100vw - clamp(62.5rem, 100vw + 0rem, 90rem)) / 2 + clamp(64px, -17.8181818182px + 0.0818181818 * 100vw, 100px));
  }
}
@media only screen and (max-width: 1000px) and (max-width: 1000px) {
  .split-ul ul {
    padding-left: calc((100vw - clamp(43.75rem, 100vw + 0rem, 62.5rem)) / 2 + clamp(40px, -16px + 0.08 * 100vw, 64px));
  }
}
@media only screen and (max-width: 1000px) and (max-width: 700px) {
  .split-ul ul {
    padding-left: calc((100vw - clamp(22.5rem, 100vw + 0rem, 43.75rem)) / 2 + clamp(20px, -1.1764705882px + 0.0588235294 * 100vw, 40px));
  }
}
@media only screen and (max-width: 1000px) and (max-width: 360px) {
  .split-ul ul {
    padding-left: calc((100vw - clamp(0rem, 100vw + 0rem, 22.5rem)) / 2 + clamp(20px, -1.1764705882px + 0.0588235294 * 100vw, 40px));
  }
}
@media only screen and (max-width: 700px) {
  .split-ul ul {
    min-width: 100%;
  }
}
.split-ul ul li {
  width: 100%;
  font-family: "Urbanist", sans-serif !important;
  font-size: 16px !important;
  line-height: 26px !important;
  font-weight: 400 !important;
  letter-spacing: 0.2px !important;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  color: #47484A;
}
.split-ul ul li::marker {
  font-size: 8px;
  margin-right: 2;
  top: 0;
}

/* ----------------------------- Spacing ----------------------------- */
.h-100 {
  height: clamp(64px, -17.8181818182px + 0.0818181818 * 100vw, 100px);
  width: 100%;
}
@media only screen and (max-width: 1000px) {
  .h-100 {
    height: clamp(40px, -16px + 0.08 * 100vw, 64px);
  }
}

.h-80 {
  height: clamp(64px, 27.6363636364px + 0.0363636364 * 100vw, 80px);
  width: 100%;
}
@media only screen and (max-width: 1000px) {
  .h-80 {
    height: clamp(40px, -16px + 0.08 * 100vw, 64px);
  }
}

.h-64 {
  height: clamp(40px, -14.5454545455px + 0.0545454545 * 100vw, 64px);
  width: 100%;
}
@media only screen and (max-width: 1000px) {
  .h-64 {
    height: clamp(32px, 13.3333333333px + 0.0266666667 * 100vw, 40px);
  }
}

.h-32 {
  height: 32px;
  width: 100%;
}
@media only screen and (max-width: 700px) {
  .h-32 {
    height: 20px;
  }
}

.h-28 {
  height: 28px;
  width: 100%;
}

.h-24 {
  height: 24px;
  width: 100%;
}

.h-20 {
  height: 20px;
  width: 100%;
}

.h-8 {
  height: 8;
  width: 100%;
}

.gap-100 {
  gap: clamp(64px, -17.8181818182px + 0.0818181818 * 100vw, 100px);
}
@media only screen and (max-width: 1000px) {
  .gap-100 {
    gap: clamp(40px, -16px + 0.08 * 100vw, 64px);
  }
}

.gap-80 {
  gap: clamp(40px, -50.9090909091px + 0.0909090909 * 100vw, 80px);
}
@media only screen and (max-width: 1000px) {
  .gap-80 {
    gap: clamp(24px, -13.3333333333px + 0.0533333333 * 100vw, 40px);
  }
}

/* ----------------------------- Margin Classes ----------------------------- */
.m-t-100 {
  margin-top: clamp(64px, -17.8181818182px + 0.0818181818 * 100vw, 100px);
}
@media only screen and (max-width: 1000px) {
  .m-t-100 {
    margin-top: clamp(40px, -16px + 0.08 * 100vw, 64px);
  }
}

.m-b-100 {
  margin-top: clamp(64px, -17.8181818182px + 0.0818181818 * 100vw, 100px);
}
@media only screen and (max-width: 1000px) {
  .m-b-100 {
    margin-top: clamp(40px, -16px + 0.08 * 100vw, 64px);
  }
}

.m-t-80 {
  margin-top: clamp(64px, 27.6363636364px + 0.0363636364 * 100vw, 80px);
}
@media only screen and (max-width: 1000px) {
  .m-t-80 {
    margin-top: clamp(40px, -16px + 0.08 * 100vw, 64px);
  }
}

.m-b-64 {
  margin-top: clamp(40px, -14.5454545455px + 0.0545454545 * 100vw, 64px);
}
@media only screen and (max-width: 1000px) {
  .m-b-64 {
    margin-top: clamp(32px, 13.3333333333px + 0.0266666667 * 100vw, 40px);
  }
}

.m-t-64 {
  margin-top: clamp(40px, -14.5454545455px + 0.0545454545 * 100vw, 64px);
}
@media only screen and (max-width: 1000px) {
  .m-t-64 {
    margin-top: clamp(32px, 13.3333333333px + 0.0266666667 * 100vw, 40px);
  }
}

.m-b-80 {
  margin-top: clamp(64px, 27.6363636364px + 0.0363636364 * 100vw, 80px);
}
@media only screen and (max-width: 1000px) {
  .m-b-80 {
    margin-top: clamp(40px, -16px + 0.08 * 100vw, 64px);
  }
}

.m-r-100 {
  margin-right: clamp(64px, -17.8181818182px + 0.0818181818 * 100vw, 100px);
}
@media only screen and (max-width: 1000px) {
  .m-r-100 {
    margin-right: clamp(40px, -16px + 0.08 * 100vw, 64px);
  }
}

.m-l-100 {
  margin-left: clamp(64px, -17.8181818182px + 0.0818181818 * 100vw, 100px);
}
@media only screen and (max-width: 1000px) {
  .m-l-100 {
    margin-left: clamp(40px, -16px + 0.08 * 100vw, 64px);
  }
}

.m-r-80 {
  margin-right: clamp(64px, -17.8181818182px + 0.0818181818 * 100vw, 100px);
}
@media only screen and (max-width: 1000px) {
  .m-r-80 {
    margin-right: clamp(40px, -16px + 0.08 * 100vw, 64px);
  }
}

.m-l-80 {
  margin-left: clamp(64px, 27.6363636364px + 0.0363636364 * 100vw, 80px);
}
@media only screen and (max-width: 1000px) {
  .m-l-80 {
    margin-left: clamp(40px, -16px + 0.08 * 100vw, 64px);
  }
}

/* ----------------------------- Padding Classes ----------------------------- */
.p-t-100 {
  padding-top: clamp(64px, -17.8181818182px + 0.0818181818 * 100vw, 100px);
}
@media only screen and (max-width: 1000px) {
  .p-t-100 {
    padding-top: clamp(40px, -16px + 0.08 * 100vw, 64px);
  }
}

.p-b-100 {
  padding-bottom: clamp(64px, -17.8181818182px + 0.0818181818 * 100vw, 100px);
}
@media only screen and (max-width: 1000px) {
  .p-b-100 {
    padding-bottom: clamp(40px, -16px + 0.08 * 100vw, 64px);
  }
}

.p-t-80 {
  padding-top: clamp(64px, 27.6363636364px + 0.0363636364 * 100vw, 80px);
}
@media only screen and (max-width: 1000px) {
  .p-t-80 {
    padding-top: clamp(40px, -16px + 0.08 * 100vw, 64px);
  }
}

.p-b-80 {
  padding-bottom: clamp(64px, 27.6363636364px + 0.0363636364 * 100vw, 80px);
}
@media only screen and (max-width: 1000px) {
  .p-b-80 {
    padding-bottom: clamp(40px, -16px + 0.08 * 100vw, 64px);
  }
}

.p-b-64 {
  padding-bottom: clamp(40px, -14.5454545455px + 0.0545454545 * 100vw, 64px);
}
@media only screen and (max-width: 1000px) {
  .p-b-64 {
    padding-bottom: clamp(32px, 13.3333333333px + 0.0266666667 * 100vw, 40px);
  }
}

.p-t-64 {
  padding-top: clamp(40px, -14.5454545455px + 0.0545454545 * 100vw, 64px);
}
@media only screen and (max-width: 1000px) {
  .p-t-64 {
    padding-top: clamp(32px, 13.3333333333px + 0.0266666667 * 100vw, 40px);
  }
}

.p-r-100 {
  padding-right: clamp(64px, -17.8181818182px + 0.0818181818 * 100vw, 100px);
}
@media only screen and (max-width: 1000px) {
  .p-r-100 {
    padding-right: clamp(40px, -16px + 0.08 * 100vw, 64px);
  }
}

.p-l-100 {
  padding-left: clamp(64px, -17.8181818182px + 0.0818181818 * 100vw, 100px);
}
@media only screen and (max-width: 1000px) {
  .p-l-100 {
    padding-left: clamp(40px, -16px + 0.08 * 100vw, 64px);
  }
}

.p-r-80 {
  padding-right: clamp(64px, -17.8181818182px + 0.0818181818 * 100vw, 100px);
}
@media only screen and (max-width: 1000px) {
  .p-r-80 {
    padding-right: clamp(40px, -16px + 0.08 * 100vw, 64px);
  }
}

.p-l-80 {
  padding-left: clamp(64px, 27.6363636364px + 0.0363636364 * 100vw, 80px);
}
@media only screen and (max-width: 1000px) {
  .p-l-80 {
    padding-left: clamp(40px, -16px + 0.08 * 100vw, 64px);
  }
}

@media only screen and (min-width: 1680px) {
  .fpl {
    padding-left: 100px;
  }
}
@media only screen and (max-width: 1680px) {
  .fpl {
    padding-left: 100px;
  }
}
@media only screen and (max-width: 1440px) {
  .fpl {
    padding-left: calc((100vw - clamp(62.5rem, 100vw + 0rem, 90rem)) / 2 + clamp(64px, -17.8181818182px + 0.0818181818 * 100vw, 100px));
  }
}
@media only screen and (max-width: 1000px) {
  .fpl {
    padding-left: calc((100vw - clamp(43.75rem, 100vw + 0rem, 62.5rem)) / 2 + clamp(40px, -16px + 0.08 * 100vw, 64px));
  }
}
@media only screen and (max-width: 700px) {
  .fpl {
    padding-left: calc((100vw - clamp(22.5rem, 100vw + 0rem, 43.75rem)) / 2 + clamp(20px, -1.1764705882px + 0.0588235294 * 100vw, 40px));
  }
}
@media only screen and (max-width: 360px) {
  .fpl {
    padding-left: calc((100vw - clamp(0rem, 100vw + 0rem, 22.5rem)) / 2 + clamp(20px, -1.1764705882px + 0.0588235294 * 100vw, 40px));
  }
}

@media only screen and (min-width: 1680px) {
  .fpr {
    padding-right: 100px;
  }
}
@media only screen and (max-width: 1680px) {
  .fpr {
    padding-right: 100px;
  }
}
@media only screen and (max-width: 1440px) {
  .fpr {
    padding-right: calc((100vw - clamp(62.5rem, 100vw + 0rem, 90rem)) / 2 + clamp(64px, -17.8181818182px + 0.0818181818 * 100vw, 100px));
  }
}
@media only screen and (max-width: 1000px) {
  .fpr {
    padding-right: calc((100vw - clamp(43.75rem, 100vw + 0rem, 62.5rem)) / 2 + clamp(40px, -16px + 0.08 * 100vw, 64px));
  }
}
@media only screen and (max-width: 700px) {
  .fpr {
    padding-right: calc((100vw - clamp(22.5rem, 100vw + 0rem, 43.75rem)) / 2 + clamp(20px, -1.1764705882px + 0.0588235294 * 100vw, 40px));
  }
}
@media only screen and (max-width: 360px) {
  .fpr {
    padding-right: calc((100vw - clamp(0rem, 100vw + 0rem, 22.5rem)) / 2 + clamp(20px, -1.1764705882px + 0.0588235294 * 100vw, 40px));
  }
}

@media only screen and (min-width: 1680px) {
  .fp {
    padding-left: 100px;
    padding-right: 100px;
  }
}
@media only screen and (max-width: 1680px) {
  .fp {
    padding-left: 100px;
    padding-right: 100px;
  }
}
@media only screen and (max-width: 1440px) {
  .fp {
    padding-left: calc((100vw - clamp(62.5rem, 100vw + 0rem, 90rem)) / 2 + clamp(64px, -17.8181818182px + 0.0818181818 * 100vw, 100px));
    padding-right: calc((100vw - clamp(62.5rem, 100vw + 0rem, 90rem)) / 2 + clamp(64px, -17.8181818182px + 0.0818181818 * 100vw, 100px));
  }
}
@media only screen and (max-width: 1000px) {
  .fp {
    padding-left: calc((100vw - clamp(43.75rem, 100vw + 0rem, 62.5rem)) / 2 + clamp(40px, -16px + 0.08 * 100vw, 64px));
    padding-right: calc((100vw - clamp(43.75rem, 100vw + 0rem, 62.5rem)) / 2 + clamp(40px, -16px + 0.08 * 100vw, 64px));
  }
}
@media only screen and (max-width: 700px) {
  .fp {
    padding-left: calc((100vw - clamp(22.5rem, 100vw + 0rem, 43.75rem)) / 2 + clamp(20px, -1.1764705882px + 0.0588235294 * 100vw, 40px));
    padding-right: calc((100vw - clamp(22.5rem, 100vw + 0rem, 43.75rem)) / 2 + clamp(20px, -1.1764705882px + 0.0588235294 * 100vw, 40px));
  }
}
@media only screen and (max-width: 360px) {
  .fp {
    padding-left: calc((100vw - clamp(0rem, 100vw + 0rem, 22.5rem)) / 2 + clamp(20px, -1.1764705882px + 0.0588235294 * 100vw, 40px));
    padding-right: calc((100vw - clamp(0rem, 100vw + 0rem, 22.5rem)) / 2 + clamp(20px, -1.1764705882px + 0.0588235294 * 100vw, 40px));
  }
}

@media only screen and (min-width: 1680px) {
  .fml {
    margin-left: 100px;
  }
}
@media only screen and (max-width: 1680px) {
  .fml {
    margin-left: 100px;
  }
}
@media only screen and (max-width: 1440px) {
  .fml {
    margin-left: calc((100vw - clamp(62.5rem, 100vw + 0rem, 90rem)) / 2 + clamp(64px, -17.8181818182px + 0.0818181818 * 100vw, 100px));
  }
}
@media only screen and (max-width: 1000px) {
  .fml {
    margin-left: calc((100vw - clamp(43.75rem, 100vw + 0rem, 62.5rem)) / 2 + clamp(40px, -16px + 0.08 * 100vw, 64px));
  }
}
@media only screen and (max-width: 700px) {
  .fml {
    margin-left: calc((100vw - clamp(22.5rem, 100vw + 0rem, 43.75rem)) / 2 + clamp(20px, -1.1764705882px + 0.0588235294 * 100vw, 40px));
  }
}
@media only screen and (max-width: 360px) {
  .fml {
    margin-left: calc((100vw - clamp(0rem, 100vw + 0rem, 22.5rem)) / 2 + clamp(20px, -1.1764705882px + 0.0588235294 * 100vw, 40px));
  }
}

@media only screen and (min-width: 1680px) {
  .fmr {
    margin-right: 100px;
  }
}
@media only screen and (max-width: 1680px) {
  .fmr {
    margin-right: 100px;
  }
}
@media only screen and (max-width: 1440px) {
  .fmr {
    margin-right: calc((100vw - clamp(62.5rem, 100vw + 0rem, 90rem)) / 2 + clamp(64px, -17.8181818182px + 0.0818181818 * 100vw, 100px));
  }
}
@media only screen and (max-width: 1000px) {
  .fmr {
    margin-right: calc((100vw - clamp(43.75rem, 100vw + 0rem, 62.5rem)) / 2 + clamp(40px, -16px + 0.08 * 100vw, 64px));
  }
}
@media only screen and (max-width: 700px) {
  .fmr {
    margin-right: calc((100vw - clamp(22.5rem, 100vw + 0rem, 43.75rem)) / 2 + clamp(20px, -1.1764705882px + 0.0588235294 * 100vw, 40px));
  }
}
@media only screen and (max-width: 360px) {
  .fmr {
    margin-right: calc((100vw - clamp(0rem, 100vw + 0rem, 22.5rem)) / 2 + clamp(20px, -1.1764705882px + 0.0588235294 * 100vw, 40px));
  }
}

@media only screen and (min-width: 1680px) {
  .fm {
    margin-left: 100px;
    margin-right: 100px;
  }
}
@media only screen and (max-width: 1680px) {
  .fm {
    margin-left: 100px;
    margin-right: 100px;
  }
}
@media only screen and (max-width: 1440px) {
  .fm {
    margin-left: calc((100vw - clamp(62.5rem, 100vw + 0rem, 90rem)) / 2 + clamp(64px, -17.8181818182px + 0.0818181818 * 100vw, 100px));
    margin-right: calc((100vw - clamp(62.5rem, 100vw + 0rem, 90rem)) / 2 + clamp(64px, -17.8181818182px + 0.0818181818 * 100vw, 100px));
  }
}
@media only screen and (max-width: 1000px) {
  .fm {
    margin-left: calc((100vw - clamp(43.75rem, 100vw + 0rem, 62.5rem)) / 2 + clamp(40px, -16px + 0.08 * 100vw, 64px));
    margin-right: calc((100vw - clamp(43.75rem, 100vw + 0rem, 62.5rem)) / 2 + clamp(40px, -16px + 0.08 * 100vw, 64px));
  }
}
@media only screen and (max-width: 700px) {
  .fm {
    margin-left: calc((100vw - clamp(22.5rem, 100vw + 0rem, 43.75rem)) / 2 + clamp(20px, -1.1764705882px + 0.0588235294 * 100vw, 40px));
    margin-right: calc((100vw - clamp(22.5rem, 100vw + 0rem, 43.75rem)) / 2 + clamp(20px, -1.1764705882px + 0.0588235294 * 100vw, 40px));
  }
}
@media only screen and (max-width: 360px) {
  .fm {
    margin-left: calc((100vw - clamp(0rem, 100vw + 0rem, 22.5rem)) / 2 + clamp(20px, -1.1764705882px + 0.0588235294 * 100vw, 40px));
    margin-right: calc((100vw - clamp(0rem, 100vw + 0rem, 22.5rem)) / 2 + clamp(20px, -1.1764705882px + 0.0588235294 * 100vw, 40px));
  }
}

/* ----------------------------- Unique Styles ----------------------------- */
.border-radius-100 {
  border-radius: 0 100px 0 100px;
  overflow: hidden;
}
@media only screen and (max-width: 1000px) {
  .border-radius-100 {
    border-radius: 0 clamp(50px, 17.3333333333px + 0.0466666667 * 100vw, 64px);
  }
}
@media only screen and (max-width: 700px) {
  .border-radius-100 {
    border-radius: 0 50px 0 50px;
  }
}

.border-radius-50 {
  border-radius: 0 50px 0 50px;
  overflow: hidden;
}
@media only screen and (max-width: 700px) {
  .border-radius-50 {
    border-radius: 0 50px 0 50px;
  }
}

.border-radius-75 {
  border-radius: 0 75px 0 75px;
  overflow: hidden;
}

.icon-40 {
  height: 40px;
  width: 40px;
  -o-object-fit: contain;
     object-fit: contain;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.icon-50 {
  height: 50px;
  width: 50px;
  -o-object-fit: contain;
     object-fit: contain;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.icon-60 {
  height: 60px;
  width: 60px;
  -o-object-fit: contain;
     object-fit: contain;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

/* ----------------------------- UI ----------------------------- */
.icon-button {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0 32px 0 20px;
  gap: 10px;
  height: 44px;
  width: -moz-fit-content;
  width: fit-content;
  font-family: "Urbanist", sans-serif !important;
  font-size: 16px !important;
  line-height: auto !important;
  font-weight: 600 !important;
  letter-spacing: 1px !important;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-transform: uppercase;
}
.icon-button--green {
  background-color: #BA8034 !important;
  color: #fff;
  transition: all;
  transition-duration: 300ms;
  transition-duration-function: cubic-bezier(0.02, 0.41, 0.18, 1.04);
  cursor: pointer;
  text-decoration: none;
  color: #fff;
  border-radius: 44px;
}
.icon-button--green:hover {
  outline: 1px solid #BA8034 !important;
  background-color: transparent !important;
  color: #BA8034;
  transition: all;
  transition-duration: 300ms;
  transition-duration-function: cubic-bezier(0.02, 0.41, 0.18, 1.04);
  cursor: pointer;
}
.icon-button--green a {
  text-decoration: none;
}

.normal-button {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border-radius: 3px;
  padding: 0 clamp(24px, 5.8181818182px + 0.0181818182 * 100vw, 32px);
  height: 44px;
  color: #fff;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  font-family: "Urbanist", sans-serif !important;
  font-size: 16px !important;
  line-height: auto !important;
  font-weight: 600 !important;
  letter-spacing: 1px !important;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-transform: uppercase;
}
@media only screen and (max-width: 700px) {
  .normal-button {
    width: 100%;
  }
}
.normal-button--brown {
  background-color: #BA8034;
  background-color: #BA8034 !important;
  color: #fff;
  transition: all;
  transition-duration: 300ms;
  transition-duration-function: cubic-bezier(0.02, 0.41, 0.18, 1.04);
  cursor: pointer;
  text-decoration: none;
}
.normal-button--brown:hover {
  outline: 1px solid #BA8034 !important;
  background-color: transparent !important;
  color: #BA8034;
  transition: all;
  transition-duration: 300ms;
  transition-duration-function: cubic-bezier(0.02, 0.41, 0.18, 1.04);
  cursor: pointer;
}
.normal-button--brown a {
  text-decoration: none;
}
.normal-button--grey {
  background-color: #403D39;
  background-color: #403D39 !important;
  color: #fff;
  transition: all;
  transition-duration: 300ms;
  transition-duration-function: cubic-bezier(0.02, 0.41, 0.18, 1.04);
  cursor: pointer;
  text-decoration: none;
}
.normal-button--grey:hover {
  outline: 1px solid #403D39 !important;
  background-color: none;
  transition: all;
  transition-duration: 300ms;
  transition-duration-function: cubic-bezier(0.02, 0.41, 0.18, 1.04);
  cursor: pointer;
}
.normal-button--grey a {
  text-decoration: none;
}

/*--- Classes for Global Styling ---*/
.g-body {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 26px;
  font-family: "Urbanist", sans-serif !important;
  font-size: 16px !important;
  line-height: 26px !important;
  font-weight: 400 !important;
  letter-spacing: 0.2px !important;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}
@media only screen and (max-width: 1000px) {
  .g-body {
    gap: clamp(18px, 14.625px + 0.009375 * 100vw, 24px);
  }
}
.g-body h1 {
  font-family: "Urbanist", sans-serif !important;
  font-size: 66px !important;
  line-height: 70px !important;
  font-weight: 500 !important;
  letter-spacing: 1px !important;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  -webkit-hyphens: auto !important;
  hyphens: auto !important;
  word-break: break-word;
  color: #403D39;
}
@media only screen and (max-width: 1000px) {
  .g-body h1 {
    font-family: "Urbanist", sans-serif !important;
    font-size: 60px !important;
    line-height: 64px !important;
    font-weight: 500 !important;
    letter-spacing: 1px !important;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
  }
}
@media only screen and (max-width: 700px) {
  .g-body h1 {
    font-family: "Urbanist", sans-serif !important;
    font-size: 38px !important;
    line-height: 44px !important;
    font-weight: 600 !important;
    letter-spacing: 1px !important;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
  }
}
.g-body h2 {
  font-family: "Urbanist", sans-serif !important;
  font-size: 38px !important;
  line-height: 48px !important;
  font-weight: 600 !important;
  letter-spacing: 0.5px !important;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  -webkit-hyphens: auto !important;
  hyphens: auto !important;
  word-break: break-word;
  text-transform: capitalize;
  color: #403D39;
}
@media only screen and (max-width: 700px) {
  .g-body h2 {
    font-family: "Urbanist", sans-serif !important;
    font-size: 28px !important;
    line-height: 32px !important;
    font-weight: 600 !important;
    letter-spacing: 1px !important;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
  }
}
.g-body h3 {
  font-family: "Urbanist", sans-serif !important;
  font-size: 24px !important;
  line-height: 36px !important;
  font-weight: 700 !important;
  letter-spacing: 0.3px !important;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  -webkit-hyphens: auto !important;
  hyphens: auto !important;
  word-break: break-word;
  color: #403D39;
}
@media only screen and (max-width: 700px) {
  .g-body h3 {
    font-family: "Urbanist", sans-serif !important;
    font-size: 22px !important;
    line-height: auto !important;
    font-weight: 600 !important;
    letter-spacing: 1px !important;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
  }
}
.g-body h4 {
  font-family: "Urbanist", sans-serif !important;
  font-size: 20px !important;
  line-height: 28px !important;
  font-weight: 700 !important;
  letter-spacing: 0.5px !important;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  -webkit-hyphens: auto !important;
  hyphens: auto !important;
  word-break: break-word;
}
@media only screen and (max-width: 700px) {
  .g-body h4 {
    font-family: "Urbanist", sans-serif !important;
    font-size: 18px !important;
    line-height: 24px !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
  }
}
.g-body p {
  font-family: "Urbanist", sans-serif !important;
  font-size: 20px !important;
  line-height: 32px !important;
  font-weight: 400 !important;
  letter-spacing: 0.5px !important;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  -webkit-hyphens: auto !important;
  hyphens: auto !important;
  word-break: break-word;
  color: #47484A;
}
.g-body ol {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  flex: 1;
  padding: 0;
  margin: 0;
  color: #47484A;
  gap: 24px;
}
@media only screen and (max-width: 1000px) and (min-width: 1680px) {
  .g-body ol {
    padding-left: 100px;
  }
}
@media only screen and (max-width: 1000px) and (max-width: 1680px) {
  .g-body ol {
    padding-left: 100px;
  }
}
@media only screen and (max-width: 1000px) and (max-width: 1440px) {
  .g-body ol {
    padding-left: calc((100vw - clamp(62.5rem, 100vw + 0rem, 90rem)) / 2 + clamp(64px, -17.8181818182px + 0.0818181818 * 100vw, 100px));
  }
}
@media only screen and (max-width: 1000px) and (max-width: 1000px) {
  .g-body ol {
    padding-left: calc((100vw - clamp(43.75rem, 100vw + 0rem, 62.5rem)) / 2 + clamp(40px, -16px + 0.08 * 100vw, 64px));
  }
}
@media only screen and (max-width: 1000px) and (max-width: 700px) {
  .g-body ol {
    padding-left: calc((100vw - clamp(22.5rem, 100vw + 0rem, 43.75rem)) / 2 + clamp(20px, -1.1764705882px + 0.0588235294 * 100vw, 40px));
  }
}
@media only screen and (max-width: 1000px) and (max-width: 360px) {
  .g-body ol {
    padding-left: calc((100vw - clamp(0rem, 100vw + 0rem, 22.5rem)) / 2 + clamp(20px, -1.1764705882px + 0.0588235294 * 100vw, 40px));
  }
}
@media only screen and (max-width: 700px) {
  .g-body ol {
    min-width: 100%;
  }
}
.g-body ol li {
  width: 100%;
  font-family: "Urbanist", sans-serif !important;
  font-size: 16px !important;
  line-height: 26px !important;
  font-weight: 400 !important;
  letter-spacing: 0.2px !important;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  color: #47484A;
  word-wrap: break-word;
}
.g-body ul {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  flex: 1;
  padding: 0;
  padding-left: 16px;
  margin: 0;
  color: #47484A;
  font-family: "Urbanist", sans-serif !important;
  font-size: 16px !important;
  line-height: 26px !important;
  font-weight: 400 !important;
  letter-spacing: 0.2px !important;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}
@media only screen and (max-width: 700px) {
  .g-body ul {
    min-width: 100%;
  }
}
.g-body ul li {
  width: 100%;
  font-family: "Urbanist", sans-serif !important;
  font-size: 16px !important;
  line-height: 26px !important;
  font-weight: 400 !important;
  letter-spacing: 0.2px !important;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  color: #47484A;
}
.g-body ul li::marker {
  font-size: 8px;
  width: 12px;
  top: 0;
}
.g-body a {
  color: #47484A;
  text-decoration: none;
  transition: all;
  transition-duration: 300ms;
  transition-duration-function: cubic-bezier(0.02, 0.41, 0.18, 1.04);
}
.g-body a:hover, .g-body a:hover > h3, .g-body a:hover > h4, .g-body a:hover > p, .g-body a:active {
  transition: all;
  transition-duration: 300ms;
  transition-duration-function: cubic-bezier(0.02, 0.41, 0.18, 1.04);
  color: #E2665C;
  text-decoration: underline;
}
.g-body--darkText h1, .g-body--darkText h2, .g-body--darkText h3, .g-body--darkText h4, .g-body--darkText p {
  color: #47484A;
}
.g-body--accordion h2 {
  font-family: "Urbanist", sans-serif !important;
  font-size: 24px !important;
  line-height: 36px !important;
  font-weight: 700 !important;
  letter-spacing: 0.3px !important;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}
@media only screen and (max-width: 700px) {
  .g-body--accordion h2 {
    font-family: "Urbanist", sans-serif !important;
    font-size: 22px !important;
    line-height: auto !important;
    font-weight: 600 !important;
    letter-spacing: 1px !important;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
  }
}
.g-body--accordion h3 {
  font-family: "Urbanist", sans-serif !important;
  font-size: 20px !important;
  line-height: 28px !important;
  font-weight: 700 !important;
  letter-spacing: 0.5px !important;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}
@media only screen and (max-width: 700px) {
  .g-body--accordion h3 {
    font-family: "Urbanist", sans-serif !important;
    font-size: 18px !important;
    line-height: 24px !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
  }
}

.t-white {
  color: #fff;
}

.t-body {
  color: #47484A;
}

.b-18-b {
  font-family: "Urbanist", sans-serif !important;
  font-size: 18px !important;
  line-height: 26px !important;
  font-weight: 700 !important;
  letter-spacing: 0.2px !important;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

.b-18-r {
  font-family: "Urbanist", sans-serif !important;
  font-size: 18px !important;
  line-height: 28px !important;
  font-weight: 400 !important;
  letter-spacing: 0.3px !important;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

.b-16-b {
  font-family: "Urbanist", sans-serif !important;
  font-size: 16px !important;
  line-height: 24px !important;
  font-weight: 700 !important;
  letter-spacing: 0.5px !important;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

.b-16-r {
  font-family: "Urbanist", sans-serif !important;
  font-size: 16px !important;
  line-height: 26px !important;
  font-weight: 400 !important;
  letter-spacing: 0.2px !important;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

.b-14-b {
  font-family: "Urbanist", sans-serif !important;
  font-size: 14px !important;
  line-height: 20px !important;
  font-weight: 700 !important;
  letter-spacing: 0.2px !important;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

.b-14-r {
  font-family: "Urbanist", sans-serif !important;
  font-size: 14px !important;
  line-height: 22px !important;
  font-weight: 400 !important;
  letter-spacing: 0.2px !important;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

.b-12-b {
  font-family: "Urbanist", sans-serif !important;
  font-size: 12px !important;
  line-height: 18px !important;
  font-weight: 700 !important;
  letter-spacing: 1px !important;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

.b-12-r {
  font-family: "Urbanist", sans-serif !important;
  font-size: 12px !important;
  line-height: 18px !important;
  font-weight: 400 !important;
  letter-spacing: 1px !important;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

.white-text p {
  color: white !important;
}

h2.cm__title {
  font-size: 33px !important;
}

/* ----------------------------- Globals ----------------------------- */
.header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.05));
  height: 104px;
  max-height: 104px;
  min-width: 100%;
  z-index: 100000;
}
@media only screen and (max-width: 700px) {
  .header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    min-width: 335px;
    width: 100%;
    padding-top: 12px;
    padding-bottom: 12px;
    padding-left: clamp(12px, 3.5294117647px + 0.0235294118 * 100vw, 20px);
    padding-right: clamp(12px, 3.5294117647px + 0.0235294118 * 100vw, 20px);
    top: 8px;
    border-radius: 3px;
    height: 68px;
    max-height: 68px;
    gap: 16px;
    filter: drop-shadow(0 6px 24px rgba(0, 0, 0, 0.23));
    background-color: rgb(255, 255, 255);
  }
}
@media only screen and (max-width: 700px) and (min-width: 1680px) {
  .header {
    max-width: calc(100vw - ((100vw - clamp(1440px, 0px + 1 * 100vw, 1680px)) / 2 + 100px) * 2);
    left: calc((100vw - clamp(1440px, 0px + 1 * 100vw, 1680px)) / 2 + 100px);
    right: calc((100vw - clamp(1440px, 0px + 1 * 100vw, 1680px)) / 2 + 100px);
  }
}
@media only screen and (max-width: 700px) and (max-width: 1680px) {
  .header {
    max-width: calc(100vw - ((100vw - clamp(1440px, 0px + 1 * 100vw, 1680px)) / 2 + 100px) * 2);
    left: calc((100vw - clamp(1440px, 0px + 1 * 100vw, 1680px)) / 2 + 100px);
    right: calc((100vw - clamp(1440px, 0px + 1 * 100vw, 1680px)) / 2 + 100px);
  }
}
@media only screen and (max-width: 700px) and (max-width: 1440px) {
  .header {
    max-width: calc(100vw - ((100vw - clamp(62.5rem, 100vw + 0rem, 90rem)) / 2 + clamp(64px, -17.8181818182px + 0.0818181818 * 100vw, 100px)) * 2);
    left: calc((100vw - clamp(62.5rem, 100vw + 0rem, 90rem)) / 2 + clamp(64px, -17.8181818182px + 0.0818181818 * 100vw, 100px));
    right: calc((100vw - clamp(62.5rem, 100vw + 0rem, 90rem)) / 2 + clamp(64px, -17.8181818182px + 0.0818181818 * 100vw, 100px));
  }
}
@media only screen and (max-width: 700px) and (max-width: 1000px) {
  .header {
    max-width: calc(100vw - ((100vw - clamp(43.75rem, 100vw + 0rem, 62.5rem)) / 2 + clamp(40px, -16px + 0.08 * 100vw, 64px)) * 2);
    left: calc((100vw - clamp(43.75rem, 100vw + 0rem, 62.5rem)) / 2 + clamp(40px, -16px + 0.08 * 100vw, 64px));
    right: calc((100vw - clamp(43.75rem, 100vw + 0rem, 62.5rem)) / 2 + clamp(40px, -16px + 0.08 * 100vw, 64px));
  }
}
@media only screen and (max-width: 700px) and (max-width: 700px) {
  .header {
    max-width: calc(100vw - ((100vw - clamp(22.5rem, 100vw + 0rem, 43.75rem)) / 2 + clamp(20px, -1.1764705882px + 0.0588235294 * 100vw, 40px)) * 2);
    left: calc((100vw - clamp(22.5rem, 100vw + 0rem, 43.75rem)) / 2 + clamp(20px, -1.1764705882px + 0.0588235294 * 100vw, 40px));
    right: calc((100vw - clamp(22.5rem, 100vw + 0rem, 43.75rem)) / 2 + clamp(20px, -1.1764705882px + 0.0588235294 * 100vw, 40px));
  }
}
@media only screen and (max-width: 700px) and (max-width: 360px) {
  .header {
    max-width: calc(100vw - ((100vw - clamp(0rem, 100vw + 0rem, 22.5rem)) / 2 + clamp(20px, -1.1764705882px + 0.0588235294 * 100vw, 40px)) * 2);
    left: calc((100vw - clamp(0rem, 100vw + 0rem, 22.5rem)) / 2 + clamp(20px, -1.1764705882px + 0.0588235294 * 100vw, 40px));
    right: calc((100vw - clamp(0rem, 100vw + 0rem, 22.5rem)) / 2 + clamp(20px, -1.1764705882px + 0.0588235294 * 100vw, 40px));
  }
}
@media only screen and (max-width: 460px) {
  .header {
    min-width: calc(100% - 40px);
    max-width: calc(100% - 24px);
    left: 12px;
    right: 12px;
  }
}
.header__logo {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  background-color: #fff;
  height: 180px;
  width: 180px;
  margin-top: -30px;
  padding-bottom: 33px;
  border-radius: 100px;
}
@media only screen and (max-width: 700px) {
  .header__logo {
    height: 48px;
    width: -moz-fit-content;
    width: fit-content;
    margin-top: 0;
    padding-bottom: 0;
  }
}
.header__logo img {
  height: 99px;
  width: auto;
}
@media only screen and (max-width: 700px) {
  .header__logo img {
    height: 52px;
  }
}
.header .mobile-location {
  display: none;
}
@media only screen and (max-width: 700px) {
  .header .mobile-location {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    font-family: "Urbanist", sans-serif !important;
    font-size: 14px !important;
    line-height: 14px !important;
    font-weight: 700 !important;
    letter-spacing: 0.1px !important;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-size: clamp(12px, 9.8823529412px + 0.0058823529 * 100vw, 14px) !important;
    color: #47484A;
    justify-self: flex-end;
    flex: 1;
  }
}
.header__links {
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
}
@media only screen and (max-width: 700px) {
  .header__links {
    gap: 1px;
  }
}
@media only screen and (max-width: 700px) {
  .header__links h3 {
    font-family: "Urbanist", sans-serif !important;
    font-size: 14px !important;
    line-height: 20px !important;
    font-weight: 700 !important;
    letter-spacing: 0.2px !important;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
  }
}
@media only screen and (max-width: 700px) {
  .header__links--desktop {
    display: none;
  }
}
@media only screen and (max-width: 700px) {
  .header__links img {
    height: clamp(16px, 7.5294117647px + 0.0235294118 * 100vw, 24px);
  }
}

.footer {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  padding-top: 80px;
  padding-bottom: 80px;
  gap: 20px;
}
@media only screen and (max-width: 700px) {
  .footer {
    padding-top: 40px;
    padding-bottom: 120px;
  }
}
.footer__head {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}
.footer__head-socials {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-end;
  padding-top: 20px;
  gap: 32px;
}
.footer__links {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
  color: #47484A;
  transition: all;
  transition-duration: 300ms;
  transition-duration-function: cubic-bezier(0.02, 0.41, 0.18, 1.04);
  cursor: pointer;
}
.footer__links a {
  font-family: "Urbanist", sans-serif !important;
  font-size: 16px !important;
  line-height: 26px !important;
  font-weight: 400 !important;
  letter-spacing: 0.2px !important;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  color: #BA8034;
  text-decoration: none;
  pointer-events: none;
}
.footer__links a:hover {
  transition: all;
  transition-duration: 300ms;
  transition-duration-function: cubic-bezier(0.02, 0.41, 0.18, 1.04);
  text-decoration: underline;
}
.footer__links .divider {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  width: 1px;
  height: 16px;
  background-color: #403D39;
}
.footer .g-body {
  width: 100%;
  gap: 4px;
}
.footer a {
  text-decoration: none;
}

.stickyButtons {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 274px;
  right: 0;
  gap: 4px;
  width: 100px;
  filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.1));
  z-index: 10000;
}
@media only screen and (max-width: 700px) {
  .stickyButtons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    left: calc(50vw - 167.5px);
    bottom: 16px;
    top: unset;
    gap: 7.5px;
    max-width: 335px;
    width: 335px;
    height: 64px;
    padding: 12px;
    background-color: white;
    filter: drop-shadow(0 6px 24px rgba(0, 0, 0, 0.23));
    border-radius: 3px;
  }
}
@media only screen and (max-width: 440px) {
  .stickyButtons {
    left: 12px;
    right: 12px;
    width: calc(100% - 24px);
    max-width: calc(100% - 24px);
  }
}
.stickyButtons__button {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #FDF3E7;
  gap: 8px;
  width: 100px;
  height: 90px;
  border-radius: 3px 0 0 3px;
  font-family: "Urbanist", sans-serif !important;
  font-size: 13px !important;
  line-height: 15.6px !important;
  font-weight: 400 !important;
  letter-spacing: 1px !important;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-transform: uppercase;
  text-align: center;
  background-color: #F8F6F2 !important;
  color: #403D39;
  transition: all;
  transition-duration: 300ms;
  transition-duration-function: cubic-bezier(0.02, 0.41, 0.18, 1.04);
  cursor: pointer;
  text-decoration: none;
}
.stickyButtons__button:hover {
  background-color: #BA8034 !important;
  color: white;
  transition: all;
  transition-duration: 300ms;
  transition-duration-function: cubic-bezier(0.02, 0.41, 0.18, 1.04);
  cursor: pointer;
}
.stickyButtons__button:hover svg path {
  fill: white;
}
.stickyButtons__button a {
  text-decoration: none;
}
@media only screen and (max-width: 700px) {
  .stickyButtons__button {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    padding: 8px 8px 8px 12px;
    height: 100%;
    flex: 1;
    width: auto;
    background-color: #FDF3E7;
    text-align: left;
  }
}
@media only screen and (max-width: 700px) {
  .stickyButtons__button--whatsapp {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    min-height: 44px;
    max-height: 44px;
    min-width: 44px;
    max-width: 44px;
    padding: 0;
    flex: 0;
    border-radius: 100px;
  }
}
@media only screen and (max-width: 700px) {
  .stickyButtons__button-whatsapp {
    display: none;
  }
}

.formPopup {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100000;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  display: none;
}
.formPopup__inner {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  gap: 20px;
  padding: 40px;
  background-color: #403D39;
  border-radius: 12px;
  opacity: 0;
  display: none;
  transform: translateY(-15px);
}
@media only screen and (max-width: 700px) {
  .formPopup__inner {
    margin: 20px;
    padding: clamp(16px, -9.4117647059px + 0.0705882353 * 100vw, 40px);
  }
}
.formPopup__inner-close {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -20px;
  right: -20px;
  height: 40px;
  width: 40px;
  padding-bottom: 2px;
  background-color: #DA0000;
  border-radius: 40px;
  filter: drop-shadow(0 6px 24px rgba(0, 0, 0, 0.23));
  cursor: pointer;
}
.formPopup__inner-close .svg-close {
  height: 24px;
  width: 24px;
}
.formPopup__inner-close .svg-close path {
  stroke: white;
}
.formPopup__inner h4 {
  font-family: "Urbanist", sans-serif !important;
  font-size: 20px !important;
  line-height: 28px !important;
  font-weight: 700 !important;
  letter-spacing: 0.5px !important;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  color: #fff;
}
@media only screen and (max-width: 700px) {
  .formPopup__inner h4 {
    font-family: "Urbanist", sans-serif !important;
    font-size: 18px !important;
    line-height: 24px !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
  }
}
.formPopup__inner .gform_wrapper {
  width: 100%;
}
.formPopup__inner #gform_fields_4, .formPopup__inner #gform_fields_7 {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
}
.formPopup__inner #gform_fields_4 > .gfield, .formPopup__inner #gform_fields_7 > .gfield {
  width: 100% !important;
}
.formPopup__inner #gform_4, .formPopup__inner #gform_7 {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 8px;
}
.formPopup__inner #gform_4 .gform-body.gform_body, .formPopup__inner #gform_7 .gform-body.gform_body {
  width: 100%;
}
.formPopup__inner #gform_4 .gform_footer.top_label, .formPopup__inner #gform_7 .gform_footer.top_label {
  margin: 0 !important;
  padding: 0 !important;
  align-self: flex-start;
  width: 100% !important;
}
.formPopup__inner #gform_4 .gform_footer.before, .formPopup__inner #gform_7 .gform_footer.before {
  padding: 0 !important;
  margin: 0 !important;
  align-self: flex-start;
}
@media only screen and (max-width: 800px) {
  .formPopup__inner #gform_4 .gform_footer.before, .formPopup__inner #gform_7 .gform_footer.before {
    width: 100%;
  }
}
.formPopup__inner #gform_4 .gform_fields, .formPopup__inner #gform_7 .gform_fields {
  grid-column-gap: 8px;
}
@media only screen and (max-width: 800px) {
  .formPopup__inner #gform_4 .gform_fields, .formPopup__inner #gform_7 .gform_fields {
    grid-template-columns: repeat(4, 1fr);
  }
}
.formPopup__inner #gform_4 input[type=text],
.formPopup__inner #gform_4 input[type=email],
.formPopup__inner #gform_4 input[type=tel], .formPopup__inner #gform_7 input[type=text],
.formPopup__inner #gform_7 input[type=email],
.formPopup__inner #gform_7 input[type=tel] {
  border-radius: 3px;
  border: 1px solid #BA8034;
  padding: 0px 24px;
  height: 60px;
  background: #403D39;
  font-family: "Urbanist", sans-serif !important;
  font-size: 20px !important;
  line-height: 32px !important;
  font-weight: 400 !important;
  letter-spacing: 0.5px !important;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  color: white;
  outline: none;
}
.formPopup__inner #gform_4 input[type=text]::-moz-placeholder, .formPopup__inner #gform_4 input[type=email]::-moz-placeholder, .formPopup__inner #gform_4 input[type=tel]::-moz-placeholder, .formPopup__inner #gform_7 input[type=text]::-moz-placeholder, .formPopup__inner #gform_7 input[type=email]::-moz-placeholder, .formPopup__inner #gform_7 input[type=tel]::-moz-placeholder {
  color: white;
}
.formPopup__inner #gform_4 input[type=text]::placeholder,
.formPopup__inner #gform_4 input[type=email]::placeholder,
.formPopup__inner #gform_4 input[type=tel]::placeholder, .formPopup__inner #gform_7 input[type=text]::placeholder,
.formPopup__inner #gform_7 input[type=email]::placeholder,
.formPopup__inner #gform_7 input[type=tel]::placeholder {
  color: white;
}
.formPopup__inner #gform_4 input[type=submit], .formPopup__inner #gform_7 input[type=submit] {
  font-family: "Urbanist", sans-serif !important;
  font-size: 16px !important;
  line-height: auto !important;
  font-weight: 600 !important;
  letter-spacing: 1px !important;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-transform: uppercase;
  background: #BA8034;
  color: white;
  height: 60px;
  width: 100%;
  border: none;
  padding: 10px 20px;
  border-radius: 3px;
  cursor: pointer;
  margin: 0;
  flex: 1;
  width: 100% !important;
  transition: all;
  transition-duration: 300ms;
  transition-duration-function: cubic-bezier(0.02, 0.41, 0.18, 1.04);
}
.formPopup__inner #gform_4 input[type=submit]:hover, .formPopup__inner #gform_7 input[type=submit]:hover {
  transition: all;
  transition-duration: 300ms;
  transition-duration-function: cubic-bezier(0.02, 0.41, 0.18, 1.04);
  background: #926529;
}
.formPopup__inner #gform_4 .gfield_validation_message, .formPopup__inner #gform_7 .gfield_validation_message {
  color: white;
  text-align: start;
}
.formPopup .gform_validation_errors {
  display: none;
}
.formPopup__closeTrigger {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  height: 100%;
  width: 100%;
}

/* ----------------------------- Modules ----------------------------- */
.hero {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  gap: 90px;
}
@media only screen and (max-width: 700px) {
  .hero {
    background-image: none !important;
    gap: 0;
  }
}
.hero__c {
  padding-top: 90px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 30px;
  max-width: clamp(520px, 338.1818181818px + 0.1818181818 * 100vw, 600px);
}
@media only screen and (max-width: 700px) {
  .hero__c {
    padding-top: 32px;
    padding-bottom: 32px;
    max-width: 100%;
  }
}
@media only screen and (max-width: 700px) and (min-width: 1680px) {
  .hero__c {
    margin-left: 100px;
    margin-right: 100px;
  }
}
@media only screen and (max-width: 700px) and (max-width: 1680px) {
  .hero__c {
    margin-left: 100px;
    margin-right: 100px;
  }
}
@media only screen and (max-width: 700px) and (max-width: 1440px) {
  .hero__c {
    margin-left: calc((100vw - clamp(62.5rem, 100vw + 0rem, 90rem)) / 2 + clamp(64px, -17.8181818182px + 0.0818181818 * 100vw, 100px));
    margin-right: calc((100vw - clamp(62.5rem, 100vw + 0rem, 90rem)) / 2 + clamp(64px, -17.8181818182px + 0.0818181818 * 100vw, 100px));
  }
}
@media only screen and (max-width: 700px) and (max-width: 1000px) {
  .hero__c {
    margin-left: calc((100vw - clamp(43.75rem, 100vw + 0rem, 62.5rem)) / 2 + clamp(40px, -16px + 0.08 * 100vw, 64px));
    margin-right: calc((100vw - clamp(43.75rem, 100vw + 0rem, 62.5rem)) / 2 + clamp(40px, -16px + 0.08 * 100vw, 64px));
  }
}
@media only screen and (max-width: 700px) and (max-width: 700px) {
  .hero__c {
    margin-left: calc((100vw - clamp(22.5rem, 100vw + 0rem, 43.75rem)) / 2 + clamp(20px, -1.1764705882px + 0.0588235294 * 100vw, 40px));
    margin-right: calc((100vw - clamp(22.5rem, 100vw + 0rem, 43.75rem)) / 2 + clamp(20px, -1.1764705882px + 0.0588235294 * 100vw, 40px));
  }
}
@media only screen and (max-width: 700px) and (max-width: 360px) {
  .hero__c {
    margin-left: calc((100vw - clamp(0rem, 100vw + 0rem, 22.5rem)) / 2 + clamp(20px, -1.1764705882px + 0.0588235294 * 100vw, 40px));
    margin-right: calc((100vw - clamp(0rem, 100vw + 0rem, 22.5rem)) / 2 + clamp(20px, -1.1764705882px + 0.0588235294 * 100vw, 40px));
  }
}
.hero__c-subtitle {
  margin-bottom: -18px;
  font-family: "Urbanist", sans-serif !important;
  font-size: 16px !important;
  line-height: 22px !important;
  font-weight: 600 !important;
  letter-spacing: 1px !important;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-transform: uppercase;
  color: #BA8034;
  color: #BA8034;
}
.hero__c-caption {
  color: #403D39;
}
@media only screen and (max-width: 700px) {
  .hero__c-caption h1 {
    font-family: "Urbanist", sans-serif !important;
    font-size: 58 !important;
    line-height: 62px !important;
    font-weight: 500 !important;
    letter-spacing: 0 !important;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-size: clamp(40px, 20.9411764706px + 0.0529411765 * 100vw, 58px) !important;
    line-height: clamp(44px, 24.9411764706px + 0.0529411765 * 100vw, 62px) !important;
  }
}
.hero__c-price {
  font-family: "Urbanist", sans-serif !important;
  font-size: 36px !important;
  line-height: 32px !important;
  font-weight: 600 !important;
  letter-spacing: 0 !important;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  color: #47484A;
}
@media only screen and (max-width: 1000px) {
  .hero__c-price {
    font-family: "Urbanist", sans-serif !important;
    font-size: 28px !important;
    line-height: 28px !important;
    font-weight: 600 !important;
    letter-spacing: 0 !important;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
  }
}
.hero__c-price strong {
  font-family: "Urbanist", sans-serif !important;
  font-size: 46px !important;
  line-height: 32px !important;
  font-weight: 800 !important;
  letter-spacing: 0 !important;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  color: #BA8034;
}
@media only screen and (max-width: 1000px) {
  .hero__c-price strong {
    font-family: "Urbanist", sans-serif !important;
    font-size: 40px !important;
    line-height: 28px !important;
    font-weight: 800 !important;
    letter-spacing: 0 !important;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
  }
}
.hero__c-rating {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
  font-family: "Urbanist", sans-serif !important;
  font-size: 34px !important;
  line-height: 48px !important;
  font-weight: 600 !important;
  letter-spacing: 0.5px !important;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  color: #403D39;
}
@media only screen and (max-width: 700px) {
  .hero__c-rating {
    font-family: "Urbanist", sans-serif !important;
    font-size: 28px !important;
    line-height: 32px !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px !important;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
  }
}
.hero__c-body p {
  font-family: "Urbanist", sans-serif !important;
  font-size: 20px !important;
  line-height: 32px !important;
  font-weight: 400 !important;
  letter-spacing: 0.5px !important;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  color: #47484A;
}
.hero__benefits {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  gap: 2px;
  width: 100%;
}
@media only screen and (min-width: 1680px) {
  .hero__benefits {
    padding-left: 100px;
    padding-right: 100px;
  }
}
@media only screen and (max-width: 1680px) {
  .hero__benefits {
    padding-left: 100px;
    padding-right: 100px;
  }
}
@media only screen and (max-width: 1440px) {
  .hero__benefits {
    padding-left: calc((100vw - clamp(62.5rem, 100vw + 0rem, 90rem)) / 2 + clamp(64px, -17.8181818182px + 0.0818181818 * 100vw, 100px));
    padding-right: calc((100vw - clamp(62.5rem, 100vw + 0rem, 90rem)) / 2 + clamp(64px, -17.8181818182px + 0.0818181818 * 100vw, 100px));
  }
}
@media only screen and (max-width: 1000px) {
  .hero__benefits {
    padding-left: calc((100vw - clamp(43.75rem, 100vw + 0rem, 62.5rem)) / 2 + clamp(40px, -16px + 0.08 * 100vw, 64px));
    padding-right: calc((100vw - clamp(43.75rem, 100vw + 0rem, 62.5rem)) / 2 + clamp(40px, -16px + 0.08 * 100vw, 64px));
  }
}
@media only screen and (max-width: 700px) {
  .hero__benefits {
    padding-left: calc((100vw - clamp(22.5rem, 100vw + 0rem, 43.75rem)) / 2 + clamp(20px, -1.1764705882px + 0.0588235294 * 100vw, 40px));
    padding-right: calc((100vw - clamp(22.5rem, 100vw + 0rem, 43.75rem)) / 2 + clamp(20px, -1.1764705882px + 0.0588235294 * 100vw, 40px));
  }
}
@media only screen and (max-width: 360px) {
  .hero__benefits {
    padding-left: calc((100vw - clamp(0rem, 100vw + 0rem, 22.5rem)) / 2 + clamp(20px, -1.1764705882px + 0.0588235294 * 100vw, 40px));
    padding-right: calc((100vw - clamp(0rem, 100vw + 0rem, 22.5rem)) / 2 + clamp(20px, -1.1764705882px + 0.0588235294 * 100vw, 40px));
  }
}
@media only screen and (max-width: 1440px) {
  .hero__benefits {
    padding-left: clamp(0px, -227.2727272727px + 0.2272727273 * 100vw, 100px);
    padding-right: clamp(0px, -227.2727272727px + 0.2272727273 * 100vw, 100px);
  }
}
@media only screen and (max-width: 700px) {
  .hero__benefits {
    flex-wrap: wrap;
  }
}
.hero__benefits-item {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  height: auto;
  width: 1%;
  gap: 8px;
  flex: 1;
  padding: clamp(16px, -11.2727272727px + 0.0272727273 * 100vw, 28px) clamp(24px, 5.8181818182px + 0.0181818182 * 100vw, 32px);
  background-color: rgba(255, 255, 255, 0.7);
}
@media only screen and (max-width: 1000px) {
  .hero__benefits-item {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
}
@media only screen and (max-width: 700px) {
  .hero__benefits-item {
    min-width: calc(50% - 1px);
    flex: unset;
    background-color: #F8F6F2;
  }
}
@media only screen and (max-width: 700px) and (min-width: 1680px) {
  .hero__benefits-item {
    padding-left: 100px;
    padding-right: 100px;
  }
}
@media only screen and (max-width: 700px) and (max-width: 1680px) {
  .hero__benefits-item {
    padding-left: 100px;
    padding-right: 100px;
  }
}
@media only screen and (max-width: 700px) and (max-width: 1440px) {
  .hero__benefits-item {
    padding-left: calc((100vw - clamp(62.5rem, 100vw + 0rem, 90rem)) / 2 + clamp(64px, -17.8181818182px + 0.0818181818 * 100vw, 100px));
    padding-right: calc((100vw - clamp(62.5rem, 100vw + 0rem, 90rem)) / 2 + clamp(64px, -17.8181818182px + 0.0818181818 * 100vw, 100px));
  }
}
@media only screen and (max-width: 700px) and (max-width: 1000px) {
  .hero__benefits-item {
    padding-left: calc((100vw - clamp(43.75rem, 100vw + 0rem, 62.5rem)) / 2 + clamp(40px, -16px + 0.08 * 100vw, 64px));
    padding-right: calc((100vw - clamp(43.75rem, 100vw + 0rem, 62.5rem)) / 2 + clamp(40px, -16px + 0.08 * 100vw, 64px));
  }
}
@media only screen and (max-width: 700px) and (max-width: 700px) {
  .hero__benefits-item {
    padding-left: calc((100vw - clamp(22.5rem, 100vw + 0rem, 43.75rem)) / 2 + clamp(20px, -1.1764705882px + 0.0588235294 * 100vw, 40px));
    padding-right: calc((100vw - clamp(22.5rem, 100vw + 0rem, 43.75rem)) / 2 + clamp(20px, -1.1764705882px + 0.0588235294 * 100vw, 40px));
  }
}
@media only screen and (max-width: 700px) and (max-width: 360px) {
  .hero__benefits-item {
    padding-left: calc((100vw - clamp(0rem, 100vw + 0rem, 22.5rem)) / 2 + clamp(20px, -1.1764705882px + 0.0588235294 * 100vw, 40px));
    padding-right: calc((100vw - clamp(0rem, 100vw + 0rem, 22.5rem)) / 2 + clamp(20px, -1.1764705882px + 0.0588235294 * 100vw, 40px));
  }
}
.hero__benefits-item-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 4px;
}
.hero__benefits-item-content-title {
  font-family: "Urbanist", sans-serif !important;
  font-size: 20px !important;
  line-height: 30px !important;
  font-weight: 700 !important;
  letter-spacing: 0.5px !important;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  line-height: 24px !important;
}
.hero__benefits-item-content-body {
  font-family: "Urbanist", sans-serif !important;
  font-size: 18px !important;
  line-height: 28px !important;
  font-weight: 400 !important;
  letter-spacing: 0.3px !important;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}
.hero__benefits-item .terms {
  font-family: "Urbanist", sans-serif !important;
  font-size: 14px !important;
  line-height: 22px !important;
  font-weight: 400 !important;
  letter-spacing: 0.2px !important;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}
.hero__benefits-item img {
  height: 44px;
  width: 44px;
}
.hero__benefits-item.monthly {
  position: relative;
}
.hero__benefits-item.monthly .sp-details {
  position: relative;
}
.hero__benefits-item.monthly .info-circle {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-family: "Urbanist", sans-serif !important;
  font-size: 20px !important;
  line-height: 30px !important;
  font-weight: 700 !important;
  letter-spacing: 0.5px !important;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  cursor: pointer;
  min-height: 24px;
  min-width: 24px;
  height: 24px;
  width: 24px;
  border-radius: 100px;
  background-color: #BA8034;
  color: white;
}
.hero__benefits-item.monthly .info-circle:hover {
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(4);
          backdrop-filter: blur(4);
  color: white;
}
.hero__benefits-item.monthly .info-content {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 12px 16px;
  position: absolute;
  top: -230px;
  left: 12px;
  min-width: 360px;
  max-width: 360px;
  max-height: 240px;
  min-height: 240px;
  background-color: rgba(186, 128, 52, 0.8);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  border-radius: 12px;
  z-index: 1000;
  overflow-y: scroll;
  transform: translateY(-30px);
  opacity: 0;
  display: none;
}
@media only screen and (max-width: 400px) {
  .hero__benefits-item.monthly .info-content {
    min-width: calc(100vw - 24px);
    max-width: calc(100vw - 24px);
    left: 12px;
    right: 12px;
  }
}
.hero__benefits-item.monthly .info-content::-webkit-scrollbar {
  top: 12px;
  margin: 12px 0;
  margin-right: 4px;
  right: 4px;
  width: 8px;
}
.hero__benefits-item.monthly .info-content::-webkit-scrollbar-track {
  background: #BA8034;
  margin: 12px 0;
  margin-right: 4px;
  border-radius: 24px;
}
.hero__benefits-item.monthly .info-content::-webkit-scrollbar-thumb {
  background-color: white;
  opacity: 0.3;
  border-radius: 10px;
  border: 2px solid white;
}
.hero__benefits-item.monthly .info-content::-webkit-scrollbar-thumb:hover {
  background-color: #555;
}
.hero__benefits-item.monthly .info-content content-area.info {
  width: 100%;
  gap: 12px;
}
.hero__benefits-item.monthly .info-content content-area.info p {
  font-family: "Urbanist", sans-serif !important;
  font-size: 14px !important;
  line-height: 22px !important;
  font-weight: 400 !important;
  letter-spacing: 0.2px !important;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  color: white;
}
.heroBgMobile {
  display: none;
}
@media only screen and (max-width: 700px) {
  .heroBgMobile {
    -o-object-fit: cover;
       object-fit: cover;
    max-height: clamp(360px, 338.8235294118px + 0.0588235294 * 100vw, 380px);
    height: clamp(360px, 338.8235294118px + 0.0588235294 * 100vw, 380px);
    -o-object-position: right clamp(-60px, -123.5294117647px + 0.1764705882 * 100vw, 0px) bottom 50%;
       object-position: right clamp(-60px, -123.5294117647px + 0.1764705882 * 100vw, 0px) bottom 50%;
    width: 100%;
    display: block;
  }
}

.introBlock {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  gap: clamp(10px, -149.0909090909px + 0.1590909091 * 100vw, 80px);
  padding-top: 100px;
  position: relative;
}
@media only screen and (max-width: 1000px) {
  .introBlock {
    display: flex;
    flex-direction: column-reverse;
    justify-content: flex-start;
    align-items: center;
    gap: 40px;
    padding-top: clamp(40px, -100px + 0.2 * 100vw, 100px);
  }
}
.introBlock--i {
  padding-bottom: clamp(40px, -100px + 0.2 * 100vw, 100px);
}
@media only screen and (max-width: 1000px) {
  .introBlock--i {
    padding-bottom: 0;
    padding-top: 0;
  }
}
.introBlock--i.fp {
  padding-left: 0;
  padding-right: 0;
}
.introBlock__bg {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  right: 0;
  z-index: -1;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 1000px) {
  .introBlock__bg {
    position: relative;
    min-width: 100%;
    max-width: 100%;
    height: clamp(320px, 320px + 0 * 100vw, 320px);
    -o-object-position: right;
       object-position: right;
  }
}
.introBlock__c {
  width: 600px;
}
@media only screen and (max-width: 1000px) {
  .introBlock__c {
    min-width: 100%;
    max-width: 100%;
  }
  .introBlock__c h2 {
    text-align: center;
  }
  .introBlock__c .label-l {
    text-align: center;
  }
}
@media only screen and (max-width: 700px) {
  .introBlock__c h2 {
    text-align: left;
  }
  .introBlock__c .label-l {
    text-align: left;
  }
}
.introBlock__c--i {
  width: 100%;
}
@media only screen and (min-width: 1680px) {
  .introBlock__c--i {
    padding-left: calc(100px + clamp(0px, -3500px + 2.5 * 100vw, 100px));
  }
}
@media only screen and (max-width: 1680px) {
  .introBlock__c--i {
    padding-left: calc(100px + clamp(0px, -3500px + 2.5 * 100vw, 100px));
  }
}
@media only screen and (max-width: 1440px) {
  .introBlock__c--i {
    padding-left: calc((100vw - clamp(62.5rem, 100vw + 0rem, 90rem)) / 2 + clamp(64px, -17.8181818182px + 0.0818181818 * 100vw, 100px) + clamp(0px, -3500px + 2.5 * 100vw, 100px));
  }
}
@media only screen and (max-width: 1000px) {
  .introBlock__c--i {
    padding-left: calc((100vw - clamp(43.75rem, 100vw + 0rem, 62.5rem)) / 2 + clamp(40px, -16px + 0.08 * 100vw, 64px) + clamp(0px, -3500px + 2.5 * 100vw, 100px));
  }
}
@media only screen and (max-width: 700px) {
  .introBlock__c--i {
    padding-left: calc((100vw - clamp(22.5rem, 100vw + 0rem, 43.75rem)) / 2 + clamp(20px, -1.1764705882px + 0.0588235294 * 100vw, 40px) + clamp(0px, -3500px + 2.5 * 100vw, 100px));
  }
}
@media only screen and (max-width: 360px) {
  .introBlock__c--i {
    padding-left: calc((100vw - clamp(0rem, 100vw + 0rem, 22.5rem)) / 2 + clamp(20px, -1.1764705882px + 0.0588235294 * 100vw, 40px) + clamp(0px, -3500px + 2.5 * 100vw, 100px));
  }
}
@media only screen and (max-width: 1000px) and (min-width: 1680px) {
  .introBlock__c--i {
    padding-left: 100px;
    padding-right: 100px;
  }
}
@media only screen and (max-width: 1000px) and (max-width: 1680px) {
  .introBlock__c--i {
    padding-left: 100px;
    padding-right: 100px;
  }
}
@media only screen and (max-width: 1000px) and (max-width: 1440px) {
  .introBlock__c--i {
    padding-left: calc((100vw - clamp(62.5rem, 100vw + 0rem, 90rem)) / 2 + clamp(64px, -17.8181818182px + 0.0818181818 * 100vw, 100px));
    padding-right: calc((100vw - clamp(62.5rem, 100vw + 0rem, 90rem)) / 2 + clamp(64px, -17.8181818182px + 0.0818181818 * 100vw, 100px));
  }
}
@media only screen and (max-width: 1000px) and (max-width: 1000px) {
  .introBlock__c--i {
    padding-left: calc((100vw - clamp(43.75rem, 100vw + 0rem, 62.5rem)) / 2 + clamp(40px, -16px + 0.08 * 100vw, 64px));
    padding-right: calc((100vw - clamp(43.75rem, 100vw + 0rem, 62.5rem)) / 2 + clamp(40px, -16px + 0.08 * 100vw, 64px));
  }
}
@media only screen and (max-width: 1000px) and (max-width: 700px) {
  .introBlock__c--i {
    padding-left: calc((100vw - clamp(22.5rem, 100vw + 0rem, 43.75rem)) / 2 + clamp(20px, -1.1764705882px + 0.0588235294 * 100vw, 40px));
    padding-right: calc((100vw - clamp(22.5rem, 100vw + 0rem, 43.75rem)) / 2 + clamp(20px, -1.1764705882px + 0.0588235294 * 100vw, 40px));
  }
}
@media only screen and (max-width: 1000px) and (max-width: 360px) {
  .introBlock__c--i {
    padding-left: calc((100vw - clamp(0rem, 100vw + 0rem, 22.5rem)) / 2 + clamp(20px, -1.1764705882px + 0.0588235294 * 100vw, 40px));
    padding-right: calc((100vw - clamp(0rem, 100vw + 0rem, 22.5rem)) / 2 + clamp(20px, -1.1764705882px + 0.0588235294 * 100vw, 40px));
  }
}
.introBlock__graphic {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: flex-end;
  width: auto;
  max-width: 690px;
  min-width: clamp(520px, 429.0909090909px + 0.0909090909 * 100vw, 560px);
  flex: 1;
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
}
@media only screen and (max-width: 1000px) {
  .introBlock__graphic {
    min-width: 100%;
    max-width: 100%;
    height: 400px;
  }
}
.introBlock__graphic-main {
  width: calc(100% - 130px);
  height: 500px;
  z-index: 1;
  -o-object-fit: cover;
     object-fit: cover;
  margin-left: -130px;
}
@media only screen and (max-width: 1000px) {
  .introBlock__graphic-main {
    height: 400px;
  }
}
@media only screen and (max-width: 700px) {
  .introBlock__graphic-main {
    height: 320px;
    width: 100%;
    border-bottom-left-radius: 100px;
  }
}
.introBlock__graphic-circle {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 260px;
  height: 260px;
  outline: 12px solid white;
  z-index: 2;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 260px;
}
@media only screen and (max-width: 700px) {
  .introBlock__graphic-circle {
    height: clamp(120px, 77.6470588235px + 0.1176470588 * 100vw, 160px);
    width: clamp(120px, 77.6470588235px + 0.1176470588 * 100vw, 160px);
  }
}
@media only screen and (max-width: 1000px) {
  .introBlock .g-body {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
}
@media only screen and (max-width: 700px) {
  .introBlock .g-body {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
}
.introBlock .g-body ul {
  list-style-type: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
  padding: 10px;
  margin-top: 0;
  margin-bottom: 0;
}
@media only screen and (max-width: 1000px) {
  .introBlock .g-body ul {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
}
@media only screen and (max-width: 700px) {
  .introBlock .g-body ul {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
}
.introBlock .g-body ul li {
  font-family: "Urbanist", sans-serif !important;
  font-size: 20px !important;
  line-height: 28px !important;
  font-weight: 700 !important;
  letter-spacing: 0.5px !important;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  color: #403D39;
  position: relative;
  gap: 10px;
  list-style-type: none;
  margin-left: 23px;
}
@media only screen and (max-width: 700px) {
  .introBlock .g-body ul li {
    font-family: "Urbanist", sans-serif !important;
    font-size: 18px !important;
    line-height: 24px !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
  }
}
@media only screen and (max-width: 1000px) {
  .introBlock .g-body ul li {
    width: -moz-fit-content;
    width: fit-content;
    text-align: center;
  }
}
@media only screen and (max-width: 700px) {
  .introBlock .g-body ul li {
    text-align: left;
  }
}
.introBlock .g-body ul li::before {
  content: "";
  height: 27px;
  width: 27px;
  position: absolute;
  left: -33px;
  background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzAiIGhlaWdodD0iMzAiIHZpZXdCb3g9IjAgMCAzMCAzMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTI2LjM3NTkgMTcuOThDMjcuNzcyMSAxMS45NDY5IDI0LjAxMzEgNS45MjQyMSAxNy45OCA0LjUyODAyQzExLjk0NjkgMy4xMzE4NCA1LjkyNDIgNi44OTA4MiA0LjUyODAyIDEyLjkyNEMzLjEzMTgzIDE4Ljk1NzEgNi44OTA4MiAyNC45Nzk3IDEyLjkyMzkgMjYuMzc1OUMxOC45NTcxIDI3Ljc3MjEgMjQuOTc5NyAyNC4wMTMxIDI2LjM3NTkgMTcuOThaIiBmaWxsPSIjRkRGM0U3Ii8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMjAuNTU2NyAxMS4yNzQ1QzIxLjAxNzIgMTEuNzY4OSAyMS4wMTc2IDEyLjU3MSAyMC41NTc2IDEzLjA2NTlMMTQuNTQ2NyAxOS41MzI1QzE0LjMyNTcgMTkuNzcwMyAxNC4wMjU5IDE5LjkwMzkgMTMuNzEzMiAxOS45MDRDMTMuNDAwNSAxOS45MDQgMTMuMTAwNyAxOS43NzA2IDEyLjg3OTYgMTkuNTMzTDEwLjI0NzUgMTYuNzA0MkM5Ljc4NzI4IDE2LjIwOTUgOS43ODcyOCAxNS40MDc1IDEwLjI0NzUgMTQuOTEyOEMxMC43MDc4IDE0LjQxODIgMTEuNDU0IDE0LjQxODIgMTEuOTE0MyAxNC45MTI4TDEzLjcxMjUgMTYuODQ1NUwxOC44OSAxMS4yNzU0QzE5LjM1IDEwLjc4MDUgMjAuMDk2MiAxMC43ODAxIDIwLjU1NjcgMTEuMjc0NVoiIGZpbGw9IiNCQTgwMzQiLz4KPC9zdmc+Cg==);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.services {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 100px;
}
@media only screen and (max-width: 1000px) {
  .services {
    padding-top: clamp(40px, -16px + 0.08 * 100vw, 64px);
    padding-bottom: clamp(40px, -16px + 0.08 * 100vw, 64px);
  }
}
.services__title {
  margin-bottom: 111px;
  text-align: center;
}
@media only screen and (max-width: 1000px) {
  .services__title {
    margin-bottom: 40px;
  }
}
@media only screen and (max-width: 700px) {
  .services__title {
    margin-bottom: 111px;
  }
}
.services__block {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  gap: 20px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 1000px) {
  .services__block {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
}
@media only screen and (max-width: 700px) {
  .services__block {
    gap: 70px;
  }
}
.services__block-item {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  border: 1px solid #BA8034;
  padding-top: 70px;
  padding-bottom: 60px;
  padding-left: clamp(12px, -33.4545454545px + 0.0454545455 * 100vw, 32px);
  padding-right: clamp(12px, -33.4545454545px + 0.0454545455 * 100vw, 32px);
  flex: 1;
  width: auto;
  gap: 24px;
}
@media only screen and (max-width: 1000px) {
  .services__block-item {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    flex: unset;
    padding-right: 32px;
    padding-left: 32px;
    padding-top: 32px;
    padding-bottom: 32px;
  }
}
@media only screen and (max-width: 700px) {
  .services__block-item {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 70px;
    padding-bottom: 48px;
    padding-left: clamp(12px, -33.4545454545px + 0.0454545455 * 100vw, 32px);
    padding-right: clamp(12px, -33.4545454545px + 0.0454545455 * 100vw, 32px);
  }
}
.services__block-item-graphic {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  position: absolute;
  top: -50px;
  left: calc(50% - 50px);
  height: 100px;
  width: 100px;
  border-radius: 100px;
  background-color: #FDF3E7;
}
@media only screen and (max-width: 1000px) {
  .services__block-item-graphic.desktop {
    display: none;
  }
}
@media only screen and (max-width: 700px) {
  .services__block-item-graphic.desktop {
    display: flex;
  }
}
@media only screen and (max-width: 1000px) {
  .services__block-item-graphic.mobile {
    display: flex;
    position: relative;
    left: unset;
    top: unset;
    margin: auto;
  }
}
@media only screen and (max-width: 700px) {
  .services__block-item-graphic.mobile {
    display: none;
  }
}
.services__block-item-icon {
  height: 120px;
  width: 120px;
  max-height: 120px;
  max-width: 120px;
  position: absolute;
  top: -60px;
  left: calc(50% - 60px);
  -o-object-fit: contain;
     object-fit: contain;
}
@media only screen and (max-width: 1000px) {
  .services__block-item-icon.desktop {
    display: none;
  }
}
@media only screen and (max-width: 700px) {
  .services__block-item-icon.desktop {
    display: flex;
  }
}
@media only screen and (max-width: 1000px) {
  .services__block-item-icon.mobile {
    display: flex;
    position: relative;
    left: unset;
    top: unset;
    margin: auto;
  }
}
@media only screen and (max-width: 700px) {
  .services__block-item-icon.mobile {
    display: none;
  }
}
.services__block-item-price {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  gap: 10px;
}
@media only screen and (max-width: 1000px) {
  .services__block-item-price {
    min-width: 240px;
    max-width: 240px;
    display: block;
  }
}
@media only screen and (max-width: 700px) {
  .services__block-item-price {
    display: flex;
    width: 100%;
    gap: 10px;
  }
}
.services__block-item-price h3 {
  text-align: center;
  width: 100%;
  margin-bottom: 24px;
}
@media only screen and (max-width: 1000px) {
  .services__block-item-price h3 {
    text-align: left;
  }
}
@media only screen and (max-width: 700px) {
  .services__block-item-price h3 {
    text-align: center;
  }
}
.services__block-item-price-month {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  font-family: "Urbanist", sans-serif !important;
  font-size: 18px !important;
  line-height: 22px !important;
  font-weight: 600 !important;
  letter-spacing: 1px !important;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-align: center;
  gap: 4px;
  width: 100%;
}
@media only screen and (max-width: 1000px) {
  .services__block-item-price-month {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 4px;
  }
}
@media only screen and (max-width: 700px) {
  .services__block-item-price-month {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 0;
  }
}
.services__block-item-price-month strong {
  font-family: "Urbanist", sans-serif !important;
  font-size: 32px !important;
  line-height: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 1px !important;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  color: #BA8034;
}
.services__block-item-price-all {
  font-family: "Urbanist", sans-serif !important;
  font-size: 18px !important;
  line-height: 22px !important;
  font-weight: 300 !important;
  letter-spacing: 1px !important;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-align: center;
}
@media only screen and (max-width: 1000px) {
  .services__block-item-price-all {
    text-align: left;
    margin-bottom: 32px;
  }
}
@media only screen and (max-width: 700px) {
  .services__block-item-price-all {
    text-align: center;
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 1000px) {
  .services__block-item-price-all.invisalign {
    margin-bottom: 0;
  }
}
.services__block-item-price-suitability {
  font-family: "Urbanist", sans-serif !important;
  font-size: 18px !important;
  line-height: 22px !important;
  font-weight: 300 !important;
  letter-spacing: 1px !important;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-align: center;
}
@media only screen and (max-width: 1000px) {
  .services__block-item-price-suitability {
    text-align: left;
    margin-bottom: 32px;
  }
}
@media only screen and (max-width: 700px) {
  .services__block-item-price-suitability {
    text-align: center;
    margin-bottom: 0;
  }
}
.services__terms {
  font-family: "Urbanist", sans-serif !important;
  font-size: 16px !important;
  line-height: 26px !important;
  font-weight: 400 !important;
  letter-spacing: 0.2px !important;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  color: #47484A;
  margin-bottom: 20px;
}
.services .g-body ul {
  list-style-type: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
  padding: 10px;
  margin-top: 0;
  margin-bottom: 0;
}
.services .g-body ul li {
  font-family: "Urbanist", sans-serif !important;
  font-size: 20px !important;
  line-height: 32px !important;
  font-weight: 400 !important;
  letter-spacing: 0.5px !important;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  color: #403D39;
  position: relative;
  gap: 10px;
  list-style-type: none;
  margin-left: 23px;
  width: calc(100% - 23px);
}
.services .g-body ul li::before {
  content: "";
  height: 27px;
  width: 27px;
  position: absolute;
  left: -33px;
  background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzAiIGhlaWdodD0iMzAiIHZpZXdCb3g9IjAgMCAzMCAzMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTI2LjM3NTkgMTcuOThDMjcuNzcyMSAxMS45NDY5IDI0LjAxMzEgNS45MjQyMSAxNy45OCA0LjUyODAyQzExLjk0NjkgMy4xMzE4NCA1LjkyNDIgNi44OTA4MiA0LjUyODAyIDEyLjkyNEMzLjEzMTgzIDE4Ljk1NzEgNi44OTA4MiAyNC45Nzk3IDEyLjkyMzkgMjYuMzc1OUMxOC45NTcxIDI3Ljc3MjEgMjQuOTc5NyAyNC4wMTMxIDI2LjM3NTkgMTcuOThaIiBmaWxsPSIjRkRGM0U3Ii8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMjAuNTU2NyAxMS4yNzQ1QzIxLjAxNzIgMTEuNzY4OSAyMS4wMTc2IDEyLjU3MSAyMC41NTc2IDEzLjA2NTlMMTQuNTQ2NyAxOS41MzI1QzE0LjMyNTcgMTkuNzcwMyAxNC4wMjU5IDE5LjkwMzkgMTMuNzEzMiAxOS45MDRDMTMuNDAwNSAxOS45MDQgMTMuMTAwNyAxOS43NzA2IDEyLjg3OTYgMTkuNTMzTDEwLjI0NzUgMTYuNzA0MkM5Ljc4NzI4IDE2LjIwOTUgOS43ODcyOCAxNS40MDc1IDEwLjI0NzUgMTQuOTEyOEMxMC43MDc4IDE0LjQxODIgMTEuNDU0IDE0LjQxODIgMTEuOTE0MyAxNC45MTI4TDEzLjcxMjUgMTYuODQ1NUwxOC44OSAxMS4yNzU0QzE5LjM1IDEwLjc4MDUgMjAuMDk2MiAxMC43ODAxIDIwLjU1NjcgMTEuMjc0NVoiIGZpbGw9IiNCQTgwMzQiLz4KPC9zdmc+Cg==);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.services .disclaimer {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  font-family: "Urbanist", sans-serif !important;
  font-size: 16px !important;
  line-height: 26px !important;
  font-weight: 400 !important;
  letter-spacing: 0.2px !important;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  color: #47484A;
  margin-top: 20px;
  margin-inline: auto;
  gap: 24px;
}
.services .disclaimer .read-more, .services .disclaimer .read-more .inner-text {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  color: #BA8034;
  gap: 4px;
  width: 100%;
  text-align: center;
  cursor: pointer;
}
.services .disclaimer .read-more .svg-angle-down, .services .disclaimer .read-more .inner-text .svg-angle-down {
  height: 30px;
  width: 30px;
}
.services .disclaimer .read-more .svg-angle-down path, .services .disclaimer .read-more .inner-text .svg-angle-down path {
  stroke: #BA8034;
}
.services .disclaimer .representative-example {
  height: 0;
  opacity: 0;
  visibility: 0;
  margin-top: -24px;
  overflow: hidden;
}
.services .disclaimer .representative-example p {
  font-family: "Urbanist", sans-serif !important;
  font-size: 14px !important;
  line-height: 22px !important;
  font-weight: 400 !important;
  letter-spacing: 0.2px !important;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  color: #47484A;
}

.instantQuote {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  background: #F8F6F2;
  padding-top: 100px;
  padding-bottom: 100px;
}
@media only screen and (max-width: 1000px) {
  .instantQuote {
    padding-top: clamp(40px, -16px + 0.08 * 100vw, 64px);
    padding-bottom: clamp(40px, -16px + 0.08 * 100vw, 64px);
  }
}
.instantQuote form {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
.instantQuote .gform_wrapper.gravity-theme .gf_step_label {
  padding-left: 0;
}
@media only screen and (max-width: 700px) {
  .instantQuote .gform_wrapper.gravity-theme .gf_step_label {
    padding-left: 0 !important;
  }
}
.instantQuote .gform_heading {
  display: none;
}
.instantQuote .gf_page_steps {
  margin-top: 20px !important;
  margin-bottom: 40px !important;
}
.instantQuote .gfield_required.gfield_required_asterisk {
  font-family: "Urbanist", sans-serif !important;
  font-size: 24px !important;
  line-height: 36px !important;
  font-weight: 700 !important;
  letter-spacing: 0.3px !important;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  color: #DA0000;
}
@media only screen and (max-width: 700px) {
  .instantQuote .gfield_required.gfield_required_asterisk {
    font-family: "Urbanist", sans-serif !important;
    font-size: 22px !important;
    line-height: auto !important;
    font-weight: 600 !important;
    letter-spacing: 1px !important;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
  }
}
.instantQuote #gform_wrapper_1 {
  width: 100%;
}
.instantQuote .gform-field-label.gform-field-label--type-inline {
  font-family: "Urbanist", sans-serif !important;
  font-size: 18px !important;
  line-height: 26px !important;
  font-weight: 700 !important;
  letter-spacing: 0.2px !important;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}
.instantQuote .gfield_label.gform-field-label {
  text-align: center;
  font-family: "Urbanist", sans-serif !important;
  font-size: 24px !important;
  line-height: 36px !important;
  font-weight: 700 !important;
  letter-spacing: 0.3px !important;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  margin-bottom: 20px !important;
}
@media only screen and (max-width: 700px) {
  .instantQuote .gfield_label.gform-field-label {
    font-family: "Urbanist", sans-serif !important;
    font-size: 22px !important;
    line-height: auto !important;
    font-weight: 600 !important;
    letter-spacing: 1px !important;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
  }
}
.instantQuote .gform_page_footer.top_label {
  text-align: center;
  margin: 0 !important;
  padding-top: 60px !important;
  padding-bottom: 0 !important;
  display: flex;
  gap: clamp(40px, 2.1621621622px + 0.0540540541 * 100vw, 80px);
  justify-content: center;
}
@media only screen and (max-width: 700px) {
  .instantQuote .gform_page_footer.top_label {
    padding-top: 20px !important;
  }
}
@media only screen and (max-width: 700px) and (min-width: 1680px) {
  .instantQuote .gform_page_footer.top_label {
    padding-left: 100px;
    padding-right: 100px;
  }
}
@media only screen and (max-width: 700px) and (max-width: 1680px) {
  .instantQuote .gform_page_footer.top_label {
    padding-left: 100px;
    padding-right: 100px;
  }
}
@media only screen and (max-width: 700px) and (max-width: 1440px) {
  .instantQuote .gform_page_footer.top_label {
    padding-left: calc((100vw - clamp(62.5rem, 100vw + 0rem, 90rem)) / 2 + clamp(64px, -17.8181818182px + 0.0818181818 * 100vw, 100px));
    padding-right: calc((100vw - clamp(62.5rem, 100vw + 0rem, 90rem)) / 2 + clamp(64px, -17.8181818182px + 0.0818181818 * 100vw, 100px));
  }
}
@media only screen and (max-width: 700px) and (max-width: 1000px) {
  .instantQuote .gform_page_footer.top_label {
    padding-left: calc((100vw - clamp(43.75rem, 100vw + 0rem, 62.5rem)) / 2 + clamp(40px, -16px + 0.08 * 100vw, 64px));
    padding-right: calc((100vw - clamp(43.75rem, 100vw + 0rem, 62.5rem)) / 2 + clamp(40px, -16px + 0.08 * 100vw, 64px));
  }
}
@media only screen and (max-width: 700px) and (max-width: 700px) {
  .instantQuote .gform_page_footer.top_label {
    padding-left: calc((100vw - clamp(22.5rem, 100vw + 0rem, 43.75rem)) / 2 + clamp(20px, -1.1764705882px + 0.0588235294 * 100vw, 40px));
    padding-right: calc((100vw - clamp(22.5rem, 100vw + 0rem, 43.75rem)) / 2 + clamp(20px, -1.1764705882px + 0.0588235294 * 100vw, 40px));
  }
}
@media only screen and (max-width: 700px) and (max-width: 360px) {
  .instantQuote .gform_page_footer.top_label {
    padding-left: calc((100vw - clamp(0rem, 100vw + 0rem, 22.5rem)) / 2 + clamp(20px, -1.1764705882px + 0.0588235294 * 100vw, 40px));
    padding-right: calc((100vw - clamp(0rem, 100vw + 0rem, 22.5rem)) / 2 + clamp(20px, -1.1764705882px + 0.0588235294 * 100vw, 40px));
  }
}
.instantQuote .gform_previous_button.gform-theme-button.gform-theme-button--secondary.button,
.instantQuote .gform_next_button.gform-theme-button.button,
.instantQuote #gform_submit_button_1 {
  font-family: "Urbanist", sans-serif !important;
  font-size: 16px !important;
  line-height: auto !important;
  font-weight: 600 !important;
  letter-spacing: 1px !important;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-transform: uppercase;
  background: #BA8034;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 3px;
  cursor: pointer;
}
.instantQuote .gform_previous_button.gform-theme-button.gform-theme-button--secondary.button:hover,
.instantQuote .gform_next_button.gform-theme-button.button:hover,
.instantQuote #gform_submit_button_1:hover {
  background: #926529;
}
.instantQuote .gfield_radio {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 20px 20px;
}
@media only screen and (max-width: 700px) {
  .instantQuote .gfield_radio {
    gap: 10px;
  }
}
.instantQuote .gfield_radio .gchoice {
  display: flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  gap: 10px;
}
.instantQuote .gfield_radio .gchoice .gform-field-label.gform-field-label--type-inline {
  max-width: 100%;
}
.instantQuote #gform_page_1_1 .ginput_container.ginput_container_radio .gfield_radio {
  display: flex;
  gap: 10px;
}
@media only screen and (max-width: 700px) {
  .instantQuote #gform_page_1_1 .ginput_container.ginput_container_radio .gfield_radio {
    flex-direction: column;
  }
}
.instantQuote #gform_page_1_1 .ginput_container.ginput_container_radio .gfield_radio .gchoice {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  background-color: #fff;
  border: 1px solid var(--Primary-dark-brown, #BA8034);
  padding: 20px;
  gap: 8px;
  border-radius: 3px;
  width: 100%;
}
.instantQuote #gform_page_1_1 .ginput_container.ginput_container_radio .gfield_radio #label_1_3_0, .instantQuote #gform_page_1_1 .ginput_container.ginput_container_radio .gfield_radio #label_1_3_1, .instantQuote #gform_page_1_1 .ginput_container.ginput_container_radio .gfield_radio #label_1_3_2, .instantQuote #gform_page_1_1 .ginput_container.ginput_container_radio .gfield_radio #label_1_3_3 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.instantQuote #gform_page_1_1 .ginput_container.ginput_container_radio .gfield_radio #label_1_3_0 .icon, .instantQuote #gform_page_1_1 .ginput_container.ginput_container_radio .gfield_radio #label_1_3_1 .icon, .instantQuote #gform_page_1_1 .ginput_container.ginput_container_radio .gfield_radio #label_1_3_2 .icon, .instantQuote #gform_page_1_1 .ginput_container.ginput_container_radio .gfield_radio #label_1_3_3 .icon {
  height: 38px;
  width: 38px;
}
.instantQuote #gform_page_1_1 .ginput_container.ginput_container_radio .gfield_radio .img-single {
  background-image: url(images/single-dental-implants.4905aa3e.png);
}
.instantQuote #gform_page_1_1 .ginput_container.ginput_container_radio .gfield_radio .img-multiple {
  background-image: url(images/multiple-dental-implants.33aaf8ae.png);
}
.instantQuote #gform_page_1_1 .ginput_container.ginput_container_radio .gfield_radio .img-single-arch {
  background-image: url(images/single-arch-replacement.f4d244e3.png);
}
.instantQuote #gform_page_1_1 .ginput_container.ginput_container_radio .gfield_radio .img-full {
  background-image: url(images/full-mouth-replacement.542ebe7e.png);
}
.instantQuote .gf_step {
  z-index: 2;
  margin-right: 0;
  margin: 0 !important;
  width: 40px;
  height: 40px;
}
.instantQuote .gf_step_completed .gf_step_number::before,
.instantQuote .gf_step_completed .gf_step_number::after {
  border: 1px solid #BA8034 !important;
  background: #BA8034 !important;
  color: white !important;
  border-radius: 50%;
}
.instantQuote .gf_step_active .gf_step_number {
  background: #BA8034 !important;
  color: white !important;
}
.instantQuote .gf_step_number {
  border: 1px solid #BA8034 !important;
  color: #BA8034 !important;
  background: #F8F6F2 !important;
  z-index: 2 !important;
  font-family: "Urbanist", sans-serif !important;
  font-size: 16px !important;
  line-height: 24px !important;
  font-weight: 700 !important;
  letter-spacing: 0.5px !important;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}
.instantQuote .gf_page_steps {
  border-bottom: none !important;
  display: flex;
  justify-content: center;
  margin-top: 0 !important;
  margin-bottom: 44px !important;
  position: relative;
  align-self: center;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  max-width: 720px;
  width: 100%;
}
@media only screen and (min-width: 1680px) {
  .instantQuote .gf_page_steps {
    margin-left: 180px;
    margin-right: 180px;
  }
}
@media only screen and (max-width: 1680px) {
  .instantQuote .gf_page_steps {
    margin-left: 180px;
    margin-right: 180px;
  }
}
@media only screen and (max-width: 1440px) {
  .instantQuote .gf_page_steps {
    margin-left: calc((100vw - clamp(62.5rem, 100vw + 0rem, 90rem)) / 2 + clamp(64px, -17.8181818182px + 0.0818181818 * 100vw, 100px) + 80px);
    margin-right: calc((100vw - clamp(62.5rem, 100vw + 0rem, 90rem)) / 2 + clamp(64px, -17.8181818182px + 0.0818181818 * 100vw, 100px) + 80px);
  }
}
@media only screen and (max-width: 1000px) {
  .instantQuote .gf_page_steps {
    margin-left: calc((100vw - clamp(43.75rem, 100vw + 0rem, 62.5rem)) / 2 + clamp(40px, -16px + 0.08 * 100vw, 64px) + 80px);
    margin-right: calc((100vw - clamp(43.75rem, 100vw + 0rem, 62.5rem)) / 2 + clamp(40px, -16px + 0.08 * 100vw, 64px) + 80px);
  }
}
@media only screen and (max-width: 700px) {
  .instantQuote .gf_page_steps {
    margin-left: calc((100vw - clamp(22.5rem, 100vw + 0rem, 43.75rem)) / 2 + clamp(20px, -1.1764705882px + 0.0588235294 * 100vw, 40px) + 80px);
    margin-right: calc((100vw - clamp(22.5rem, 100vw + 0rem, 43.75rem)) / 2 + clamp(20px, -1.1764705882px + 0.0588235294 * 100vw, 40px) + 80px);
  }
}
@media only screen and (max-width: 360px) {
  .instantQuote .gf_page_steps {
    margin-left: calc((100vw - clamp(0rem, 100vw + 0rem, 22.5rem)) / 2 + clamp(20px, -1.1764705882px + 0.0588235294 * 100vw, 40px) + 80px);
    margin-right: calc((100vw - clamp(0rem, 100vw + 0rem, 22.5rem)) / 2 + clamp(20px, -1.1764705882px + 0.0588235294 * 100vw, 40px) + 80px);
  }
}
@media only screen and (max-width: 700px) {
  .instantQuote .gf_page_steps {
    gap: 10px;
  }
}
.instantQuote .gf_page_steps::before {
  content: "";
  position: absolute;
  top: 20px;
  left: -40px;
  width: calc(100% + 80px);
  height: 1px;
  z-index: 0;
  background-color: #BA8034;
}
@media only screen and (max-width: 700px) {
  .instantQuote .gf_page_steps::before {
    left: -10px;
    width: calc(100% + 20px);
  }
}
.instantQuote #gform_fields_1_7 {
  max-width: 600px;
  margin: 0 auto;
  grid-row-gap: 8px;
}
.instantQuote #gform_fields_1_7 input[type=text],
.instantQuote #gform_fields_1_7 input[type=email],
.instantQuote #gform_fields_1_7 input[type=tel] {
  border-radius: 3px;
  border: 1px solid #BA8034;
  padding: 5px 20px;
  height: 42px;
}
.instantQuote #gform_fields_1_7 input[type=text]::-moz-placeholder, .instantQuote #gform_fields_1_7 input[type=email]::-moz-placeholder, .instantQuote #gform_fields_1_7 input[type=tel]::-moz-placeholder {
  color: #403D39;
  font-family: "Urbanist", sans-serif !important;
  font-size: 20px !important;
  line-height: 32px !important;
  font-weight: 400 !important;
  letter-spacing: 0.5px !important;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}
.instantQuote #gform_fields_1_7 input[type=text]::placeholder,
.instantQuote #gform_fields_1_7 input[type=email]::placeholder,
.instantQuote #gform_fields_1_7 input[type=tel]::placeholder {
  color: #403D39;
  font-family: "Urbanist", sans-serif !important;
  font-size: 20px !important;
  line-height: 32px !important;
  font-weight: 400 !important;
  letter-spacing: 0.5px !important;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}
.instantQuote #field_1_18 {
  text-align: center;
  margin-bottom: 32px;
}

#gform_1_validation_container {
  display: none;
}

.gfield_validation_message {
  border: none !important;
  padding: 0 !important;
  background: none !important;
  font-family: "Urbanist", sans-serif !important;
  font-size: 12px !important;
  line-height: 18px !important;
  font-weight: 400 !important;
  letter-spacing: 1px !important;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-align: center;
}

.gform_confirmation_message {
  font-family: "Urbanist", sans-serif !important;
  font-size: 20px !important;
  line-height: 30px !important;
  font-weight: 700 !important;
  letter-spacing: 0.5px !important;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

@media only screen and (max-width: 700px) {
  #gform_page_1_3 .gfield_radio, #gform_page_1_5 .gfield_radio, #gform_page_1_6 .gfield_radio {
    flex-direction: column;
  }
}

.gform_next_button {
  background-position: right center !important;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNjgiIGhlaWdodD0iMzAiIHZpZXdCb3g9IjAgMCA2OCAzMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTM2LjUgOS43Nzc4M0w0MS41IDE0Ljc3NzhMMzYuNSAxOS43Nzc4TTQwIDE0Ljc3NzhIMjciIHN0cm9rZT0id2hpdGUiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIi8+Cjwvc3ZnPgo=) !important;
  background-color: #BA8034 !important;
  padding-right: 54px !important;
  background-repeat: no-repeat !important;
  margin: 0 !important;
}

.gform_previous_button {
  background-position: left center !important;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNjkiIGhlaWdodD0iNDQiIHZpZXdCb3g9IjAgMCA2OSA0NCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTMxLjUgMTYuMjc3OEwyNi41IDIxLjI3NzhMMzEuNSAyNi4yNzc4TTI4IDIxLjI3NzhINDEiIHN0cm9rZT0id2hpdGUiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIi8+Cjwvc3ZnPgo=) !important;
  background-color: #BA8034 !important;
  padding-left: 54px !important;
  background-repeat: no-repeat !important;
  margin: 0 !important;
}

.baa {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 80px;
  padding-bottom: 80px;
  gap: 60px;
}
.baa__content {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  gap: clamp(32px, -77.0909090909px + 0.1090909091 * 100vw, 80px);
}
@media only screen and (max-width: 700px) {
  .baa__content {
    display: flex;
    flex-direction: column-reverse;
    justify-content: flex-start;
    align-items: center;
  }
}
.baa__content .g-body > * {
  color: white;
}
.baa__content .normal-button {
  margin-top: 14px;
}
.baa__content-price {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  padding: 60px 12px 30px 12px;
  margin-top: 50px;
  min-width: 180px;
  border-radius: 5px;
  outline: 1px solid #BA8034;
  color: white;
  font-family: "Urbanist", sans-serif !important;
  font-size: 18px !important;
  line-height: 30px !important;
  font-weight: 600 !important;
  letter-spacing: 1px !important;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}
.baa__content-price strong {
  color: #BA8034;
  font-family: "Urbanist", sans-serif !important;
  font-size: 41px !important;
  line-height: auto !important;
  font-weight: 700 !important;
  letter-spacing: 1px !important;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}
.baa__content-price-graphic {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  position: absolute;
  top: -50px;
  left: calc(50% - 50px);
  width: 100px;
  height: 100px;
  border-radius: 100px;
  outline: 1px solid #BA8034;
}
.baa__content-price-graphic img {
  z-index: 2;
}
.baa__baa {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px;
}
@media only screen and (max-width: 1000px) {
  .baa__baa {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 700px) {
  .baa__baa {
    grid-template-columns: 1fr;
  }
}
.baa__baa.invisalign {
  display: block;
  -moz-column-count: 2;
       column-count: 2;
  padding-left: clamp(0px, -227.2727272727px + 0.2272727273 * 100vw, 100px);
  padding-right: clamp(0px, -227.2727272727px + 0.2272727273 * 100vw, 100px);
}
@media only screen and (max-width: 700px) {
  .baa__baa.invisalign {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px;
    -moz-column-count: 1;
         column-count: 1;
  }
}
.baa__baa .container {
  width: 100%;
  position: relative;
  overflow: hidden;
  --position: 50%;
}
.baa__baa .image-container {
  width: 100%;
}
.baa__baa .image-container img {
  display: block;
  max-width: 100%;
  height: auto;
}
.baa__baa span {
  color: white;
  font-family: "Urbanist", sans-serif !important;
  font-size: 12px !important;
  line-height: 18px !important;
  font-weight: 400 !important;
  letter-spacing: 1px !important;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  position: absolute;
}
.baa__baa span.before {
  bottom: 10px;
  left: 10px;
  z-index: 1;
}
.baa__baa span.after {
  bottom: 10px;
  right: 10px;
}
.baa__baa .slider-image-mk {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: left;
     object-position: left;
}
.baa__baa .image-before {
  position: absolute;
  inset: 0;
  width: var(--position);
  height: 100%;
  min-height: 100%;
}
.baa__baa .slider {
  position: absolute;
  inset: 0;
  cursor: pointer;
  opacity: 0;
  width: 100%;
  height: 100%;
}
.baa__baa .slider:focus-visible ~ .slider-button {
  outline: 5px solid black;
  outline-offset: 3px;
}
.baa__baa .slider-line {
  position: absolute;
  inset: 0;
  width: 0.2rem;
  height: 100%;
  background-color: #fff;
  left: var(--position);
  transform: translateX(-50%);
  pointer-events: none;
}
.baa__baa .slider-button {
  position: absolute;
  background-color: #fff;
  color: black;
  padding: 0.5rem;
  border-radius: 100vw;
  display: grid;
  place-items: center;
  top: 50%;
  left: var(--position);
  transform: translate(-50%, -50%);
  pointer-events: none;
  /* z-index: 100; */
  box-shadow: 1px 1px 1px hsla(0, 50%, 2%, 0.5);
}
.baa__c {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  gap: 60px;
  gap: 24px;
}
.baa__c-title p {
  font-family: "Urbanist", sans-serif !important;
  font-size: 38px !important;
  line-height: 48px !important;
  font-weight: 600 !important;
  letter-spacing: 0.5px !important;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  color: white;
}
@media only screen and (max-width: 700px) {
  .baa__c-title p {
    font-family: "Urbanist", sans-serif !important;
    font-size: 28px !important;
    line-height: 32px !important;
    font-weight: 600 !important;
    letter-spacing: 1px !important;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
  }
}
.baa__c-icons {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  gap: 10px;
}
@media only screen and (max-width: 1000px) {
  .baa__c-icons {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
}
.baa__c-icons-icon {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
  width: 33.3333333333%;
  padding-left: clamp(20px, -116.3636363636px + 0.1363636364 * 100vw, 80px);
  padding-right: clamp(20px, -116.3636363636px + 0.1363636364 * 100vw, 80px);
  border-left: 1px solid #BA8034;
  border-right: 1px solid #BA8034;
}
@media only screen and (max-width: 1000px) {
  .baa__c-icons-icon {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    padding-left: 0;
    padding-right: 0;
    width: 100%;
    border-right: unset;
    border-left: unset;
    border-bottom: 1px solid #BA8034;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
@media only screen and (max-width: 700px) {
  .baa__c-icons-icon {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
    gap: 10px;
  }
}
.baa__c-icons-icon:first-child {
  padding-right: clamp(20px, -116.3636363636px + 0.1363636364 * 100vw, 80px);
  padding-left: 0;
  border-left: unset;
  border-right: unset;
}
@media only screen and (max-width: 1000px) {
  .baa__c-icons-icon:first-child {
    padding-right: 0;
    padding-left: 0;
  }
}
.baa__c-icons-icon:last-child {
  padding-left: clamp(20px, -116.3636363636px + 0.1363636364 * 100vw, 80px);
  padding-right: 0;
  border-left: unset;
  border-right: unset;
}
@media only screen and (max-width: 1000px) {
  .baa__c-icons-icon:last-child {
    padding-right: 0;
    padding-left: 0;
  }
}
.baa__c-icons-icon-head {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 12px;
  padding-top: 7px;
  padding-bottom: 7px;
}
@media only screen and (max-width: 1000px) {
  .baa__c-icons-icon-head {
    min-width: clamp(220px, 173.3333333333px + 0.0666666667 * 100vw, 240px);
  }
}
@media only screen and (max-width: 700px) {
  .baa__c-icons-icon-head {
    min-width: -moz-fit-content;
    min-width: fit-content;
  }
}
.baa__c-icons-icon-head img {
  height: 50px;
  width: 50px;
  -o-object-fit: contain;
     object-fit: contain;
}
.baa__c-icons-icon-head h3 {
  font-family: "Urbanist", sans-serif !important;
  font-size: 24px !important;
  line-height: 36px !important;
  font-weight: 700 !important;
  letter-spacing: 0.3px !important;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  color: white;
}
@media only screen and (max-width: 700px) {
  .baa__c-icons-icon-head h3 {
    font-family: "Urbanist", sans-serif !important;
    font-size: 22px !important;
    line-height: auto !important;
    font-weight: 600 !important;
    letter-spacing: 1px !important;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
  }
}
.baa__c-icons-icon .g-body {
  gap: 0;
}
.baa__c-icons-icon .g-body ul li {
  color: white;
  font-family: "Urbanist", sans-serif !important;
  font-size: 20px !important;
  line-height: 32px !important;
  font-weight: 400 !important;
  letter-spacing: 0.5px !important;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}
.baa__c-icons-icon .g-body p {
  color: white;
  font-family: "Urbanist", sans-serif !important;
  font-size: 20px !important;
  line-height: 32px !important;
  font-weight: 400 !important;
  letter-spacing: 0.5px !important;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

.patientTestimonials {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 40px;
  width: 100%;
  padding-top: 100px;
  padding-bottom: 100px;
}
@media only screen and (max-width: 700px) {
  .patientTestimonials {
    padding-top: clamp(40px, 14.5882352941px + 0.0705882353 * 100vw, 64px);
    padding-bottom: clamp(40px, 14.5882352941px + 0.0705882353 * 100vw, 64px);
  }
}
.patientTestimonials__testimonials {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: wrap;
  width: 100%;
  gap: 20px;
  row-gap: 40px;
}
@media only screen and (max-width: 700px) {
  .patientTestimonials__testimonials {
    row-gap: 20px;
  }
}
.patientTestimonials__testimonials-item {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  width: calc(50% - 10px);
  padding: clamp(100px, 62.1621621622px + 0.0540540541 * 100vw, 140px) 24px 60px 24px;
  margin-top: clamp(80px, 42.1621621622px + 0.0540540541 * 100vw, 120px);
  outline: 1px solid #BA8034;
  gap: 24px;
}
@media only screen and (max-width: 700px) {
  .patientTestimonials__testimonials-item {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
  }
}
.patientTestimonials__testimonials-item.invisalign {
  width: 100%;
}
.patientTestimonials__testimonials-item h3 {
  max-width: 480px;
  text-align: center;
}
@media only screen and (max-width: 700px) {
  .patientTestimonials__testimonials-item h3 {
    max-width: 100%;
  }
}
.patientTestimonials__testimonials-item .g-body {
  max-width: 480px;
  text-align: center;
  flex: 1;
}
@media only screen and (max-width: 700px) {
  .patientTestimonials__testimonials-item .g-body {
    max-width: 100%;
  }
}
.patientTestimonials__testimonials-item .g-body.invisalign {
  max-width: 100%;
  text-align: left;
  padding-left: clamp(0px, -227.2727272727px + 0.2272727273 * 100vw, 100px);
  padding-right: clamp(0px, -227.2727272727px + 0.2272727273 * 100vw, 100px);
}
.patientTestimonials__testimonials-item > img {
  position: absolute;
  top: calc(clamp(80px, 42.1621621622px + 0.0540540541 * 100vw, 120px) * -1);
  left: calc(50% - clamp(80px, 42.1621621622px + 0.0540540541 * 100vw, 120px));
  height: clamp(160px, 84.3243243243px + 0.1081081081 * 100vw, 240px);
  width: clamp(160px, 84.3243243243px + 0.1081081081 * 100vw, 240px);
  border-radius: 240px;
  z-index: 2;
}
.patientTestimonials .videoPopup {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 20px;
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  max-width: 640px;
  filter: drop-shadow(0 6px 24px rgba(0, 0, 0, 0.23));
  position: absolute;
  z-index: 100;
  background-color: #fff;
  border-radius: 4px;
  display: none;
  opacity: 0;
  transform: translateY(-15px);
  left: calc(50% - 320px);
  right: calc(50% - 320px);
  top: 20px;
}
@media only screen and (max-width: 1000px) {
  .patientTestimonials .videoPopup {
    left: 20px;
    right: 20px;
    max-width: 100%;
  }
}
.patientTestimonials .videoPopup img {
  position: absolute;
  height: 32px;
  width: 32px;
  top: -20px;
  right: -20px;
}
.patientTestimonials .videoPopup img::before {
  content: "";
  height: 40px;
  width: 40px;
  background: #BA8034;
  border-radius: 40px;
  position: absolute;
  top: -8px;
  left: -8px;
}
.patientTestimonials .videoPopup iframe {
  width: 100%;
  height: 100%;
  max-width: 640px;
  background-color: #BA8034;
  border-radius: 8px;
}
.patientTestimonials--single .patientTestimonials__testimonial-item {
  width: 100%;
}

.googleReviews {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 40px;
  padding-bottom: 100px;
}
@media only screen and (max-width: 1000px) {
  .googleReviews {
    gap: clamp(32px, 27.5px + 0.0125 * 100vw, 40px);
    padding-bottom: clamp(40px, 26.5px + 0.0375 * 100vw, 64px);
  }
}
.googleReviews__rating {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
  font-family: "Urbanist", sans-serif !important;
  font-size: 38px !important;
  line-height: 48px !important;
  font-weight: 600 !important;
  letter-spacing: 0.5px !important;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  color: #403D39;
}
@media only screen and (max-width: 700px) {
  .googleReviews__rating {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
.googleReviews img:first-child {
  width: 140px;
}

.ti-rating-text {
  display: none;
}

.location {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
  background-color: #FDF3E7;
}
@media only screen and (max-width: 1000px) {
  .location {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
}
.location__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 80px;
  padding-bottom: 80px;
  padding-right: 40px;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
@media only screen and (max-width: 1000px) {
  .location__content {
    width: 100%;
    padding-bottom: 40px;
    padding-top: clamp(40px, -16px + 0.08 * 100vw, 64px);
  }
}
.location__content .label-l {
  margin-bottom: 10px;
}
.location__content h2 {
  margin-bottom: 20px;
}
.location__content-info {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
  min-width: 560px;
}
@media only screen and (max-width: 1000px) {
  .location__content-info {
    min-width: 100%;
    gap: 40px;
  }
}
@media only screen and (max-width: 700px) {
  .location__content-info {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 32px;
  }
}
.location__content-info-contact {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
}
.location__content-info-contact-item {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 7px;
  font-family: "Urbanist", sans-serif !important;
  font-size: 20px !important;
  line-height: 32px !important;
  font-weight: 400 !important;
  letter-spacing: 0.5px !important;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  color: #47484A;
  text-decoration: none;
}
.location__content-info-contact-item p {
  font-family: "Urbanist", sans-serif !important;
  font-size: 20px !important;
  line-height: 32px !important;
  font-weight: 400 !important;
  letter-spacing: 0.5px !important;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}
.location__content-info-contact-item img {
  height: 25px;
  width: 25px;
}
.location__content-info-times {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 8px;
}
.location__content-info-times .g-body p {
  font-family: "Urbanist", sans-serif !important;
  font-size: 20px !important;
  line-height: 32px !important;
  font-weight: 400 !important;
  letter-spacing: 0.5px !important;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  color: #47484A;
}
.location__map {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex: 1;
  width: auto;
  height: auto;
}
@media only screen and (max-width: 1000px) {
  .location__map {
    width: 100%;
    height: 400px;
    min-height: 400px;
  }
}
.location__map iframe {
  height: 100%;
  width: 100%;
  min-height: 400px;
}

.bookingForm {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
  padding-block: 40px;
  background-color: #403D39;
  padding: clamp(16px, -11.2727272727px + 0.0272727273 * 100vw, 28px) clamp(24px, 5.8181818182px + 0.0181818182 * 100vw, 32px);
  border-radius: 0px 0px 3px 3px;
}
@media only screen and (min-width: 1680px) {
  .bookingForm {
    margin-left: 100px;
    margin-right: 100px;
  }
}
@media only screen and (max-width: 1680px) {
  .bookingForm {
    margin-left: 100px;
    margin-right: 100px;
  }
}
@media only screen and (max-width: 1440px) {
  .bookingForm {
    margin-left: calc((100vw - clamp(62.5rem, 100vw + 0rem, 90rem)) / 2 + clamp(64px, -17.8181818182px + 0.0818181818 * 100vw, 100px));
    margin-right: calc((100vw - clamp(62.5rem, 100vw + 0rem, 90rem)) / 2 + clamp(64px, -17.8181818182px + 0.0818181818 * 100vw, 100px));
  }
}
@media only screen and (max-width: 1000px) {
  .bookingForm {
    margin-left: calc((100vw - clamp(43.75rem, 100vw + 0rem, 62.5rem)) / 2 + clamp(40px, -16px + 0.08 * 100vw, 64px));
    margin-right: calc((100vw - clamp(43.75rem, 100vw + 0rem, 62.5rem)) / 2 + clamp(40px, -16px + 0.08 * 100vw, 64px));
  }
}
@media only screen and (max-width: 700px) {
  .bookingForm {
    margin-left: calc((100vw - clamp(22.5rem, 100vw + 0rem, 43.75rem)) / 2 + clamp(20px, -1.1764705882px + 0.0588235294 * 100vw, 40px));
    margin-right: calc((100vw - clamp(22.5rem, 100vw + 0rem, 43.75rem)) / 2 + clamp(20px, -1.1764705882px + 0.0588235294 * 100vw, 40px));
  }
}
@media only screen and (max-width: 360px) {
  .bookingForm {
    margin-left: calc((100vw - clamp(0rem, 100vw + 0rem, 22.5rem)) / 2 + clamp(20px, -1.1764705882px + 0.0588235294 * 100vw, 40px));
    margin-right: calc((100vw - clamp(0rem, 100vw + 0rem, 22.5rem)) / 2 + clamp(20px, -1.1764705882px + 0.0588235294 * 100vw, 40px));
  }
}
@media only screen and (max-width: 1440px) {
  .bookingForm {
    margin-left: clamp(0px, -227.2727272727px + 0.2272727273 * 100vw, 100px);
    margin-right: clamp(0px, -227.2727272727px + 0.2272727273 * 100vw, 100px);
  }
}
.bookingForm-bottom {
  margin: 0;
  border-radius: 0;
}
@media only screen and (min-width: 1680px) {
  .bookingForm-bottom {
    padding-left: 100px;
    padding-right: 100px;
  }
}
@media only screen and (max-width: 1680px) {
  .bookingForm-bottom {
    padding-left: 100px;
    padding-right: 100px;
  }
}
@media only screen and (max-width: 1440px) {
  .bookingForm-bottom {
    padding-left: calc((100vw - clamp(62.5rem, 100vw + 0rem, 90rem)) / 2 + clamp(64px, -17.8181818182px + 0.0818181818 * 100vw, 100px));
    padding-right: calc((100vw - clamp(62.5rem, 100vw + 0rem, 90rem)) / 2 + clamp(64px, -17.8181818182px + 0.0818181818 * 100vw, 100px));
  }
}
@media only screen and (max-width: 1000px) {
  .bookingForm-bottom {
    padding-left: calc((100vw - clamp(43.75rem, 100vw + 0rem, 62.5rem)) / 2 + clamp(40px, -16px + 0.08 * 100vw, 64px));
    padding-right: calc((100vw - clamp(43.75rem, 100vw + 0rem, 62.5rem)) / 2 + clamp(40px, -16px + 0.08 * 100vw, 64px));
  }
}
@media only screen and (max-width: 700px) {
  .bookingForm-bottom {
    padding-left: calc((100vw - clamp(22.5rem, 100vw + 0rem, 43.75rem)) / 2 + clamp(20px, -1.1764705882px + 0.0588235294 * 100vw, 40px));
    padding-right: calc((100vw - clamp(22.5rem, 100vw + 0rem, 43.75rem)) / 2 + clamp(20px, -1.1764705882px + 0.0588235294 * 100vw, 40px));
  }
}
@media only screen and (max-width: 360px) {
  .bookingForm-bottom {
    padding-left: calc((100vw - clamp(0rem, 100vw + 0rem, 22.5rem)) / 2 + clamp(20px, -1.1764705882px + 0.0588235294 * 100vw, 40px));
    padding-right: calc((100vw - clamp(0rem, 100vw + 0rem, 22.5rem)) / 2 + clamp(20px, -1.1764705882px + 0.0588235294 * 100vw, 40px));
  }
}
.bookingForm h4 {
  font-family: "Urbanist", sans-serif !important;
  font-size: 20px !important;
  line-height: 28px !important;
  font-weight: 700 !important;
  letter-spacing: 0.5px !important;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  color: #fff;
}
@media only screen and (max-width: 700px) {
  .bookingForm h4 {
    font-family: "Urbanist", sans-serif !important;
    font-size: 18px !important;
    line-height: 24px !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
  }
}
.bookingForm .gform_wrapper {
  width: 100%;
}
.bookingForm #gform_2, .bookingForm #gform_3, .bookingForm #gform_5, .bookingForm #gform_6 {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
}
@media only screen and (max-width: 800px) {
  .bookingForm #gform_2, .bookingForm #gform_3, .bookingForm #gform_5, .bookingForm #gform_6 {
    flex-direction: column;
  }
}
.bookingForm #gform_2 .gform-body.gform_body, .bookingForm #gform_3 .gform-body.gform_body, .bookingForm #gform_5 .gform-body.gform_body, .bookingForm #gform_6 .gform-body.gform_body {
  width: 100%;
}
.bookingForm #gform_2 .gform_footer.top_label, .bookingForm #gform_3 .gform_footer.top_label, .bookingForm #gform_5 .gform_footer.top_label, .bookingForm #gform_6 .gform_footer.top_label {
  margin: 0 !important;
  padding: 0 !important;
  align-self: flex-start;
}
@media only screen and (max-width: 800px) {
  .bookingForm #gform_2 .gform_footer.top_label, .bookingForm #gform_3 .gform_footer.top_label, .bookingForm #gform_5 .gform_footer.top_label, .bookingForm #gform_6 .gform_footer.top_label {
    width: 100% !important;
  }
}
.bookingForm #gform_2 .gform_footer.before, .bookingForm #gform_3 .gform_footer.before, .bookingForm #gform_5 .gform_footer.before, .bookingForm #gform_6 .gform_footer.before {
  padding: 0 !important;
  margin: 0 !important;
  align-self: flex-start;
}
@media only screen and (max-width: 800px) {
  .bookingForm #gform_2 .gform_footer.before, .bookingForm #gform_3 .gform_footer.before, .bookingForm #gform_5 .gform_footer.before, .bookingForm #gform_6 .gform_footer.before {
    width: 100%;
  }
}
.bookingForm #gform_2 .gform_fields, .bookingForm #gform_3 .gform_fields, .bookingForm #gform_5 .gform_fields, .bookingForm #gform_6 .gform_fields {
  grid-column-gap: 8px;
}
@media only screen and (max-width: 800px) {
  .bookingForm #gform_2 .gform_fields, .bookingForm #gform_3 .gform_fields, .bookingForm #gform_5 .gform_fields, .bookingForm #gform_6 .gform_fields {
    grid-template-columns: repeat(4, 1fr);
  }
}
.bookingForm #gform_2 input[type=text],
.bookingForm #gform_2 input[type=email],
.bookingForm #gform_2 input[type=tel], .bookingForm #gform_3 input[type=text],
.bookingForm #gform_3 input[type=email],
.bookingForm #gform_3 input[type=tel], .bookingForm #gform_5 input[type=text],
.bookingForm #gform_5 input[type=email],
.bookingForm #gform_5 input[type=tel], .bookingForm #gform_6 input[type=text],
.bookingForm #gform_6 input[type=email],
.bookingForm #gform_6 input[type=tel] {
  border-radius: 3px;
  border: 1px solid #BA8034;
  padding: 0px 24px;
  height: 60px;
  background: #403D39;
  font-family: "Urbanist", sans-serif !important;
  font-size: 20px !important;
  line-height: 32px !important;
  font-weight: 400 !important;
  letter-spacing: 0.5px !important;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  color: white;
  outline: none;
}
.bookingForm #gform_2 input[type=text]::-moz-placeholder, .bookingForm #gform_2 input[type=email]::-moz-placeholder, .bookingForm #gform_2 input[type=tel]::-moz-placeholder, .bookingForm #gform_3 input[type=text]::-moz-placeholder, .bookingForm #gform_3 input[type=email]::-moz-placeholder, .bookingForm #gform_3 input[type=tel]::-moz-placeholder, .bookingForm #gform_5 input[type=text]::-moz-placeholder, .bookingForm #gform_5 input[type=email]::-moz-placeholder, .bookingForm #gform_5 input[type=tel]::-moz-placeholder, .bookingForm #gform_6 input[type=text]::-moz-placeholder, .bookingForm #gform_6 input[type=email]::-moz-placeholder, .bookingForm #gform_6 input[type=tel]::-moz-placeholder {
  color: white;
}
.bookingForm #gform_2 input[type=text]::placeholder,
.bookingForm #gform_2 input[type=email]::placeholder,
.bookingForm #gform_2 input[type=tel]::placeholder, .bookingForm #gform_3 input[type=text]::placeholder,
.bookingForm #gform_3 input[type=email]::placeholder,
.bookingForm #gform_3 input[type=tel]::placeholder, .bookingForm #gform_5 input[type=text]::placeholder,
.bookingForm #gform_5 input[type=email]::placeholder,
.bookingForm #gform_5 input[type=tel]::placeholder, .bookingForm #gform_6 input[type=text]::placeholder,
.bookingForm #gform_6 input[type=email]::placeholder,
.bookingForm #gform_6 input[type=tel]::placeholder {
  color: white;
}
.bookingForm #gform_2 input[type=submit], .bookingForm #gform_3 input[type=submit], .bookingForm #gform_5 input[type=submit], .bookingForm #gform_6 input[type=submit] {
  font-family: "Urbanist", sans-serif !important;
  font-size: 16px !important;
  line-height: auto !important;
  font-weight: 600 !important;
  letter-spacing: 1px !important;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-transform: uppercase;
  background: #BA8034;
  color: white;
  height: 60px;
  border: none;
  padding: 10px 20px;
  border-radius: 3px;
  cursor: pointer;
  margin: 0;
  flex: 1;
  width: 100% !important;
}
.bookingForm #gform_2 input[type=submit]:hover, .bookingForm #gform_3 input[type=submit]:hover, .bookingForm #gform_5 input[type=submit]:hover, .bookingForm #gform_6 input[type=submit]:hover {
  background: #926529;
}
.bookingForm #gform_2 .gfield_validation_message, .bookingForm #gform_3 .gfield_validation_message, .bookingForm #gform_5 .gfield_validation_message, .bookingForm #gform_6 .gfield_validation_message {
  color: white;
  text-align: start;
}

.gform_validation_errors {
  display: none;
}

.fullSpanImage {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 480px;
  overflow: hidden;
}
.fullSpanImage img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

/* ----------------------------- KMG ----------------------------- */
/* ----------------------------- Parallax ----------------------------- */
.parallax-container {
  position: relative;
  overflow: hidden;
}

.parallax-bg {
  position: absolute;
  left: 0;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  z-index: -1;
}

#pageTransition {
  position: fixed;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  z-index: 1000000;
  top: 0;
  left: 0;
  min-width: 100vw;
  min-height: 110vh;
  overflow: hidden;
  opacity: 1;
  background-color: white;
}
#pageTransition .splash-logo {
  height: 64px;
}

/*# sourceMappingURL=style-index.css.map*/