@font-face {
  font-family: Manrope;
  src: url('../fonts/Manrope-Light.ttf') format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Manrope;
  src: url('../fonts/Manrope-Bold.ttf') format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Manrope;
  src: url('../fonts/Manrope-SemiBold.ttf') format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Manrope;
  src: url('../fonts/Manrope-Regular.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Manrope;
  src: url('../fonts/Manrope-Medium.ttf') format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

:root {
  --color--background-dark-1: #151515;
  --font-family--manrope: Manrope, sans-serif;
  --color--copy-bright: #fffdf3;
  --heading--h1: 4rem;
  --heading--h2: 4rem;
  --heading--h3: 3rem;
  --heading--h4: 2.5rem;
  --heading--h5: 1.4rem;
  --heading--h6: 1.1rem;
  --spacing--sm: 2.25rem;
  --color--divider-grey-alpha: #b4b4b454;
  --color--copy-grey: #757575;
  --text-size--medium: 1.25rem;
  --color--white: white;
  --container--medium: 80rem;
  --border-radius--rounded: 999rem;
  --color--soft-dark: #232325;
  --spacing--xs: .8rem;
  --text-size--tiny: .9rem;
  --text-size--large: 1.3rem;
  --container--large: 100rem;
  --page-padding--desktop: 4rem;
  --page-padding--tablet: 6vw;
  --font-family--ff-headings: Montserrat, sans-serif;
  --color--brand-color: #3b8dff;
  --font-family--ff-body-text: "Open Sans", sans-serif;
  --border-radius--medium: 2.5rem;
  --color--transparent: transparent;
  --font-family--ff-accent-font: Georgia, Times, "Times New Roman", serif;
  --border-radius--small: .75rem;
  --color--accent-color: #fc762d;
  --color--background-dark-2: #3b4235;
  --color--background-light-1: #f0efe9;
  --container--small: 50rem;
  --container--tiny: 32rem;
  --spacing--xxs: .5rem;
  --spacing--md: 4.5rem;
  --spacing--xl: 7.5rem;
  --text-size--small: 1.1rem;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.w-layout-layout {
  grid-row-gap: 20px;
  grid-column-gap: 20px;
  grid-auto-columns: 1fr;
  justify-content: center;
  padding: 20px;
}

.w-layout-cell {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

body {
  background-color: var(--color--background-dark-1);
  font-family: var(--font-family--manrope);
  color: var(--color--copy-bright);
  font-size: 1rem;
  line-height: 1;
}

h1 {
  font-size: var(--heading--h1);
  letter-spacing: -.01em;
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 600;
  line-height: 1;
}

h2 {
  font-size: var(--heading--h2);
  letter-spacing: -.01em;
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 600;
  line-height: 1;
}

h3 {
  font-size: var(--heading--h3);
  letter-spacing: -.005em;
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 600;
  line-height: 1.1;
}

h4 {
  font-size: var(--heading--h4);
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 600;
  line-height: 1.2;
}

h5 {
  font-size: var(--heading--h5);
  letter-spacing: .02em;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 600;
  line-height: 1.05;
}

h6 {
  font-size: var(--heading--h6);
  letter-spacing: .02em;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 600;
  line-height: 1.1;
}

p {
  margin-bottom: 0;
  line-height: 1.4;
}

a {
  color: inherit;
  text-decoration: underline;
}

ul {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 2.5rem;
  line-height: 1.4;
}

ol {
  margin-top: var(--spacing--sm);
  margin-bottom: var(--spacing--sm);
  padding-left: 2.5rem;
  line-height: 1.4;
}

label {
  margin-bottom: .3rem;
  display: block;
}

blockquote {
  border-left: 5px solid var(--color--divider-grey-alpha);
  margin-bottom: 0;
  padding: .6rem 1.2rem;
  line-height: 1.4;
}

figure {
  margin-bottom: 10px;
}

.form-input {
  border: 1px solid var(--color--copy-grey);
  background-color: #ffffff0d;
  border-radius: 15px;
  margin-top: 0;
  margin-bottom: 0;
  padding: 0 0;
}

.form-input.form-textarea {
  padding: 10px;
}

.copy-medium {
  font-size: var(--text-size--medium);
  line-height: 1.4;
}

.main-wrapper {
  color: var(--color--white);
  text-align: left;
}

.heading-style-h2 {
  font-size: var(--heading--h2);
  letter-spacing: -.01em;
  text-transform: none;
  line-height: 1;
}

.icon-1x1-large {
  width: 2.5rem;
  height: 2.5rem;
}

.container-medium {
  max-width: var(--container--medium);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.overflow-hidden {
  overflow: hidden;
}

.button {
  border: 2px solid var(--color--divider-grey-alpha);
  border-radius: var(--border-radius--rounded);
  background-color: var(--color--soft-dark);
  color: var(--color--copy-bright);
  text-align: center;
  letter-spacing: .02rem;
  text-transform: uppercase;
  padding: 1.2rem 1.7rem;
  font-weight: 600;
  text-decoration: none;
}

.spacer-xs-start {
  padding-top: var(--spacing--xs);
}

.copy-tiny {
  font-size: var(--text-size--tiny);
  line-height: 1.4;
}

.spacer-sm-start {
  padding-top: var(--spacing--sm);
}

.copy-large {
  font-size: var(--text-size--large);
  line-height: 1.2;
}

.spacer-xs-end {
  padding-bottom: var(--spacing--xs);
}

.container-large {
  max-width: var(--container--large);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.container-large.mobile-page {
  display: none;
}

.spacer-sm-end {
  padding-bottom: var(--spacing--sm);
}

.page-padding {
  padding-right: var(--page-padding--desktop);
  padding-left: var(--page-padding--desktop);
}

.heading-style-h3 {
  font-size: var(--heading--h3);
  text-align: center;
  letter-spacing: -.005em;
  text-transform: none;
  line-height: 1.1;
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
}

.utility-page-content {
  padding-right: var(--page-padding--desktop);
  padding-left: var(--page-padding--desktop);
  text-align: center;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 44rem;
  display: none;
}

.utility-page-form {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.column-scroll-sticky {
  float: none;
  width: 100%;
  height: 100vh;
  position: sticky;
  top: 0;
}

.column-scroll-item {
  flex: none;
  width: 33.3333vw;
  height: 100%;
  position: absolute;
  inset: 0% auto 0% 0%;
  box-shadow: 1.5rem 0 2rem #0000001c;
}

.column-scroll-item.is-2 {
  margin-left: auto;
  margin-right: auto;
  top: auto;
  right: 0;
}

.column-scroll-item.is-3 {
  inset: 0% 0% 0% auto;
}

.column-scroll-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.column-scroll-wrapper {
  float: none;
  width: 100%;
  height: 350vh;
  position: relative;
}

.intro-section {
  position: relative;
}

.intro-content {
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  color: #c7c7c7;
  text-align: center;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 70rem;
  min-height: 100svh;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.column-scroll-sticky-inner {
  width: 45vw;
  height: 100%;
  position: absolute;
  inset: 0% 0% 0% auto;
  overflow: hidden;
}

.column-scroll-sticky-inner.column-scroll-sticky-inner-invert {
  inset: 0% 0% 0% auto;
}

.column-scroll-content-wrapper {
  z-index: 2;
  width: 66.66vw;
  min-height: 100vh;
  margin-top: -100vh;
  padding-right: 7rem;
  position: relative;
}

.column-scroll-content {
  padding-top: 4.5rem;
}

.title-upper-label {
  text-transform: uppercase;
  font-size: 8vw;
  font-weight: 500;
  line-height: .95;
}

.title-upper-label.is-1 {
  font-family: var(--font-family--ff-headings);
  color: var(--color--brand-color);
  margin-bottom: 30px;
  font-size: 3vw;
}

.title-upper-label.is-2 {
  font-family: var(--font-family--ff-headings);
}

.column-scroll-content-copy {
  width: 100%;
  max-width: 38rem;
  margin-top: 2rem;
  line-height: 1.2;
}

.column-scroll-content-text {
  font-family: var(--font-family--ff-body-text);
  text-align: left;
  text-transform: none;
  font-size: 1.25rem;
  line-height: 1.2;
}

.header-button {
  border: 1px solid var(--color--brand-color);
  color: var(--color--brand-color);
  text-align: center;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 999em;
  padding: 1.1em 2em 1em;
  font-size: .65em;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  transition: all .35s cubic-bezier(.165, .84, .44, 1);
  display: inline-block;
}

.header-button:hover {
  padding-left: 3.5em;
  padding-right: 3.5em;
}

.header-button.is-large {
  border-color: var(--color--brand-color);
  color: var(--color--brand-color);
  font-size: 1em;
}

.header-inner {
  grid-column-gap: 3em;
  grid-row-gap: 3em;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding-top: 1em;
  padding-bottom: 1em;
  display: flex;
}

.nav-main {
  background-color: var(--color--background-dark-1);
  border-bottom: 1px solid #353535;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-mobile-menu {
  color: var(--color--copy-grey);
  padding-left: 0;
  display: none;
}

.header-left {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  align-items: center;
  display: flex;
}

.gallery-section {
  flex-flow: wrap;
  justify-content: space-between;
  align-items: stretch;
  padding-top: 4em;
  padding-bottom: 4em;
}

.video-preview-wrapper {
  aspect-ratio: 16 / 9;
  background-color: #000;
  border-radius: 1em;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.video-preview-img {
  opacity: .72;
  object-fit: contain;
  border-radius: 1em;
  width: 100%;
  height: 100%;
  transition: transform .3s cubic-bezier(.165, .84, .44, 1);
}

.video-preview-img:hover {
  transform: scale(1.03);
}

.youtube-play-button {
  background-color: #e61313;
  border-radius: 1rem;
  justify-content: center;
  align-items: center;
  width: 7em;
  padding-top: .4em;
  padding-bottom: .4em;
  font-size: 1.1em;
  display: flex;
  position: absolute;
  box-shadow: 0 .7rem 2.5rem #00000047;
}

.youtube-play-icon {
  height: 3.9em;
  margin-right: -.2em;
}

.intro-title {
  color: #fff;
  text-transform: uppercase;
  font-size: 3em;
  line-height: .9;
}

.intro-copy-text {
  padding-left: 3em;
  padding-right: 3em;
  font-size: 1.2em;
}

.intro-pre-title {
  letter-spacing: .05em;
  text-transform: uppercase;
  font-size: 1.4em;
  line-height: .9;
}

.quick-stack {
  -webkit-text-fill-color: inherit;
  background-color: #7d7de900;
  background-clip: border-box;
}

.cell {
  outline-offset: 0px;
  border: 1px solid #000;
  border-radius: 10px;
  outline: 5px solid #555;
  padding-bottom: 0;
  padding-right: 0;
  font-size: 1rem;
  display: flex;
}

.cell-2 {
  text-align: left;
  border: 5px solid #000;
  border-radius: 20px;
  justify-content: center;
  align-items: center;
}

.image {
  box-sizing: border-box;
  aspect-ratio: auto;
  object-fit: fill;
  display: block;
  overflow: hidden;
}

.heading {
  color: #3b8dff;
}

.italic-text {
  color: #ececec;
}

.italic-text-3, .italic-text-4 {
  color: var(--color--divider-grey-alpha);
}

.quote-section {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
  margin-bottom: 50px;
  display: flex;
}

.form {
  box-sizing: border-box;
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  grid-template-rows: auto auto auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  padding: 15px;
  display: grid;
}

.form-label {
  color: var(--color--copy-grey);
  margin-bottom: 0;
  padding-bottom: 2px;
  padding-left: 12px;
}

.submit-button {
  text-align: center;
  letter-spacing: .02rem;
  text-transform: uppercase;
  border-radius: 15px;
  margin-top: 40px;
  margin-bottom: 0;
  padding: 1.2rem 1.7rem;
  font-weight: 600;
}

.slide-nav {
  color: var(--color--brand-color);
  margin: auto;
  font-weight: 600;
}

.slide {
  background-image: url('../images/Sedan-6_1.avif');
  background-position: 50%;
  background-size: cover;
}

.gallery-slide.medium-slide-1 {
  background-image: url('../images/SUV-2_1.avif');
  background-position: 50%;
  background-size: cover;
  background-attachment: scroll;
}

.gallery-slide.medium-slide-2 {
  background-image: url('../images/SUV-1_1.avif');
  background-position: 50%;
  background-size: cover;
  background-attachment: scroll;
}

.gallery-slide.medium-slide-3 {
  background-image: url('../images/SUV-3_1.avif');
  background-position: 50%;
  background-size: cover;
}

.gallery-slide.small-slide-1 {
  background-image: url('../images/Sedan-1_1.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.gallery-slide.small-slide-2 {
  background-image: url('../images/Sedan-6_1.avif');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.gallery-slide.small-slide-3 {
  background-image: url('../images/Sedan-7_1.avif');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.gallery-slide.large-slide-1 {
  background-image: url('../images/Truck-1_1.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.gallery-slide.large-slide-2 {
  background-image: url('../images/Truck-3_1.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.gallery-slide.large-slide-3 {
  background-image: url('../images/Truck-2_1.webp');
  background-position: 50% 60%;
  background-repeat: no-repeat;
  background-size: cover;
}

.tabs {
  object-fit: fill;
  height: 500px;
}

.tabs-content, .tab-pane {
  height: 100%;
}

.tabpane_container {
  border: 5px solid var(--color--white);
  border-radius: 5px;
  height: 100%;
}

.tabpane_slider {
  height: 100%;
}

.slide-2 {
  background-image: url('../images/SUV-1_1.avif');
  background-position: 0 0;
  background-size: auto;
}

.tabs-menu {
  grid-column-gap: 5%;
  grid-row-gap: 5%;
  justify-content: center;
  align-items: center;
  display: flex;
}

.gallery-tab {
  background-color: var(--color--copy-grey);
  color: var(--color--soft-dark);
  border-top-left-radius: 10px;
  border-top-right-radius: 25px;
  font-size: 1.5rem;
  font-weight: 700;
}

.gallery-tab.w--current {
  background-color: var(--color--white);
  padding-left: 20px;
  padding-right: 20px;
}

.gallery-tab.gallery-active.w--current {
  background-color: var(--color--white);
}

.slide-3 {
  background-color: var(--color--background-dark-1);
  background-image: url('../images/Sedan-1_1.webp');
  background-position: 50% 60%;
  background-repeat: no-repeat;
  background-size: cover;
}

.slide-4 {
  background-image: url('../images/Sedan-7_1.avif');
  background-position: 50%;
  background-size: cover;
}

.gallery-left-arrow-icon {
  -webkit-backdrop-filter: blur(1px);
  backdrop-filter: blur(1px);
  border-radius: 25px 5px 5px 25px;
  margin-left: 10px;
  padding-top: 20px;
  padding-bottom: 60px;
}

.gallery-right-arrow-icon {
  -webkit-backdrop-filter: blur(1px);
  backdrop-filter: blur(1px);
  border-radius: 5px 25px 25px 5px;
  margin-right: 10px;
  padding-top: 20px;
  padding-bottom: 60px;
}

.greeting-quickstack {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  max-width: 75%;
}

.image-2 {
  align-self: center;
  max-width: 100%;
}

.heading-2 {
  font-weight: 500;
}

.heading-3 {
  font-size: var(--heading--h4);
  text-align: center;
}

.heading-4 {
  font-size: var(--heading--h4);
}

.heading-4.heading-owner-hello {
  text-align: center;
  color: #f8eed8;
}

.bold-text-2, .text-span {
  color: var(--color--brand-color);
}

.paragraph {
  font-size: 2rem;
}

.paragraph-2 {
  color: #f8eed8;
  margin-top: 60px;
  font-size: 1.5rem;
  line-height: 1.25;
}

.cell-3 {
  padding: 30px;
}

.container {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  text-align: left;
  flex-flow: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  max-width: 100%;
  display: flex;
}

.container-2 {
  align-self: center;
}

.cell-4 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.social-media-grid {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  object-fit: fill;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  width: 100%;
  padding: 30px 25%;
}

.pricing-page-btn-container {
  max-width: 100%;
}

.button-2 {
  border: 3px solid var(--color--brand-color);
  text-align: center;
  letter-spacing: .02rem;
  text-transform: uppercase;
  background-color: #0000;
  border-radius: 10px;
  width: 100%;
  margin-top: 40px;
  padding: 15px 91px;
  font-size: 2rem;
  font-weight: 600;
}

.social-media-icon-container {
  border: 10px solid var(--color--white);
  background-color: var(--color--transparent);
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 10px;
  display: flex;
}

.social-media-icon-container.instagram-icon-container {
  border-width: 10px;
  border-color: var(--color--white);
  cursor: pointer;
  background-image: linear-gradient(135deg, #ff796c, #ff3a55 75%, #e00047);
  border-radius: 50px;
}

.social-media-icon-container.facebook-icon-container {
  cursor: pointer;
  background-image: linear-gradient(135deg, #507dd2, #3764b9 75%, #1e4ba0);
}

.social-media-icon-container.tiktok-icon-container {
  cursor: pointer;
  background-image: linear-gradient(135deg, #501432, #2d0f1e 75%, #000);
}

.code-embed {
  z-index: 0;
  position: relative;
}

.heading-5 {
  color: var(--color--copy-grey);
}

.heading-6 {
  font-family: var(--font-family--ff-accent-font);
  font-style: italic;
}

.social-media-icon {
  width: 5rem;
  position: static;
}

.divider {
  background-color: var(--color--copy-grey);
  object-fit: fill;
  width: 100%;
  height: 2px;
  max-height: 2px;
}

.social-media-container {
  border-top: 1px solid var(--color--copy-grey);
  border-bottom: 1px solid var(--color--copy-grey);
  text-align: center;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 100%;
  margin-top: 20px;
  margin-bottom: 0;
  padding-top: 40px;
  padding-bottom: 40px;
  display: flex;
}

.footer-section {
  background-color: var(--color--soft-dark);
}

.social-preview-container {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex: 1;
  order: 0;
  justify-content: center;
  align-self: center;
  align-items: center;
  max-width: 100%;
  display: flex;
}

.body {
  background-color: var(--color--background-dark-1);
}

.pricing-category-title {
  background-color: var(--color--soft-dark);
  color: var(--color--copy-grey);
  text-align: center;
  margin-top: 30px;
  margin-bottom: 30px;
  padding: 30px 10px;
}

.price-category-container {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto auto auto auto auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: center;
  margin-top: 30px;
  display: grid;
}

.price-container {
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.code-embed-2 {
  box-sizing: border-box;
  object-fit: none;
  width: 2rem;
  height: 2rem;
  margin-left: 32px;
  margin-right: 32px;
  transform: rotate(-93deg);
}

.price-category-name {
  font-size: 2rem;
  font-weight: 400;
}

.add_on_price-text {
  margin-left: 15px;
  margin-right: 15px;
  font-size: 2rem;
  font-weight: 700;
}

.image-3 {
  object-fit: contain;
  width: 2.5rem;
  transform: rotate(0);
  z-index: inherit;
}

.serv_include-text {
  color: var(--color--copy-grey);
  margin-top: 15px;
  margin-bottom: 15px;
  font-size: 1.5rem;
  font-weight: 700;
}

.service-description-item {
  text-align: center;
}

.serv_descript-container {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  text-align: center;
  justify-content: space-between;
  align-items: center;
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
  display: flex;
}

.serv_check-image {
  width: 1.5rem;
  height: 1.5rem;
}

.serv_descript-text {
  color: var(--color--copy-grey);
}

.text-block-3 {
  margin-top: 17px;
  margin-bottom: 17px;
}

.add_on-title {
  text-align: left;
  font-size: 2rem;
}

.add_on_text-container {
  margin-left: 0;
  margin-right: 0;
}

.add_on-container {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  text-align: left;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 100%;
  display: flex;
}

.add_on_price-container {
  flex: 1;
  justify-content: flex-end;
  display: flex;
}

.add_on_descrip-text {
  color: var(--color--copy-grey);
  max-width: 85%;
  margin-top: 10px;
  margin-left: 50px;
  font-size: 1.25rem;
}

.form_name-input, .form_phone-input, .form_email-input {
  width: 100%;
}

.link-block {
  text-align: center;
}

.serv_cat_small-container, .serv_cat_medium-container, .serv_cat_large-container {
  grid-column-gap: 4rem;
  grid-row-gap: 5rem;
  display: flex;
}

.footer_info-inner {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto auto auto;
  grid-template-columns: .25fr 1fr;
  grid-auto-columns: 1fr;
  place-items: center;
  margin-top: 25px;
  margin-bottom: 25px;
  padding-top: 0;
  padding-bottom: 0;
  display: grid;
}

.footer_info-img {
  width: 2rem;
}

.footer_info-text {
  display: block;
}

.image-4 {
  width: 50%;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.text-block-5 {
  text-align: center;
  font-style: italic;
}

.paragraph-3 {
  color: var(--color--copy-grey);
  text-align: center;
  font-style: italic;
}

.footer-inner {
  display: flex;
}

.heading-7 {
  margin-top: 15px;
}

@media screen and (max-width: 991px) {
  .page-padding {
    padding-right: var(--page-padding--tablet);
    padding-left: var(--page-padding--tablet);
  }

  .header-button {
    font-size: 1em;
  }

  .header-button:hover {
    padding-left: 1.6em;
    padding-right: 1.6em;
  }

  .header-button:active {
    transform: scale(.94);
  }

  .header-inner {
    justify-content: center;
    align-items: center;
    padding-top: 2em;
  }

  .header-left, .cell {
    justify-content: center;
    align-items: center;
  }

  .paragraph-2 {
    text-align: center;
  }

  .heading-6 {
    font-size: var(--heading--h3);
    text-align: center;
  }

  .add_on_price-text {
    text-align: center;
    font-size: 1.25rem;
  }

  .image-3 {
    object-fit: contain;
    flex: 0 auto;
  }

  .add_on-title {
    font-size: 1.5rem;
  }

  .add_on_text-container {
    width: 80%;
  }

  .add_on_price-container {
    flex: none;
  }

  .banner-text {
    font-size: var(--heading--h3);
  }
}

@media screen and (max-width: 767px) {
  .column-scroll-sticky {
    position: static;
  }

  .column-scroll-wrapper {
    height: auto;
  }

  .column-scroll-sticky-inner {
    width: 100%;
  }

  .column-scroll-content-wrapper {
    width: 100%;
    min-height: auto;
    margin-top: 0;
    padding-right: 0;
  }

  .column-scroll-content {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .title-upper-label {
    font-size: 15vw;
  }

  .header-inner {
    grid-column-gap: 1.3em;
    grid-row-gap: 1.3em;
    flex-flow: column;
    justify-content: center;
    padding-top: 4.5em;
  }

  .header-left {
    flex-flow: row;
    justify-content: center;
    align-self: center;
  }

  .gallery-section {
    padding-top: 5em;
    padding-bottom: 5em;
  }

  .intro-title {
    font-size: 2.8em;
  }

  .intro-copy-text {
    padding-left: 0;
    padding-right: 0;
  }

  .quick-stack {
    flex: 0 auto;
    order: 0;
  }

  .cell {
    justify-content: center;
    align-items: center;
  }

  .bold-text, .italic-text-2 {
    font-size: var(--border-radius--medium);
  }

  .social-media-grid {
    padding-left: 10%;
    padding-right: 10%;
  }

  .heading-6 {
    font-size: var(--heading--h3);
  }

  .price-category-container {
    grid-template-rows: auto auto auto auto auto auto;
    margin-top: 0;
    padding-left: 10px;
    padding-right: 10px;
  }

  .price-category-name {
    font-size: 1.75rem;
  }

  .serv_descript-container {
    flex-flow: column;
  }

  .add_on-title {
    text-align: left;
  }

  .add_on_descrip-text {
    display: none;
  }

  .banner-text {
    font-size: var(--heading--h3);
    text-align: center;
  }

  .section_content-container {
    padding-left: 5px;
    padding-right: 5px;
  }

  .serv_cat_small-container, .serv_cat_medium-container, .serv_cat_large-container {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
  }

  .navbar {
    display: none;
  }
}

@media screen and (max-width: 479px) {
  .copy-tiny {
    text-align: center;
  }

  .container-large.mobile-page {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .container-large.page-padding {
    background-color: var(--color--soft-dark);
    display: none;
  }

  .column-scroll-sticky {
    height: auto;
  }

  .column-scroll-item {
    aspect-ratio: 3 / 2;
    width: 100%;
    height: auto;
    position: relative;
  }

  .intro-section {
    margin-bottom: 15px;
  }

  .column-scroll-sticky-inner {
    position: relative;
  }

  .title-upper-label.is-1 {
    margin-bottom: 0;
  }

  .header-button {
    width: 100%;
  }

  .header-inner {
    padding-top: 1em;
    display: flex;
  }

  .header-button-wrapper {
    width: 100%;
  }

  .nav-main {
    cursor: pointer;
  }

  .header-mobile-menu {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    flex-flow: column;
    order: 0;
    width: 100%;
    display: flex;
  }

  .header-left {
    font-size: .8em;
    display: none;
  }

  .link {
    color: var(--color--copy-bright);
    font-size: var(--heading--h4);
    text-align: center;
    font-weight: 600;
    text-decoration: none;
  }

  .quote-section {
    margin-top: 10px;
    margin-bottom: 10px;
    /* scroll-padding-top: 80px; */

  }

  .form {
    grid-template-rows: auto auto auto auto auto;
    grid-auto-flow: row;
  }

  .submit-button {
    margin-top: 10px;
  }

  .gallery-tab {
    padding-left: 10px;
    padding-right: 10px;
  }

  .greeting-quickstack {
    max-width: 95%;
    padding-left: 0;
    padding-right: 0;
  }

  .cell-3 {
    padding-left: 0;
    padding-right: 0;
  }

  .social-media-grid {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    padding-left: 5%;
    padding-right: 5%;
  }

  .heading-5 {
    font-size: var(--heading--h4);
  }

  .heading-6 {
    font-size: var(--heading--h6);
  }

  .pricing-category-title {
    font-size: var(--heading--h3);
  }

  .price-category-container {
    box-sizing: border-box;
    grid-column-gap: 5px;
    grid-row-gap: 5px;
    aspect-ratio: auto;
    object-fit: fill;
    grid-template-rows: auto auto auto auto auto auto auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-flow: row;
    place-content: center;
    place-items: center;
    width: 100%;
    max-width: 100%;
    margin-top: 10px;
    margin-left: auto;
    margin-right: auto;
  }

  .price-category-name {
    box-sizing: border-box;
    /* font-size: 1rem; */
  }

  .add_on_price-text {
    /* font-size: var(--border-radius--small); */
    margin-left: 0;
    margin-right: 0;
  }

  .image-3 {
    box-sizing: border-box;
    flex: 0 auto;
    align-self: auto;
    width: 1.5rem;
  }

  .serv_include-text {
    text-align: center;
  }

  .serv_descript-container {
    margin-top: 10px;
  }

  .serv_descript-text {
    display: none;
  }

  .add_on-title {
    text-align: left;
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 1.25rem;
  }

  .add_on_descrip-text {
    opacity: 1;
    display: none;
    position: static;
  }

  .form_phone-input {
    width: 100%;
  }

  .section_content-container {
    max-width: 100%;
  }

  .serv_cat_small-container, .serv_cat_medium-container, .serv_cat_large-container {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
    margin-top: 10px;
    margin-bottom: 10px;
    display: flex;
  }

  .text-block-4 {
    margin-top: 50px;
  }

  .menu-btn {
    text-align: center;
  }

  .footer_info-inner {
    text-align: left;
  }

  .footer_info-text {
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 1.5rem;
  }

  .footer-inner {
    flex-flow: column;
  }

  .heading-7 {
    font-size: var(--heading--h3);
    text-align: center;
  }

  .mobile_menu_icon-container {
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .mobile_menu_icon-img {
    text-align: left;
    vertical-align: middle;
    width: 50%;
    display: block;
  }

  .menu_close_icon-container {
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    display: flex;
  }

  .menu_close-img {
    width: 15%;
  }

  .navbar {
    background-color: var(--color--transparent);
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .icon {
    display: none;
  }

  .menu_btn-line {
    background-color: var(--color--white);
    color: inherit;
    height: var(--btn-line-thinkness);
    border-radius: 5px;
    width: 100%;
    margin-top: 0;
    margin-bottom: 0;
    padding-bottom: 0;
    padding-right: 0;
  }

  .menu-button {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: 7.5rem;
    padding: 10px;
    display: flex;
  }

  .nav-menu {
    background-color: var(--color--transparent);
    flex-flow: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-height: 50vh;
    padding-left: 0;
    padding-right: 0;
    display: flex;
  }

  .navbar-container {
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    display: flex;
  }

  .nav-script {
    display: block;
    position: absolute;
  }

  .menu-item-inner {
    color: var(--color--brand-color);
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    text-decoration: none;
  }

  .menu-list {
    background-color: var(--color--soft-dark);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    border-radius: 0 0 1rem 1rem;
    width: 90%;
    margin-left: 5%;
    padding-top: 60px;
    padding-bottom: 60px;
    padding-left: 0;
    position: static;
  }

  .list-item {
    text-align: left;
    margin-top: 10px;
    margin-bottom: 10px;
  }
}

#w-node-d36b3a1a-41df-377c-80b0-6e42fdf1ccba-38deffed {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_8391fd52-3393-514e-6de7-66d5e5a63717-38deffed, #Car-Details.w-node-_4a3096f3-1800-865a-0b60-7b78443073cc-38deffed {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-_139d5960-6dae-af15-c4b7-9084d6ced50b-38deffed {
  grid-area: 4 / 2 / 5 / 3;
}

#w-node-_1dbfe994-c431-6c58-bea2-5b5ca7cc86c9-38deffed {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 3.5fr 1fr;
}

#w-node-_51e784e9-ea24-2adf-8409-63f2ab9b136c-38deffed {
  grid-row: span 2 / span 2;
}

#w-node-_7feab265-b2dc-e7c8-c9ae-2e2fcfb9201b-38deffed {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-dea99182-e165-3ceb-6888-d4415fbe1d8a-2d076dd4 {
  grid-area: 1 / 1 / 2 / 2;
  place-self: auto start;
}

#w-node-_01eb275c-1041-3b09-84de-57c9eaabf5ae-2d076dd4, #w-node-_30a408e8-24d0-f6f2-914e-cd6aa1056977-2d076dd4, #w-node-_0bd3bd9c-c6df-0da8-6f31-f3e03293eb50-2d076dd4, #w-node-_51e55cac-7c41-01ca-4632-827ea9fa0e35-2d076dd4, #w-node-_928f37a4-57bd-e6db-0ef6-2abdc7582693-2d076dd4 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-bbbd3db5-75cd-9e2e-e8ec-67896d8ddbba-2d076dd4 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-bbbd3db5-75cd-9e2e-e8ec-67896d8ddbc2-2d076dd4, #footer_details-input.w-node-bbbd3db5-75cd-9e2e-e8ec-67896d8ddbc6-2d076dd4 {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-bbbd3db5-75cd-9e2e-e8ec-67896d8ddbc7-2d076dd4 {
  grid-area: 4 / 2 / 5 / 3;
}

#w-node-b662ec70-9411-6060-517a-81e72a5ee64b-2a5ee64a {
  grid-template-rows: auto;
  grid-template-columns: 1fr 4.25fr;
}

#w-node-f44c7e48-4187-bd1b-a9a5-a0e39ec097c5-0572a9bc {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-_3e1eb929-45a5-ab73-2200-ed4d271cbf5b-0572a9bc {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-a26519c1-1ec8-8a1c-4e4c-5caed39594fb-0572a9bc {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-_27048917-8603-6fb4-cea5-570e822282e8-0572a9bc {
  grid-area: 2 / 1 / 3 / 3;
}

#w-node-_526c0e5a-def8-42c3-819c-27a133ffc75d-0572a9bc {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-_6aaaa986-6a0d-5d03-3766-a39e09e4c377-0572a9bc {
  grid-area: 3 / 1 / 4 / 3;
}

#w-node-f575287e-ffa2-ba69-382e-b65544a61df2-0572a9bc {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-_940ef666-b52c-0dfb-c1d1-fe27e6ea63ba-0572a9bc {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_1b437f40-9a0e-aa53-10ed-a5c4e2a19d5c-0572a9bc, #w-node-_2d6e986d-a22a-e780-51ba-a3adbfd7803e-0572a9bc {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-a9453f8c-63da-08ac-ab69-dd5f0e58a562-0572a9bc {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-b6bfc7d1-f39c-7b52-5dc4-84d79c1e325e-0572a9bc {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-a9453f8c-63da-08ac-ab69-dd5f0e58a568-0572a9bc {
  grid-area: 2 / 1 / 3 / 3;
}

#w-node-_82e096be-c32a-3f3e-e932-87e8f381b44e-0572a9bc {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-a9453f8c-63da-08ac-ab69-dd5f0e58a56e-0572a9bc {
  grid-area: 3 / 1 / 4 / 3;
}

#w-node-a9453f8c-63da-08ac-ab69-dd5f0e58a574-0572a9bc, #w-node-a9453f8c-63da-08ac-ab69-dd5f0e58a59e-0572a9bc, #w-node-_29faad25-db5b-98c3-a942-ca69a7c26ec6-0572a9bc {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-_05aac56b-fe37-1fb1-2b16-477122849320-0572a9bc {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-cc964116-a75e-3289-c2fd-f43806c1a893-0572a9bc {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-_05aac56b-fe37-1fb1-2b16-477122849326-0572a9bc {
  grid-area: 2 / 1 / 3 / 3;
}

#w-node-_5569f548-75a3-4d63-71ba-e6cdd5328a04-0572a9bc {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-_05aac56b-fe37-1fb1-2b16-47712284932c-0572a9bc {
  grid-area: 3 / 1 / 4 / 3;
}

#w-node-_05aac56b-fe37-1fb1-2b16-477122849332-0572a9bc {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-_05aac56b-fe37-1fb1-2b16-47712284934c-0572a9bc {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-dce367be-efd6-32bb-f141-4e4f6c7d4e9e-0572a9bc {
  grid-area: 10 / 2 / 11 / 3;
}

#w-node-_2f394b49-1d5d-8680-1e91-d5dd90500768-0572a9bc, #w-node-ff3b3b08-8ab9-7514-ca4a-3c46e608ed2e-0572a9bc {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-dde36b71-17c3-1ca5-053a-51e3ecdd60cd-0572a9bc {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-f7497701-784b-4857-718f-65404b958930-0572a9bc {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-dde36b71-17c3-1ca5-053a-51e3ecdd60d3-0572a9bc {
  grid-area: 2 / 1 / 3 / 3;
}

#w-node-dff9ca4f-a860-b8f1-3a05-8b94b28fde8e-0572a9bc {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-dde36b71-17c3-1ca5-053a-51e3ecdd60d9-0572a9bc {
  grid-area: 3 / 1 / 4 / 3;
}

#w-node-dde36b71-17c3-1ca5-053a-51e3ecdd60df-0572a9bc {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-dde36b71-17c3-1ca5-053a-51e3ecdd6107-0572a9bc {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-dde36b71-17c3-1ca5-053a-51e3ecdd6120-0572a9bc {
  grid-area: 8 / 2 / 9 / 3;
}

#w-node-dde36b71-17c3-1ca5-053a-51e3ecdd6119-0572a9bc, #w-node-_2be752f8-55d4-4df2-6d8e-0f88e882f7b8-0572a9bc {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-_1093a1ae-2c61-8c59-1adc-73ed02a86709-0572a9bc {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-cf7b343d-e9ae-0308-1683-66a0c723b221-0572a9bc {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-_9fcad8e4-50e1-b1e0-8634-32b45f6e345b-0572a9bc {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-_9fcad8e4-50e1-b1e0-8634-32b45f6e345c-0572a9bc {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_9fcad8e4-50e1-b1e0-8634-32b45f6e345d-0572a9bc {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-ea3d1d7d-f81e-4601-fda1-adad61f7f7a9-0572a9bc {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-ea3d1d7d-f81e-4601-fda1-adad61f7f7aa-0572a9bc {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-ea3d1d7d-f81e-4601-fda1-adad61f7f7ab-0572a9bc {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-_950cffc0-abc0-c56a-7082-59e4852a7c50-0572a9bc {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-_950cffc0-abc0-c56a-7082-59e4852a7c51-0572a9bc {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_950cffc0-abc0-c56a-7082-59e4852a7c52-0572a9bc {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-_1fe5488e-fad4-c4e6-98b2-cc8dd526db0c-0572a9bc {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-_1fe5488e-fad4-c4e6-98b2-cc8dd526db0d-0572a9bc {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_1fe5488e-fad4-c4e6-98b2-cc8dd526db0e-0572a9bc {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-_551fd037-39de-d8a3-9234-60dcf26fb0a3-0572a9bc {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-_551fd037-39de-d8a3-9234-60dcf26fb0a4-0572a9bc {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_551fd037-39de-d8a3-9234-60dcf26fb0a5-0572a9bc {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-_26dc2649-bfc5-dc30-706d-e64a3fb63fae-0572a9bc {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-_26dc2649-bfc5-dc30-706d-e64a3fb63faf-0572a9bc {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_26dc2649-bfc5-dc30-706d-e64a3fb63fb0-0572a9bc {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-_467ebd6f-b5c5-bcd9-3462-a1b9992ab303-0572a9bc {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-_467ebd6f-b5c5-bcd9-3462-a1b9992ab304-0572a9bc {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_467ebd6f-b5c5-bcd9-3462-a1b9992ab305-0572a9bc {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-_10c04140-4272-fc87-e600-a68fe9c6e245-0572a9bc {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-_10c04140-4272-fc87-e600-a68fe9c6e246-0572a9bc {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_10c04140-4272-fc87-e600-a68fe9c6e247-0572a9bc {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-_55622869-3130-c738-fdec-1186efd8dae7-0572a9bc {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-_55622869-3130-c738-fdec-1186efd8dae8-0572a9bc {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_55622869-3130-c738-fdec-1186efd8dae9-0572a9bc {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-e2a391ed-5bae-9638-853c-047b89cbf4d6-0572a9bc {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-e2a391ed-5bae-9638-853c-047b89cbf4d7-0572a9bc {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-e2a391ed-5bae-9638-853c-047b89cbf4d8-0572a9bc {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-_48a900ec-edb5-5af1-5c71-a9947b12a70f-0572a9bc {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-_48a900ec-edb5-5af1-5c71-a9947b12a710-0572a9bc {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_48a900ec-edb5-5af1-5c71-a9947b12a711-0572a9bc {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-c400027c-cbbb-e0d3-9c64-db4172e0a486-0572a9bc {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-c400027c-cbbb-e0d3-9c64-db4172e0a487-0572a9bc {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-c400027c-cbbb-e0d3-9c64-db4172e0a488-0572a9bc {
  grid-area: 1 / 1 / 2 / 3;
}

@media screen and (max-width: 767px) {
  #w-node-_1dbfe994-c431-6c58-bea2-5b5ca7cc86c9-38deffed {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  #w-node-_51e784e9-ea24-2adf-8409-63f2ab9b136c-38deffed {
    grid-row: span 2 / span 2;
  }

  #w-node-b662ec70-9411-6060-517a-81e72a5ee64b-2a5ee64a {
    grid-template-rows: minmax(219px, .25fr);
    grid-template-columns: 1fr;
  }

  #w-node-a9453f8c-63da-08ac-ab69-dd5f0e58a59e-0572a9bc {
    grid-row: 6 / 7;
  }
}

@media screen and (max-width: 479px) {
  #w-node-d36b3a1a-41df-377c-80b0-6e42fdf1ccba-38deffed, #w-node-b4d292e3-85b4-4423-856e-1bac2bc53e3d-38deffed {
    grid-area: span 1 / span 3 / span 1 / span 3;
  }

  #w-node-_139d5960-6dae-af15-c4b7-9084d6ced50b-38deffed {
    grid-row-start: 5;
  }

  #w-node-dea99182-e165-3ceb-6888-d4415fbe1d8a-2d076dd4 {
    place-self: center;
  }

  #w-node-_01eb275c-1041-3b09-84de-57c9eaabf5ae-2d076dd4 {
    justify-self: start;
  }

  #w-node-_30a408e8-24d0-f6f2-914e-cd6aa1056977-2d076dd4, #w-node-_51e55cac-7c41-01ca-4632-827ea9fa0e35-2d076dd4 {
    place-self: center;
  }

  #w-node-bbbd3db5-75cd-9e2e-e8ec-67896d8ddbba-2d076dd4, #w-node-bbbd3db5-75cd-9e2e-e8ec-67896d8ddbbe-2d076dd4 {
    grid-area: span 1 / span 3 / span 1 / span 3;
  }

  #w-node-bbbd3db5-75cd-9e2e-e8ec-67896d8ddbc7-2d076dd4 {
    grid-row-start: 5;
  }

  #w-node-f44c7e48-4187-bd1b-a9a5-a0e39ec097c5-0572a9bc {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_3e1eb929-45a5-ab73-2200-ed4d271cbf5b-0572a9bc {
    grid-area: span 1 / span 1 / span 1 / span 1;
    justify-self: start;
  }

  #w-node-af034aba-0c8c-933d-5d1b-509762f6cf7e-0572a9bc {
    order: 0;
  }

  #w-node-a26519c1-1ec8-8a1c-4e4c-5caed39594fb-0572a9bc {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_27048917-8603-6fb4-cea5-570e822282e8-0572a9bc {
    grid-area: span 1 / span 1 / span 1 / span 1;
    justify-self: start;
  }

  #w-node-_526c0e5a-def8-42c3-819c-27a133ffc75d-0572a9bc {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_6aaaa986-6a0d-5d03-3766-a39e09e4c377-0572a9bc {
    grid-area: span 1 / span 1 / span 1 / span 1;
    justify-self: start;
  }

  #w-node-f575287e-ffa2-ba69-382e-b65544a61df2-0572a9bc {
    grid-area: span 1 / span 2 / span 1 / span 2;
    place-self: center;
  }

  #w-node-_0c46091f-3ca2-3c7d-c13c-7c829acf794b-0572a9bc, #w-node-_1b437f40-9a0e-aa53-10ed-a5c4e2a19d5c-0572a9bc, #w-node-_2d6e986d-a22a-e780-51ba-a3adbfd7803e-0572a9bc, #w-node-b6bfc7d1-f39c-7b52-5dc4-84d79c1e325e-0572a9bc, #w-node-_82e096be-c32a-3f3e-e932-87e8f381b44e-0572a9bc, #w-node-a9453f8c-63da-08ac-ab69-dd5f0e58a574-0572a9bc, #w-node-a9453f8c-63da-08ac-ab69-dd5f0e58a57e-0572a9bc, #w-node-a9453f8c-63da-08ac-ab69-dd5f0e58a59e-0572a9bc, #w-node-_29faad25-db5b-98c3-a942-ca69a7c26ec6-0572a9bc, #w-node-cc964116-a75e-3289-c2fd-f43806c1a893-0572a9bc, #w-node-_5569f548-75a3-4d63-71ba-e6cdd5328a04-0572a9bc, #w-node-_05aac56b-fe37-1fb1-2b16-477122849332-0572a9bc {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-dce367be-efd6-32bb-f141-4e4f6c7d4e9e-0572a9bc {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_2f394b49-1d5d-8680-1e91-d5dd90500768-0572a9bc {
    grid-column: span 1 / span 1;
  }

  #w-node-ff3b3b08-8ab9-7514-ca4a-3c46e608ed2e-0572a9bc, #w-node-f7497701-784b-4857-718f-65404b958930-0572a9bc, #w-node-dff9ca4f-a860-b8f1-3a05-8b94b28fde8e-0572a9bc, #w-node-dde36b71-17c3-1ca5-053a-51e3ecdd60df-0572a9bc {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-dde36b71-17c3-1ca5-053a-51e3ecdd6119-0572a9bc {
    grid-column: span 1 / span 1;
  }
}


@font-face {
  font-family: 'Manrope';
  src: url('../fonts/Manrope-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Manrope';
  src: url('../fonts/Manrope-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Manrope';
  src: url('../fonts/Manrope-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Manrope';
  src: url('../fonts/Manrope-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Manrope';
  src: url('../fonts/Manrope-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}