/*Reset Styling*/
* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    webkit-font-smoothing: antialiased;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    text-shadow: rgba(0, 0, 0, 0.1) 0 0 1px;
  }
  html {
    scroll-behavior: smooth;
    scroll-padding: 15vh;
  }
  body {
    position: relative;
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: auto 1fr auto;
    grid-template-rows: auto 1fr auto;
    min-height: 100vh;
  }
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  p,
  a,
  ul,
  li,
  span,
  label,
  input,
  button {
    text-decoration: unset;
    -webkit-margin-before: unset;
    margin-block-start: unset;
    -webkit-margin-after: unset;
    margin-block-end: unset;
    min-height: 0vw;
  }
  button {
    cursor: pointer;
    -webkit-transition: 0.2s transform ease-in-out;
    -o-transition: 0.2s transform ease-in-out;
    transition: 0.2s transform ease-in-out;
  }
  li {
    list-style: none;
  }
  img {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    image-rendering: -webkit-optimize-contrast;
  }
  /*Safari Only*/
  @media not all and (min-resolution: 0.001dpcm) {
    @supports (-webkit-appearance: none) {
      img {
        image-rendering: auto;
      }
    }
  }
  textarea {
    resize: none;
  }
  input,
  textarea,
  button,
  select,
  a,
  span {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }
  /*COLORS*/
  :root {
    --dark-burgundy: #6d1937;
    --site-burgundy: #8f023d;
    --site-green: #47a447;
    --site-brown: #aa7f4b;
    --green: #6eaf60;
    --black: #1a1919;
    --rich-black: #060403;
    --gray: #777776;
    --light-gray: #cbcccb;
    --light-light-gray: #f6f8fa;
    --charcoal-grey: #2a2a2a;
    --steel-grey: #505050;
    --stone-grey: #979394;
    --sage-green: #6d7a59;
    --ruby-red: #782323;
  }
  /*Font*/
  p,
  li,
  a,
  span,
  label,
  button,
  td,
  blockquote,
  time,
  address,
  input,
  .form-input-wrapper input,
  textarea,
  h6,
  .pac-item-query {
    font-family: calibri, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: min(calc(1rem + 0.25vw), 18px);
    color: #1a1919;
  }
  p,
  h6,
  blockquote {
    line-height: 1.5;
  }
  .msr-500 {
    font-family: museo-sans-rounded, sans-serif;
    font-weight: 500;
    font-style: normal;
  }
  .msr-700 {
    font-family: museo-sans-rounded, sans-serif;
    font-weight: 700;
    font-style: normal;
  }
  .msr-900 {
    font-family: museo-sans-rounded, sans-serif;
    font-weight: 900;
    font-style: normal;
  }
  .cl-300 {
    font-family: calibri, sans-serif;
    font-weight: 300;
    font-style: normal;
  }
  .cl-400 {
    font-family: calibri, sans-serif;
    font-weight: 400;
    font-style: normal;
  }
  .cl-italic,
  i {
    font-family: calibri, sans-serif;
    font-weight: 400;
    font-style: italic;
  }
  .cl-700 {
    font-family: calibri, sans-serif;
    font-weight: 700;
    font-style: normal;
  }
  .cl-i-bold {
    font-family: calibri, sans-serif;
    font-weight: 700;
    font-style: italic;
  }
  b {
    font-weight: 700;
  }
  /*Headings*/
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    color: #1a1919;
  }
  h1,
  .heading-text {
    font-size: clamp(39px, calc(2rem + 1.5vw), 60px);
    line-height: 1.1!important;
  }
  h2,
  .xl-text {
    font-size: clamp(32px, calc(1.6rem + 1.5vw), 44px);
    line-height: 1.3;
  }
  h3,
  .large-text {
    font-size: clamp(28px, calc(1.5rem + 0.9vw), 36px);
    line-height: 1.3;
  }
  h4,
  .med-text {
    font-size: clamp(24px, calc(1rem + 0.8vw), 28px);
    line-height: 1.3;
  }
  h5,
  th,
  .sm-text,
  .phone-num {
    font-size: 22px;
    line-height: 1.4;
  }
  @media screen and (max-width: 475px) {
    p,
    li,
    a,
    span,
    label,
    button,
    td,
    blockquote,
    time,
    address,
    .form-input-wrapper input,
    h6 {
      font-size: 16px;
    }
    /*Headings*/
    h1,
    .heading-text {
      font-size: 30px;
    }
    h2,
    .xl-text {
      font-size: 26px;
    }
    h3,
    .large-text {
      font-size: 22px;
    }
    h4,
    .med-text {
      font-size: 20px;
    }
    h5,
    th,
    .sm-text,
    .phone-num {
      font-size: 18px;
    }
  }
  
  /*TEXT ALIGNMENT*/
  .text-center {
    text-align: center;
  }
  .text-left {
    text-align: left;
  }
  .text-right {
    text-align: right;
  }
  
  .text-underline {
    text-decoration: underline;
  }
  .text-uppercase {
    text-transform: uppercase;
  }
  .no-wrap {
    white-space: nowrap;
  }
  .disc-list {
    list-style-type: disc;
    margin-left: 25px;
  }
  .disc-list li {
    list-style: disc;
    -webkit-margin-before: inherit;
    margin-block-start: inherit;
    -webkit-margin-after: inherit;
    margin-block-end: inherit;
  }
  .number-list {
    margin-left: 25px;
  }
  .number-list li {
    list-style: inherit;
    -webkit-margin-before: inherit;
    margin-block-start: inherit;
    -webkit-margin-after: inherit;
    margin-block-end: inherit;
  }
  /*Transform*/
  .h-flip {
    -webkit-transform: scaleX(-1);
    -ms-transform: scaleX(-1);
    transform: scaleX(-1);
  }
  .ps-relative {
    position: relative;
  }
  /*DISPLAY*/
  .d-none {
    display: none;
  }
  .d-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .d-grid {
    display: -ms-grid;
    display: grid;
  }
  .d-i-grid {
    display: -ms-inline-grid;
    display: inline-grid;
  }
  .d-block {
    display: block;
  }
  /*Grid*/
  .g-col-2fr-1fr {
    -ms-grid-columns: 2fr 1fr;
    grid-template-columns: 2fr 1fr;
  }
  .g-col-1fr-2fr {
    -ms-grid-columns: 1fr 2fr;
    grid-template-columns: 1fr 2fr;
  }
  .g-temp-col-auto-2 {
    -ms-grid-columns: auto auto;
    grid-template-columns: auto auto;
  }
  .g-temp-col-1fr-1 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .g-temp-col-1fr-2 {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
  .g-temp-col-1fr-3 {
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
  }
  .g-temp-col-1fr-4 {
    -ms-grid-columns: 1fr 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  .g-temp-col-1fr-5 {
    -ms-grid-columns: 1fr 1fr 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  }
  .g-temp-row-1fr-1 {
    -ms-grid-rows: 1fr;
    grid-template-rows: 1fr;
  }
  .g-temp-row-1fr-2 {
    -ms-grid-rows: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
  }
  .g-temp-row-1fr-3 {
    -ms-grid-rows: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
  }
  .g-temp-row-1fr-4 {
    -ms-grid-rows: 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr 1fr;
  }
  .row-1 {
    -ms-grid-row: 1;
    grid-row: 1;
  }
  .row-2 {
    -ms-grid-row: 2;
    grid-row: 2;
  }
  .row-3 {
    -ms-grid-row: 3;
    grid-row: 3;
  }
  .row-4 {
    -ms-grid-row: 4;
    grid-row: 4;
  }
  .col-1 {
    -ms-grid-column: 1;
    grid-column: 1;
  }
  .col-2 {
    -ms-grid-column: 2;
    grid-column: 2;
  }
  .col-3 {
    -ms-grid-column: 3;
    grid-column: 3;
  }
  .col-4 {
    -ms-grid-column: 4;
    grid-column: 4;
  }
  .row-column-1 {
    -ms-grid-row: 1;
    grid-row: 1;
    -ms-grid-column: 1;
    grid-column: 1;
  }
  .col-span-2 {
    grid-column: auto / span 2;
  }
  .col-span-3 {
    grid-column: auto / span 3;
  }
  .row-span-2 {
    grid-row: auto / span 2;
  }
  .row-span-3 {
    grid-row: auto / span 3;
  }
  .order-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .order-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  /*Alignment*/
  .flex-wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .flex-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .flex-column-r {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .flex-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .j-content-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .j-space-between {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .j-space-evenly {
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
  }
  .j-flex-start {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .j-flex-end {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
  .a-items-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .a-items-start {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .a-items-end {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
  /*Gaps*/
  .gap-half {
    gap: 0.5rem;
  }
  .gap-1 {
    gap: 1rem;
  }
  .gap-2 {
    gap: 2rem;
  }
  .gap-3 {
    gap: 3rem;
  }
  .gap-4 {
    gap: 4rem;
  }
  .gap-5 {
    gap: 5rem;
  }
  .gap-6 {
    gap: 6rem;
  }
  .gap-7 {
    gap: 7rem;
  }
  .gap-8 {
    gap: 8rem;
  }
  .gap-9 {
    gap: 9rem;
  }
  .gap-10 {
    gap: 10rem;
  }
  .gap-col-half {
    grid-column-gap: 0.5rem;
  }
  .gap-col-1 {
    grid-column-gap: 1rem;
  }
  .gap-col-2 {
    grid-column-gap: 2rem;
  }
  .gap-col-3 {
    grid-column-gap: 3rem;
  }
  .gap-col-4 {
    grid-column-gap: 4rem;
  }
  .gap-col-5 {
    grid-column-gap: 5rem;
  }
  .gap-row-half {
    grid-row-gap: 0.5rem;
  }
  .gap-row-1 {
    grid-row-gap: 1rem;
  }
  .gap-row-2 {
    grid-row-gap: 2rem;
  }
  .gap-row-3 {
    grid-row-gap: 3rem;
  }
  .gap-row-4 {
    grid-row-gap: 4rem;
  }
  .gap-row-5 {
    grid-row-gap: 5rem;
  }
  /*Margin*/
  .m-auto {
    margin: auto;
  }
  .mx-auto {
    margin: 0 auto;
  }
  .my-auto {
    margin: auto 0;
  }
  .m-left {
    margin-left: auto;
  }
  .m-right {
    margin-right: auto;
  }
  .m-top {
    margin-top: auto;
  }
  .m-bottom {
    margin-bottom: auto;
  }
  .mt-tenth {
    margin-top: 0.1rem;
  }
  /*Padding*/
  .px-1 {
    padding: 0 1rem;
  }
  .px-2 {
    padding: 0 2rem;
  }
  .px-3 {
    padding: 0 3rem;
  }
  .py-1 {
    padding: 1rem 0;
  }
  .py-1-5 {
    padding: 1.5rem 0;
  }
  .py-2 {
    padding: 2rem 0;
  }
  .py-3 {
    padding: 3rem 0;
  }
  .py-4 {
    padding: 4rem 0;
  }
  .py-5 {
    padding: 5rem 0;
  }
  .py-6 {
    padding: 6rem 0;
  }
  .py-7 {
    padding: 7rem 0;
  }
  .py-8 {
    padding: 8rem 0;
  }
  .py-9 {
    padding: 9rem 0;
  }
  .py-10 {
    padding: 10rem 0;
  }
  .py-11 {
    padding: 11rem 0;
  }
  .p-qt {
    padding: 0.25rem;
  }
  .p-half {
    padding: 0.5rem;
  }
  .p-3-4 {
    padding: 0.75rem;
  }
  .p-1 {
    padding: 1rem;
  }
  .p-2 {
    padding: 2rem;
  }
  .p-3 {
    padding: 3rem;
  }
  .p-4 {
    padding: 4rem;
  }
  .p-5 {
    padding: 5rem;
  }
  .pt-qt {
    padding: 0.25rem 0 0 0;
  }
  .pt-1 {
    padding: 1rem 0 0 0;
  }
  .pt-2 {
    padding: 2rem 0 0 0;
  }
  .pt-3 {
    padding: 3rem 0 0 0;
  }
  .pt-4 {
    padding: 4rem 0 0 0;
  }
  .pt-5 {
    padding: 5rem 0 0 0;
  }
  .pt-10 {
    padding: 10rem 0 0 0;
  }
  .pb-half {
    padding: 0 0 0.5rem 0;
  }
  .pb-1 {
    padding: 0 0 1rem 0;
  }
  .pb-2 {
    padding: 0 0 2rem 0;
  }
  .pb-3 {
    padding: 0 0 3rem 0;
  }
  .pb-4 {
    padding: 0 0 4rem 0;
  }
  .pb-5 {
    padding: 0 0 5rem 0;
  }
  .pb-6 {
    padding: 0 0 6rem 0;
  }
  .pb-7 {
    padding: 0 0 7rem 0;
  }
  .pb-8 {
    padding: 0 0 8rem 0;
  }
  .pb-9 {
    padding: 0 0 9rem 0;
  }
  .pb-10 {
    padding: 0 0 10rem 0;
  }
  .pl-1 {
    padding-left: 1rem;
  }
  .pl-1-5 {
    padding-left: 1.5rem;
  }
  .pl-15 {
    padding-left: 15%;
  }
  .pr-1 {
    padding-right: 1rem;
  }
  /*CURSOR*/
  .cursor-pointer {
    cursor: pointer;
  }
  /*OBJECT*/
  .object-cover {
    -o-object-fit: cover;
    object-fit: cover;
  }
  .object-top {
    -o-object-position: top;
    object-position: top;
  }
  .object-bottom {
    object-position: bottom;
  }
  .object-center {
    -o-object-position: center;
    object-position: center;
  }
  .object-left {
    -o-object-position: left;
    object-position: left;
  }
  .object-right {
    -o-object-position: right;
    object-position: right;
  }
  .overflow-hidden {
    overflow: hidden;
  }
  .overflow-x-hidden {
    overflow-x: hidden;
  }
  /*RATIO*/
  .aspect-1 {
    aspect-ratio: 1;
  }
  .radius-50 {
    border-radius: 50%;
  }
  /*BACKGROUND*/
  .bg-center {
    background-position: center;
  }
  .bg-cover {
    background-size: cover;
  }
  .bg-no-repeat {
    background-repeat: no-repeat;
  }
  /*MAX WIDTH*/
  .max-ch-20 {
    max-width: 20ch;
  }
  .max-page {
    max-width: 1920px;
  }
  .max-xxl {
    max-width: 1600px;
  }
  .max-xl {
    max-width: 1300px;
  }
  .max-lg {
    max-width: 1200px;
  }
  .max-1000 {
    max-width: 1000px;
  }
  .max-900 {
    max-width: 900px;
  }
  .max-825 {
    max-width: 825px;
  }
  .max-md {
    max-width: 700px;
  }
  .max-600 {
    max-width: 600px;
  }
  .max-sm {
    max-width: 500px;
  }
  .max-450 {
    max-width: 450px;
  }
  .max-xsm {
    max-width: 400px;
  }
  .max-300 {
    max-width: 300px;
  }
  /*HEIGHT / WIDTH*/
  .w-fit-content {
    width: fit-content;
  }
  .w-auto {
    width: auto;
  }
  .w-10 {
    width: 10%;
  }
  .w-20 {
    width: 20%;
  }
  .w-30 {
    width: 30%;
  }
  .w-40 {
    width: 40%;
  }
  .w-50 {
    width: 50%;
  }
  .w-60 {
    width: 60%;
  }
  .w-70 {
    width: 70%;
  }
  .w-80 {
    width: 80%;
  }
  .w-90 {
    width: 90%;
  }
  .w-95 {
    width: 95%;
  }
  .w-100 {
    width: 100%;
  }
  .max-w-100 {
    max-width: 100%;
  }
  .h-10 {
    height: 10%;
  }
  .h-20 {
    height: 20%;
  }
  .h-30 {
    height: 30%;
  }
  .h-40 {
    height: 40%;
  }
  .h-50 {
    height: 50%;
  }
  .h-60 {
    height: 60%;
  }
  .h-70 {
    height: 70%;
  }
  .h-80 {
    height: 80%;
  }
  .h-90 {
    height: 90%;
  }
  .h-100 {
    height: 100%;
  }
  .max-h-100 {
    max-height: 100%;
  }
  .min-h-100 {
    min-height: 100%;
  }
  .h-auto {
    height: auto;
  }
  .z-1 {
    z-index: 1;
  }
  
  /*XL Screens*/
  @media screen and (max-width: 1700px) {
    .xl-d-none {
      display: none;
    }
    .xl-d-block {
      display: block;
    }
    .xl-pl-0 {
      padding-left: 0;
    }
    .xl-pb-3 {
      padding: 0 0 3rem 0;
    }
    .xl-w-80 {
      width: 80%;
    }
    .xl-mx-auto {
      margin: 0 auto;
    }
    .xl-text-center {
      text-align: center;
    }
    .xl-gap-2 {
      gap: 2rem;
    }
  }
  
  /*Large Screens*/
  @media screen and (max-width: 1300px) {
    .lg-d-none {
      display: none;
    }
    .lg-d-block {
      display: block;
    }
    .lg-pl-0 {
      padding-left: 0;
    }
    .lg-w-80 {
      width: 80%;
    }
    .lg-mx-auto {
      margin: 0 auto;
    }
    .lg-text-center {
      text-align: center;
    }
  }
  /*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
  /*LAPTOP STYLING*/
  @media screen and (max-width: 1024px) {
    .lp-max-650 {
      max-width: 650px;
    }
    .lp-w-50 {
      width: 50%;
    }
    .lp-w-80 {
      width: 80%;
    }
    .lp-w-100 {
      width: 100%;
    }
    .lp-h-auto {
      height: auto;
    }
    .lp-mx-auto {
      margin: 0 auto;
    }
    .lp-d-none {
      display: none;
    }
    .lp-d-block {
      display: block;
    }
    .lp-d-grid {
      display: -ms-grid;
      display: grid;
    }
    .lp-d-flex {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
    }
    .lp-gap-1 {
      gap: 1rem;
    }
    .lp-gap-2 {
      gap: 2rem;
    }
    .lp-gap-3 {
      gap: 3rem;
    }
    .lp-p-0 {
      padding: 0;
    }
    .lp-py-6 {
      padding: 6rem 0;
    }
    .lp-py-5 {
      padding: 5rem 0;
    }
    .lp-py-4 {
      padding: 4rem 0;
    }
    .lp-py-3 {
      padding: 3rem 0;
    }
    .lp-py-2 {
      padding: 2rem 0;
    }
    .lp-py-1 {
      padding: 1rem 0;
    }
    .lp-pl-0 {
      padding-left: 0;
    }
    .lp-pt-7 {
      padding: 7rem 0 0 0;
    }
    .lp-pt-8 {
      padding: 8rem 0 0 0;
    }
    .lp-pb-5 {
      padding: 0 0 5rem 0;
    }
    .lp-text-center {
      text-align: center;
    }
    .lp-flex-column {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
    }
    .lp-a-items-center {
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
    }
    .lp-j-flex-start {
      justify-content: flex-start;
    }
    .lp-col-span-2 {
      grid-column: auto / span 2;
    }
    .lp-col-1 {
      -ms-grid-column: 1;
      grid-column: 1;
    }
    .lp-col-2 {
      -ms-grid-column: 2;
      grid-column: 2;
    }
    .lp-row-1 {
      -ms-grid-row: 1;
      grid-row: 1;
    }
  }
  
  /*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
  /*TABLET STYLING*/
  @media screen and (max-width: 768px) {
    .tb-max-sm {
      max-width: 500px;
    }
    /*TEXT ALIGNMENT*/
    .tb-text-center {
      text-align: center;
    }
    .tb-text-left {
      text-align: left;
    }
    .tb-text-right {
      text-align: right;
    }
  
    /*Transform*/
    .h-flip {
      -webkit-transform: scaleX(-1);
      -ms-transform: scaleX(-1);
      transform: scaleX(-1);
    }
    /*DISPLAY*/
    .tb-d-none {
      display: none;
    }
    /*Displays*/
    .tb-d-flex {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
    }
    .tb-d-grid {
      display: -ms-grid;
      display: grid;
    }
    .tb-d-block {
      display: block;
    }
    /*Grid*/
    .tb-g-temp-col-1fr-1 {
      -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
    }
    .tb-g-temp-col-1fr-2 {
      -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
    }
    .tb-g-temp-col-1fr-3 {
      -ms-grid-columns: 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr;
    }
    .tb-g-temp-col-1fr-4 {
      -ms-grid-columns: 1fr 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr 1fr;
    }
    .tb-g-temp-row-1fr-1 {
      -ms-grid-rows: 1fr;
      grid-template-rows: 1fr;
    }
    .tb-g-temp-row-1fr-2 {
      -ms-grid-rows: 1fr 1fr;
      grid-template-rows: 1fr 1fr;
    }
    .tb-g-temp-row-1fr-3 {
      -ms-grid-rows: 1fr 1fr 1fr;
      grid-template-rows: 1fr 1fr 1fr;
    }
    .tb-g-temp-row-1fr-4 {
      -ms-grid-rows: 1fr 1fr 1fr 1fr;
      grid-template-rows: 1fr 1fr 1fr 1fr;
    }
    .tb-row-1 {
      -ms-grid-row: 1;
      grid-row: 1;
    }
    .tb-row-2 {
      -ms-grid-row: 2;
      grid-row: 2;
    }
    .tb-row-3 {
      -ms-grid-row: 3;
      grid-row: 3;
    }
    .tb-row-4 {
      -ms-grid-row: 5;
      grid-row: 5;
    }
    .tb-col-1 {
      -ms-grid-column: 1;
      grid-column: 1;
    }
    .tb-col-2 {
      -ms-grid-column: 2;
      grid-column: 2;
    }
    .tb-row-column-1 {
      -ms-grid-row: 1;
      grid-row: 1;
      -ms-grid-column: 1;
      grid-column: 1;
    }
    .tb-col-span-2 {
      grid-column: auto / span 2;
    }
    .tb-col-span-3 {
      grid-column: auto / span 3;
    }
    .tb-row-span-2 {
      grid-row: auto / span 2;
    }
    .tb-row-span-3 {
      grid-row: auto / span 3;
    }
    /*	ORDER*/
    .tb-order-1 {
      -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
      order: 1;
    }
    .tb-order-2 {
      -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
      order: 2;
    }
    /*Alignment*/
    .tb-flex-column {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
    }
    .tb-flex-column-r {
      -webkit-box-orient: vertical;
      -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
      flex-direction: column-reverse;
    }
    .tb-flex-row {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -ms-flex-direction: row;
      flex-direction: row;
    }
    .tb-j-content-center {
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
    }
    .tb-j-space-between {
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      justify-content: space-between;
    }
    .tb-j-space-evenly {
      -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
      justify-content: space-evenly;
    }
    .tb-j-flex-start {
      -webkit-box-pack: start;
      -ms-flex-pack: start;
      justify-content: flex-start;
    }
    .tb-j-flex-end {
      -webkit-box-pack: end;
      -ms-flex-pack: end;
      justify-content: flex-end;
    }
    .tb-a-items-start {
      -webkit-box-align: start;
      -ms-flex-align: start;
      align-items: flex-start;
    }
    .tb-a-items-center {
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
    }
    /*Gaps*/
    .tb-gap-0 {
      gap: 0;
    }
    .tb-gap-half {
      gap: 0.5rem;
    }
    .tb-gap-1 {
      gap: 1rem;
    }
    .tb-gap-2 {
      gap: 2rem;
    }
    .tb-gap-3 {
      gap: 3rem;
    }
    .tb-gap-4 {
      gap: 4rem;
    }
    .tb-gap-5 {
      gap: 5rem;
    }
    .tb-gap-col-half {
      grid-column-gap: 0.5rem;
    }
    .tb-gap-col-1 {
      grid-column-gap: 1rem;
    }
    .tb-gap-col-2 {
      grid-column-gap: 2rem;
    }
    .tb-gap-col-3 {
      grid-column-gap: 3rem;
    }
    .tb-gap-col-4 {
      grid-column-gap: 4rem;
    }
    .tb-gap-col-5 {
      grid-column-gap: 5rem;
    }
    .tb-gap-row-half {
      grid-row-gap: 0.5rem;
    }
    .tb-gap-row-1 {
      grid-row-gap: 1rem;
    }
    .tb-gap-row-2 {
      grid-row-gap: 2rem;
    }
    .tb-gap-row-3 {
      grid-row-gap: 3rem;
    }
    .tb-gap-row-4 {
      grid-row-gap: 4rem;
    }
    .tb-gap-row-5 {
      grid-row-gap: 5rem;
    }
    /*Margin*/
    .tb-m-auto {
      margin: auto;
    }
    .tb-mx-auto {
      margin: 0 auto;
    }
    .tb-my-auto {
      margin: auto 0;
    }
    .tb-m-left {
      margin-left: auto;
    }
    .tb-m-right {
      margin-right: auto;
    }
    .tb-m-top {
      margin-top: auto;
    }
    .tb-m-bottom {
      margin-bottom: auto;
    }
    .tb-mt-tenth {
      margin-top: 0.1rem;
    }
    /*Padding*/
    .tb-px-1 {
      padding: 0 1rem;
    }
    .tb-px-2 {
      padding: 0 2rem;
    }
    .tb-px-3 {
      padding: 0 3rem;
    }
    .tb-py-1 {
      padding: 1rem 0;
    }
    .tb-py-2 {
      padding: 2rem 0;
    }
    .tb-py-3 {
      padding: 3rem 0;
    }
    .tb-py-4 {
      padding: 4rem 0;
    }
    .tb-py-5 {
      padding: 5rem 0;
    }
    .tb-p-0 {
      padding: 0;
    }
    .tb-p-half {
      padding: 0.5rem;
    }
    .tb-p-1 {
      padding: 1rem;
    }
    .tb-p-2 {
      padding: 2rem;
    }
    .tb-p-3 {
      padding: 3rem;
    }
    .tb-pt-qt {
      padding: 0.25rem 0 0 0;
    }
    .tb-pt-1 {
      padding: 1rem 0 0 0;
    }
    .tb-pt-2 {
      padding: 2rem 0 0 0;
    }
    .tb-pt-3 {
      padding: 3rem 0 0 0;
    }
    .tb-pt-4 {
      padding: 4rem 0 0 0;
    }
    .tb-pt-5 {
      padding: 5rem 0 0 0;
    }
    .tb-pb-half {
      padding: 0 0 0.5rem 0;
    }
    .tb-pb-1 {
      padding: 0 0 1rem 0;
    }
    .tb-pb-2 {
      padding: 0 0 2rem 0;
    }
    .tb-pb-3 {
      padding: 0 0 3rem 0;
    }
    .tb-pb-4 {
      padding: 0 0 4rem 0;
    }
    .tb-pb-5 {
      padding: 0 0 5rem 0;
    }
    .tb-pl-1 {
      padding-left: 1rem;
    }
    .tb-pr-1 {
      padding-right: 1rem;
    }
  
    /*HEIGHT / WIDTH*/
    .tb-max-w-100 {
      max-width: 100%;
    }
    .tb-w-auto {
      width: auto;
    }
    .tb-w-10 {
      width: 10%;
    }
    .tb-w-20 {
      width: 20%;
    }
    .tb-w-30 {
      width: 30%;
    }
    .tb-w-40 {
      width: 40%;
    }
    .tb-w-50 {
      width: 50%;
    }
    .tb-w-60 {
      width: 60%;
    }
    .tb-w-70 {
      width: 70%;
    }
    .tb-w-80 {
      width: 80%;
    }
    .tb-w-90 {
      width: 90%;
    }
    .tb-w-100 {
      width: 100%;
    }
    .tb-h-30 {
      height: 30%;
    }
    .tb-h-40 {
      height: 40%;
    }
    .tb-h-50 {
      height: 50%;
    }
    .tb-h-60 {
      height: 60%;
    }
    .tb-h-70 {
      height: 70%;
    }
    .tb-h-80 {
      height: 80%;
    }
    .tb-h-90 {
      height: 90%;
    }
    .tb-h-100 {
      height: 100%;
    }
    .tb-h-auto {
      height: auto;
    }
  }
  
  /*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
  /*MOBILE STYLING*/
  @media screen and (max-width: 475px) {
    /*TEXT ALIGNMENT*/
    .m-text-center {
      text-align: center;
    }
    .m-text-left {
      text-align: left;
    }
    .m-text-right {
      text-align: right;
    }
  
    /*Transform*/
    .h-flip {
      -webkit-transform: scaleX(-1);
      -ms-transform: scaleX(-1);
      transform: scaleX(-1);
    }
    /*DISPLAY*/
    .m-d-none {
      display: none;
    }
    /*Displays*/
    .m-d-flex {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
    }
    .m-d-grid {
      display: -ms-grid;
      display: grid;
    }
    .m-d-block {
      display: block;
    }
    /*Grid*/
    .m-g-temp-col-1fr-1 {
      -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
    }
    .m-g-temp-col-1fr-2 {
      -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
    }
    .m-g-temp-col-1fr-3 {
      -ms-grid-columns: 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr;
    }
    .m-g-temp-col-1fr-4 {
      -ms-grid-columns: 1fr 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr 1fr;
    }
    .m-g-temp-row-1fr-1 {
      -ms-grid-rows: 1fr;
      grid-template-rows: 1fr;
    }
    .m-g-temp-row-1fr-2 {
      -ms-grid-rows: 1fr 1fr;
      grid-template-rows: 1fr 1fr;
    }
    .m-g-temp-row-1fr-3 {
      -ms-grid-rows: 1fr 1fr 1fr;
      grid-template-rows: 1fr 1fr 1fr;
    }
    .m-g-temp-row-1fr-4 {
      -ms-grid-rows: 1fr 1fr 1fr 1fr;
      grid-template-rows: 1fr 1fr 1fr 1fr;
    }
    .m-row-1 {
      -ms-grid-row: 1;
      grid-row: 1;
    }
    .m-row-2 {
      -ms-grid-row: 2;
      grid-row: 2;
    }
    .m-row-3 {
      -ms-grid-row: 3;
      grid-row: 3;
    }
    .m-row-4 {
      -ms-grid-row: 4;
      grid-row: 4;
    }
    .m-col-1 {
      -ms-grid-column: 1;
      grid-column: 1;
    }
    .m-col-2 {
      -ms-grid-column: 2;
      grid-column: 2;
    }
    .m-row-column-1 {
      -ms-grid-row: 1;
      grid-row: 1;
      -ms-grid-column: 1;
      grid-column: 1;
    }
    .m-col-span-2 {
      grid-column: auto / span 2;
    }
    .m-col-span-3 {
      grid-column: auto / span 3;
    }
    .m-row-span-2 {
      grid-row: auto / span 2;
    }
    .m-row-span-3 {
      grid-row: auto / span 3;
    }
    /*ORDER*/
    .m-order-1 {
      -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
      order: 1;
    }
    .m-order-2 {
      -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
      order: 2;
    }
    /*Alignment*/
    .m-flex-column {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
    }
    .m-flex-column-r {
      -webkit-box-orient: vertical;
      -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
      flex-direction: column-reverse;
    }
    .m-flex-row {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -ms-flex-direction: row;
      flex-direction: row;
    }
    .m-j-content-center {
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
    }
    .m-j-space-between {
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      justify-content: space-between;
    }
    .m-j-space-evenly {
      -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
      justify-content: space-evenly;
    }
    .m-j-flex-start {
      -webkit-box-pack: start;
      -ms-flex-pack: start;
      justify-content: flex-start;
    }
    .m-j-flex-end {
      -webkit-box-pack: end;
      -ms-flex-pack: end;
      justify-content: flex-end;
    }
    .m-a-items-start {
      -webkit-box-align: start;
      -ms-flex-align: start;
      align-items: flex-start;
    }
    .m-a-items-center {
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
    }
    /*Gaps*/
    .m-gap-0 {
      gap: 0;
    }
    .m-gap-half {
      gap: 0.5rem;
    }
    .m-gap-1 {
      gap: 1rem;
    }
    .m-gap-2 {
      gap: 2rem;
    }
    .m-gap-3 {
      gap: 3rem;
    }
    .m-gap-4 {
      gap: 4rem;
    }
    .m-gap-5 {
      gap: 5rem;
    }
    .m-gap-col-half {
      grid-column-gap: 0.5rem;
    }
    .m-gap-col-1 {
      grid-column-gap: 1rem;
    }
    .m-gap-col-2 {
      grid-column-gap: 2rem;
    }
    .m-gap-col-3 {
      grid-column-gap: 3rem;
    }
    .m-gap-col-4 {
      grid-column-gap: 4rem;
    }
    .m-gap-col-5 {
      grid-column-gap: 5rem;
    }
    .m-gap-row-half {
      grid-row-gap: 0.5rem;
    }
    .m-gap-row-1 {
      grid-row-gap: 1rem;
    }
    .m-gap-row-2 {
      grid-row-gap: 2rem;
    }
    .m-gap-row-3 {
      grid-row-gap: 3rem;
    }
    .m-gap-row-4 {
      grid-row-gap: 4rem;
    }
    .m-gap-row-5 {
      grid-row-gap: 5rem;
    }
    /*Margin*/
    .m-m-0 {
      margin: 0;
    }
    .m-m-auto {
      margin: auto;
    }
    .m-mx-auto {
      margin: 0 auto;
    }
    .m-my-auto {
      margin: auto 0;
    }
    .m-m-left {
      margin-left: auto;
    }
    .m-m-right {
      margin-right: auto;
    }
    .m-m-top {
      margin-top: auto;
    }
    .m-m-bottom {
      margin-bottom: auto;
    }
    .m-mt-tenth {
      margin-top: 0.1rem;
    }
    /*Padding*/
    .m-p-y2-x1 {
      padding: 2rem 1rem;
    }
    .m-p-0 {
      padding: 0;
    }
    .m-px-1 {
      padding: 0 1rem;
    }
    .m-px-2 {
      padding: 0 2rem;
    }
    .m-px-3 {
      padding: 0 3rem;
    }
    .m-py-1 {
      padding: 1rem 0;
    }
    .m-py-2 {
      padding: 2rem 0;
    }
    .m-py-3 {
      padding: 3rem 0;
    }
    .m-py-4 {
      padding: 4rem 0;
    }
    .m-py-5 {
      padding: 5rem 0;
    }
    .m-p-half {
      padding: 0.5rem;
    }
    .m-p-3-4 {
      padding: 0.75rem;
    }
    .m-p-1 {
      padding: 1rem;
    }
    .m-p-2 {
      padding: 2rem;
    }
    .m-p-3 {
      padding: 3rem;
    }
    .m-pt-qt {
      padding: 0.25rem 0 0 0;
    }
    .m-pt-1 {
      padding: 1rem 0 0 0;
    }
    .m-pt-2 {
      padding: 2rem 0 0 0;
    }
    .m-pt-3 {
      padding: 3rem 0 0 0;
    }
    .m-pt-4 {
      padding: 4rem 0 0 0;
    }
    .m-pb-half {
      padding: 0 0 0.5rem 0;
    }
    .m-pb-1 {
      padding: 0 0 1rem 0;
    }
    .m-pb-2 {
      padding: 0 0 2rem 0;
    }
    .m-pb-3 {
      padding: 0 0 3rem 0;
    }
    .m-pb-4 {
      padding: 0 0 4rem 0;
    }
    .m-pb-5 {
      padding: 0 0 5rem 0;
    }
    .m-pl-1 {
      padding-left: 1rem;
    }
    .m-pr-1 {
      padding-right: 1rem;
    }
  
    /*HEIGHT / WIDTH*/
    .m-w-10 {
      width: 10%;
    }
    .m-w-20 {
      width: 20%;
    }
    .m-w-30 {
      width: 30%;
    }
    .m-w-40 {
      width: 40%;
    }
    .m-w-50 {
      width: 50%;
    }
    .m-w-60 {
      width: 60%;
    }
    .m-w-70 {
      width: 70%;
    }
    .m-w-80 {
      width: 80%;
    }
    .m-w-85 {
      width: 85%;
    }
    .m-w-90 {
      width: 90%;
    }
    .m-w-95 {
      width: 95%;
    }
    .m-w-100 {
      width: 100%;
    }
    .m-h-30 {
      height: 30%;
    }
    .m-h-40 {
      height: 40%;
    }
    .m-h-50 {
      height: 50%;
    }
    .m-h-60 {
      height: 60%;
    }
    .m-h-70 {
      height: 70%;
    }
    .m-h-80 {
      height: 80%;
    }
    .m-h-90 {
      height: 90%;
    }
    .m-h-100 {
      height: 100%;
    }
    .m-h-auto {
      height: auto;
    }
  }
  
  .c-hlight {
    background: yellow;
  }
  
  /*CUSTOM STYLING*/
  /*Background Colors*/
  .bg-llg {
    background-color: var(--light-light-gray);
  }
  .bg-sb {
    background-color: var(--site-burgundy);
  }
  .bg-db {
    background-color: var(--dark-burgundy);
  }
  .bg-sg {
    background-color: var(--site-green);
  }
  .bg-w {
    background-color: #fff;
  }
  .bg-gold {
    background-color: var(--site-brown);
  }
  /*Colors*/
  .color-sb {
    color: var(--site-burgundy);
  }
  .color-db {
    color: var(--dark-burgundy);
  }
  .color-rb {
    color: var(--rich-black);
  }
  .color-w {
    color: #fff;
  }
  .color-gold {
    color: var(--site-brown);
  }
  /*COMPONENTS STYLING*/
  .section-container {
    margin: 0 auto;
  }
  @media screen and (max-width: 1150px) {
    .section-container {
      padding: 2rem;
    }
  }
  /*Links*/
  a {
    -webkit-transition: 0.2s transform ease-in-out, 0.2s opacity ease-in-out,
      0.2s box-shadow ease-in-out;
    -o-transition: 0.2s transform ease-in-out, 0.2s opacity ease-in-out,
      0.2s box-shadow ease-in-out;
    transition: 0.2s transform ease-in-out, 0.2s opacity ease-in-out,
      0.2s box-shadow ease-in-out;
  }
  @media (hover: hover) and (pointer: fine) {
    a:hover {
      opacity: 0.7;
    }
  }
  /*Opacity*/
  .no-hover:hover {
    opacity: inherit;
  }
  /*Buttons*/
  @media (hover: hover) and (pointer: fine) {
    .main-btn:hover,
    .circle-btn:hover,
    .forward:hover,
    .back:hover,
    #covid-badge:hover,
    .sub-covid-link-btn:hover,
    .rounded-btn:hover,
    .main-contact-submit-btn:hover,
    #home-submit-btn:hover,
    .acorn-club-btn:hover {
      -webkit-transform: translateY(-5px);
      -ms-transform: translateY(-5px);
      transform: translateY(-5px);
      opacity: inherit;
    }
    .rounded-btn:hover,
    .main-btn:hover,
    .forward:hover,
    .main-contact-submit-btn:hover,
    .acorn-club-btn:hover,
    #home-submit-btn:hover {
      -webkit-box-shadow: 0px 9px 8px rgba(0, 0, 0, 0.15);
      box-shadow: 0px 9px 8px rgba(0, 0, 0, 0.15);
    }
  }
  .a-link,
  .main-btn,
  .rounded-btn {
    font-size: 22px;
  }
  .main-btn {
    display: block;
    position: relative;
    color: #fff;
    padding: 1rem;
    text-align: center;
    -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.15);
    min-width: 250px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    transform: translateY(0.0001px);
  }
  @media screen and (max-width: 500px) {
    .main-btn,
    .rounded-btn {
      font-size: 20px;
    }
    .main-btn {
      min-width: 200px;
      padding: 0.75rem 1rem;
    }
    .a-link {
      font-size: 18px;
    }
  }
  /*Border inside the button*/
  .main-btn::before {
    position: absolute;
    content: "";
    top: 3px;
    bottom: 3px;
    left: 3px;
    right: 3px;
    border: 1px solid #fff;
  }
  /*Arrows for buttons*/
  .circle-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 50px;
    width: 50px;
    border-radius: 50px;
    -webkit-transition: 0.2s transform ease-in-out;
    -o-transition: 0.2s transform ease-in-out;
    transition: 0.2s transform ease-in-out;
  }
  .circle-btn.shadow {
    -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  }
  .corner-arrow {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    height: 1.25rem;
    width: 1.25rem;
  }
  .corner-arrow.small {
    height: 1rem;
    width: 1rem;
  }
  .corner-arrow.white-border {
    border-bottom: 4px solid #fff;
    border-left: 4px solid #fff;
  }
  .corner-arrow.black-border {
    border-bottom: 4px solid #000;
    border-left: 4px solid #000;
  }
  .corner-arrow.black-border-thin {
    border-bottom: 2px solid #000;
    border-left: 2px solid #000;
  }
  .corner-arrow.gray-border {
    border-bottom: 4px solid #3a3a3a;
    border-left: 4px solid #3a3a3a;
  }
  .corner-arrow.burgundy-border {
    border-bottom: 4px solid var(--site-burgundy);
    border-left: 4px solid var(--site-burgundy);
  }
  .corner-arrow.down {
    -webkit-transform: translateY(-0.25rem) rotate(-45deg);
    -ms-transform: translateY(-0.25rem) rotate(-45deg);
    transform: translateY(-0.25rem) rotate(-45deg);
  }
  .corner-arrow.top {
    -webkit-transform: translateY(0.25rem) rotate(135deg);
    -ms-transform: translateY(0.25rem) rotate(135deg);
    transform: translateY(0.25rem) rotate(135deg);
  }
  .corner-arrow.right {
    -webkit-transform: rotate(225deg);
    -ms-transform: rotate(225deg);
    transform: rotate(225deg);
  }
  .corner-arrow.left {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .link-arrow {
      transform: translateY(3px);
  }
  
  /*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
  /*MENU*/
  /*On hover display overlay*/
  body::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.25);
    visibility: hidden;
    opacity: 0;
    z-index: 1000;
    transition: visibility 0.1s linear, opacity 0.1s linear;
  }
  @media (min-width: 1301px) {
    body.overlay::before {
      visibility: visible;
      opacity: 1;
    }
  }
  
  /*HEADER STYLING*/
  header {
    position: sticky;
    top: 0;
    background-color: #fff;
    z-index: 10001;
  }
  nav {
    position: relative;
    grid-template-columns: 1fr auto 1fr;
    grid-template-rows: 0.8fr 1fr;
    min-height: 160px;
    padding: 0 3rem;
  }
  /*Main Nav Links*/
  #main-logo-link {
    grid-column: 2;
    grid-row: 1 / span 2;
    margin: 20% 0 0 0;
    width: 210px;
    padding: 0 10px;
    height: fit-content;
  }
  .nav-links {
    grid-row: 2;
    border-top: 1px solid #c0bdbd;
    max-width: 775px;
    width: 100%;
  }
  #left-nav {
    display: -ms-grid;
    display: grid;
    grid-template-columns: auto auto auto auto;
    margin: 0 0 0 auto;
  }
  #right-nav {
    display: -ms-grid;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    gap: 1rem;
  }
  .nav-ac {
    gap: 5px;
  }
  #header-contact-btn {
    padding: 0;
    height: 70%;
    max-height: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    min-width: 200px;
  }
  .main-link {
    display: -webkit-box;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .main-link-tag {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    position: relative;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: pointer;
    padding: 5px;
  }
  .main-link-tag.active {
    color: var(--site-burgundy);
  }
  .main-link-tag::after {
      content: "";
      position: absolute;
      left: -5px;
      right: -5px;
      bottom: -5px;
      height: 2px;
      -webkit-transition: 0.1s background-color linear;
      -o-transition: 0.1s background-color linear;
      transition: 0.1s background-color linear;
      z-index: -1;
      background-color: transparent;
  }
  @media screen and (min-width: 1441px) {
    .main-link-tag,
    .nav-font {
      font-size: 20px;
    }
  }
  
  .main-link.open-state .mega-menu-container {
    display: block !important;
  }
  .main-link.open-state .main-link-tag::after {
    opacity: inherit !important;
    background-color: var(--site-burgundy) !important;
  }
  @media (pointer: coarse) and (min-width: 1301px) {
    .main-link.current-link .main-link::after {
      opacity: inherit;
      background-color: var(--site-burgundy);
    }
  }
  /*Mega Menu Drop Down Items*/
  @media screen and (min-width: 1301px) {
    /*Mega Menu Grid*/
    .sub-pages-links {
      display: -ms-grid;
      display: grid;
      grid-template-columns: 5fr 3fr 3fr;
      grid-template-rows: auto 1fr;
      gap: 10px;
      width: -webkit-fit-content;
      width: -moz-fit-content;
      width: fit-content;
      margin: 0 auto;
      padding: 40px 0;
    }
    .mega-menu-li a {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      height: 100%;
      border-radius: 5px;
      overflow: hidden;
    }
    .mega-menu-main-link a,
    .mega-menu-sub-link a {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
    }
    .mega-menu-icon-link a {
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      gap: 10px;
      background-color: var(--site-burgundy);
    }
    /*Element Placement*/
    .mega-menu-main-link {
      -ms-grid-row: 1;
      -ms-grid-row-span: 2;
      grid-row: 1 / span 2;
      -ms-grid-column: 1;
      grid-column: 1;
    }
    .mega-menu-icon-link {
      -ms-grid-column: 2;
      -ms-grid-column-span: 2;
      grid-column: 2 / span 2;
      -ms-grid-row: 2;
      grid-row: 2;
    }
    /*Sub Links*/
    .mega-menu-sub-link {
      width: 300px;
      height: 245px;
    }
    /*Menu Images*/
    .mega-menu-sub-link .sub-img-container {
      height: 100%;
      overflow: hidden;
    }
    .mega-menu-sub-link .mega-menu-img {
      width: 300px;
      height: 200px;
    }
    .mega-menu-img {
      display: block;
    }
  
    /*Menu Text*/
    .sub-page-link-text {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      color: #ffffff;
      text-align: center;
    }
    .mega-menu-main-link .sub-page-link-text,
    .mega-menu-sub-link .sub-page-link-text,
    .sub-page-link-text-inner {
      font-size: 22px;
      background-color: var(--site-burgundy);
    }
    .mega-menu-main-link .sub-page-link-text {
      min-height: 50px;
    }
    .mega-menu-sub-link .sub-page-link-text {
      min-height: 45px;
    }
    .mega-menu-sub-link .sub-page-link-text-future-customer {
      padding: 6px 0 9px;
    }
    .mega-menu-icon-link .sub-page-link-text {
      font-size: 24px;
    }
  
    .mobile-menu-r-arrow {
      display: none;
    }
  }
  .mega-menu-container {
    display: none;
    position: absolute;
    z-index: 100;
    top: 100%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 100%;
    background-color: #fff;
    -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
  }
  .mega-menu-close-btn {
    display: none;
  }
  @media (pointer: coarse) and (min-width: 1301px) {
    .main-link.open-state .mega-menu-close-btn {
      position: absolute;
      top: calc(100% + 10px);
      right: 15px;
      z-index: 101;
      display: flex;
      align-items: flex-end;
      gap: 12px;
      background: rgba(255, 255, 255, 0.85);
      border: none;
      border-radius: 50px;
      font-size: 16px;
      padding: 0 8px 5px;
      min-height: 25px;
      box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.15);
      line-height: 1;
    }
    .mega-menu-close-btn-svg {
      display: block;
      width: 10px;
      height: auto;
      transform: translateY(-2px);
    }
    .sub-pages-links {
      padding: 50px 0 40px;
    }
  }
  .sub-page-link-text {
    font-family: calibri, sans-serif;
    font-weight: 700;
    font-style: normal;
  }
  
  .m-menu-only,
  #mobile-menu,
  #mobile-shadow {
    display: none;
  }
  /*Large Screen*/
  @media screen and (max-width: 1475px) and (min-width: 1300px) {
    nav {
      padding: 0 2rem;
    }
    #right-nav {
      gap: 10px;
    }
    #header-contact-btn {
      min-width: 180px;
    }
    .main-link-tag,
    .nav-font {
      font-size: 18px;
    }
    .dsk-nav-ac-logo {
      width: 50px;
      height: auto;
    }
  }
  /*Header Mobile View*/
  @media screen and (max-width: 1300px) {
    .m-menu-only {
      display: block;
    }
    .desk-menu-only {
      display: none;
    }
    nav {
      position: relative;
      -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
      -ms-grid-rows: auto auto;
      grid-template-rows: auto auto;
      min-height: inherit;
      padding: 0.5rem 0 0;
    }
    nav > *:nth-child(1) {
      -ms-grid-row: 1;
      -ms-grid-column: 1;
    }
    nav > *:nth-child(2) {
      -ms-grid-row: 1;
      -ms-grid-column: 2;
    }
    nav > *:nth-child(3) {
      -ms-grid-row: 2;
      -ms-grid-column: 1;
    }
    nav > *:nth-child(4) {
      -ms-grid-row: 2;
      -ms-grid-column: 2;
    }
    nav.active {
      height: 100vh;
      overflow-y: auto;
      -ms-grid-rows: auto auto 1fr;
      grid-template-rows: auto auto 1fr;
    }
    #main-logo-link {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-grid-column: 1;
      grid-column: 1;
      -ms-grid-row: 1;
      grid-row: 1;
      margin: 0;
      padding: 12px 32px;
      width: fit-content;
      min-width: inherit;
      align-self: center;
    }
    #main-logo {
      width: 145px;
      margin: auto 0;
    }
    #right-nav,
    #left-nav {
      display: none;
    }
    #mobile-menu,
    #mobile-shadow {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
    }
    #mobile-menu {
      font-size: 18px;
      margin: 0 2rem 0 auto;
      background: none;
      border: none;
    }
    #mobile-bar-container {
      gap: 5px;
    }
    .mobile-bar {
      width: 35px;
      height: 5px;
      background-color: #000;
      -webkit-transition: 0.5s all ease;
      -o-transition: 0.5s all ease;
      transition: 0.5s all ease;
    }
    /*Turn Bars into X when menu is open*/
    .mobile-bar.active:nth-child(1) {
      -webkit-transform: rotate(45deg) translate(5px, 10px);
      -ms-transform: rotate(45deg) translate(5px, 10px);
      transform: rotate(45deg) translate(5px, 10px);
    }
    .mobile-bar.active:nth-child(2) {
      opacity: 0;
    }
    .mobile-bar.active:nth-child(3) {
      -webkit-transform: rotate(135deg) translate(-4px, 9px);
      -ms-transform: rotate(135deg) translate(-4px, 9px);
      transform: rotate(135deg) translate(-4px, 9px);
    }
    #mobile-shadow {
      -ms-grid-column: 1;
      -ms-grid-column-span: 2;
      grid-column: 1 / span 2;
      padding-bottom: 0.5rem;
      z-index: 1000;
      -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
      box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
    }
    /*Mobile Mega Menu*/
    #left-nav.active {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      padding: 2rem 5% 0;
      overflow-y: scroll;
      height: fit-content;
    }
    #left-nav {
      position: relative;
      -ms-grid-column: 1;
      -ms-grid-column-span: 2;
      grid-column: 1 / span 2;
      -ms-grid-row: 3;
      grid-row: 3;
      border-top: none;
      width: 100%;
      height: 100%;
      max-width: none;
    }
    .phone-icon-container {
      width: 65px;
      height: 100%;
    }
    .mobile-menu-phone-btn {
      padding: 0;
      min-height: 60px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      gap: 0.5rem;
      margin-top: 2rem;
    }
    .main-link-tag {
      padding: 2.5rem 0;
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      justify-content: space-between;
      width: 100%;
    }
    .main-link-tag.mobile.active {
      color: var(--site-burgundy);
    }
    .mega-menu-container {
      top: 0;
      bottom: 0;
      -webkit-box-shadow: none;
      box-shadow: none;
    }
    .mega-menu-display {
      display: -ms-grid;
      display: grid;
      -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
      gap: 2rem;
      padding: 2rem 5%;
    }
    .mobile-back {
      background-color: transparent;
      background-image: url("/assets/imgs/header/left-arrow.svg");
      background-position: center;
      background-repeat: no-repeat;
      background-size: 30px;
      border: none;
      width: 40px;
      height: 40px;
    }
    .sub-pages-links {
      display: -ms-grid;
      display: grid;
      grid-template-rows: repeat(4, auto);
      gap: 0.5rem;
    }
    .sub-pages-links a {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      justify-content: space-between;
    }
    .sub-pages-links span {
      padding: 2rem 0;
    }
    .mobile-main-link-text {
      color: var(--dark-burgundy);
    }
    .sub-page-link-text {
      color: #000;
    }
    .sub-img-container {
      display: none;
    }
  }
  @media screen and (max-width: 1300px) and (min-width: 900px) {
    .main-link-tag,
    .nav-font,
    .mobile-main-link-text,
    .sub-page-link-text {
      font-size: 24px;
    }
  }
  @media screen and (max-width: 899px) and (min-width: 476px) {
    .main-link-tag,
    .nav-font,
    .mobile-main-link-text,
    .sub-page-link-text {
      font-size: 22px;
    }
  }
  @media screen and (max-width: 475px) {
    #left-nav.active,
    .mega-menu-display {
      padding: 1.5rem 7.5% 0;
    }
    .mega-menu-display {
      gap: 1rem;
    }
    .main-link-tag,
    .nav-font,
    .mobile-main-link-text,
    .sub-page-link-text {
      font-size: 20px;
    }
    .sub-page-link-text.indent,
    .mobile-menu-phone-btn {
      font-size: 18px;
    }
    #main-logo-link {
      padding: 10px 16px;
    }
    #main-logo {
      width: 125px;
    }
    #mobile-menu {
      margin: 0 1rem 0 auto;
    }
    .main-link-tag,
    .sub-pages-links span {
      padding: 1.5rem 0;
    }
    .mobile-menu-phone-btn {
      min-height: 50px;
    }
    .mobile-menu-phone-btn img {
      width: 20px;
    }
  }
  /*END OF HEADER STYLING*/
  /*Back To Top Button*/
  #back-top {
    display: none;
    position: fixed;
    cursor: pointer;
    bottom: 20px;
    right: 20px;
    z-index: 10000;
    background-color: rgba(0, 0, 0, 0.7);
    border: none;
  }
  #back-top.show {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  @media screen and (max-width: 600px) {
    #back-top {
      height: 45px;
      width: 45px;
    }
    #back-top .corner-arrow {
      height: 1rem;
      width: 1rem;
      border-bottom: 3px solid #fff;
      border-left: 3px solid #fff;
      -webkit-transform: translateY(3px) rotate(135deg);
      -ms-transform: translateY(3px) rotate(135deg);
      transform: translateY(3px) rotate(135deg);
    }
  }
  
  /*FOOTER STYLING*/
  .footer {
    display: grid;
    width: 100vw;
    background: #3a3a3a;
    justify-self: center;
    justify-items: center;
  }
  .footer-container {
    width: min(90vw, 1300px);
    display: grid;
    grid-template-columns: repeat(5, auto);
    padding: 16px 0;
  }
  /* Font Size */
  .footer-large-text {
    font-size: 18px;
  }
  .footer-regular-text {
    font-size: 16px;
  }
  
  /* Styled Gray Lines */
  .footer-container::before,
  .footer-horizontal-line::before {
    background: #777776;
  }
  /* Vertical Line */
  @media screen and (min-width: 1101px) {
    .footer-container::before {
      content: "";
      display: block;
      height: 90%;
      width: 1px;
      grid-row: 1;
      margin: 0 35px 0 0;
    }
  }
  /* Horizontal Line */
  .footer-horizontal-line.top {
    display: none;
  }
  .footer-horizontal-line.bottom {
    display: block;
  }
  .footer-horizontal-line {
    position: relative;
    width: 100%;
    height: 1px;
    margin: 16px 0;
    grid-column: 1 / -1;
    grid-row: 2;
  }
  .footer-horizontal-line::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(93vw, 1400px);
  }
  
  /* Top Row */
  .footer-list-container,
  .footer-contact-info {
    grid-row: 1;
  }
  .footer-list-container:nth-of-type(1) {
    grid-column: 1;
    padding: 0 60px 0 0;
  }
  .footer-list-container:nth-of-type(2) {
    grid-column: 2;
    padding: 0 50px 0 0;
  }
  .footer-list-container:nth-of-type(3) {
    grid-column: 3;
    padding: 0 50px 0 0;
  }
  .footer-contact-info {
    grid-column: 5;
  }
  
  /* Footer Element Styling */
  .footer-list-link {
    color: #ffffff;
  }
  /* List/Link Containers */
  .footer-list-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: fit-content;
  }
  /* Safety Link */
  .footer-safety-link {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer-mask-icon {
    display: block;
    width: 35px;
    height: 30px;
  }
  .footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  /* Bottom Row */
  .footer-list-bottom {
    grid-row: 3;
    align-items: center;
  }
  .footer-list-bottom.left {
    grid-column: 1 / span 3;
    width: min(95%, 550px);
    display: flex;
    justify-content: space-between;
  }
  .footer-list-bottom.right {
    grid-column: 5;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px;
  }
  
  .footer-life-lift-logo {
    width: 170px;
    height: auto;
    transform: translateX(-7px);
  }
  
  .footer-copyright {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
  }
  .footer-copyright-icon {
    width: 20px;
    height: 20px;
  }
  
  @media screen and (max-width: 1300px) and (min-width: 1101px) {
    .footer-container {
      width: 95vw;
    }
    .footer-horizontal-line::before {
      width: 97vw;
    }
    .footer-list-container:nth-of-type(1),
    .footer-list-container:nth-of-type(2) {
      padding: 0 35px 0 0;
    }
    .footer-list-container:nth-of-type(3) {
      padding: 0 20px 0 0;
    }
    .footer-container::before {
      margin: 0 25px 0 0;
    }
  }
  
  @media screen and (max-width: 1100px) {
    /*Container Styling*/
    .footer-container {
      grid-template-columns: repeat(4, auto);
      width: min(90vw, 900px);
    }
    /* Styling/Placing Grid Elements */
    /*Horizontal Lines*/
    .footer-horizontal-line {
      margin: 20px 0;
    }
    .footer-horizontal-line.top {
      display: block;
      grid-row: 2;
    }
    .footer-horizontal-line.bottom {
      grid-row: 4;
    }
    .footer-horizontal-line::before {
      width: min(93vw, 950px);
    }
  
    /*Full Span Elements*/
    .footer-contact-info,
    .footer-list-bottom.right {
      grid-column: 1 / -1;
    }
  
    /*1st Row*/
    .footer-contact-info {
      grid-row: 1;
      grid-template-columns: auto 1fr;
    }
    @media (min-width: 801px) {
      .footer-contact-info-sub {
        flex-direction: row;
        justify-content: space-evenly;
      }
      .footer-contact-info-sub-social {
        order: 1;
      }
    }
    /*Middle Row*/
    .footer-list-container {
      grid-row: 3;
    }
    .footer-list-bottom.left {
      grid-column: 4;
      flex-direction: column;
      align-items: initial;
      justify-content: initial;
      gap: 8px;
    }
    /*Bottom Row*/
    .footer-list-bottom.right {
      grid-row: 5;
    }
    .footer-copyright {
      justify-content: center;
    }
  }
  
  @media screen and (max-width: 800px) {
    /* Container Styling */
    .footer-container {
      width: min(85vw, 575px);
      grid-template-columns: auto auto;
      column-gap: clamp(40px, 25vw, 200px);
      padding: 30px 0 15px;
    }
  
    /* Styling/Placing Grid Elements */
    /* Horizontal Lines */
    .footer-horizontal-line::before {
      width: min(87.5vw, 600px);
    }
    .footer-horizontal-line.bottom {
      grid-row: 5;
    }
    /* Move contact block to the top */
    /* 1st Row */
    .footer-contact-info {
      grid-row: 1;
      display: flex;
      justify-content: space-between;
    }
  
    /* 2nd Row */
    .footer-list-container:nth-of-type(1),
    .footer-list-container:nth-of-type(2) {
      padding: 0;
    }
    /* Auto place all the link containers */
    .footer-list-container,
    .footer-list-bottom {
      grid-row: auto;
    }
  
    /* 3rd Row */
    .footer-list-bottom.left,
    .footer-list-container:nth-of-type(3) {
      padding: 40px 0 0 0;
    }
  
    /* 4th Row */
    /* Safety Install Container */
    .footer-list-container:nth-of-type(3) {
      grid-column: 1;
    }
    .footer-list-bottom.left {
      grid-column: 2;
      grid-row: 4;
      flex-direction: column;
      align-items: initial;
      gap: 8px;
      justify-content: initial;
    }
  
    /* Last Row */
    .footer-list-bottom.right {
      grid-row: 6;
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 10px;
    }
    .footer-copyright {
      gap: 5px;
    }
    .footer-copyright-icon {
      width: 15px;
      height: 15px;
    }
  }
  
  @media screen and (max-width: 600px) {
    .footer-safety-link {
      width: 130px;
    }
  }
  
  @media screen and (max-width: 450px) {
    /* Font Size */
    .footer-large-text {
      font-size: 16px;
    }
    .footer-regular-text {
      font-size: 14px;
    }
  
    .footer-container {
      width: min(90vw, 400px);
    }
    .footer-horizontal-line::before {
      width: min(92vw, 450px);
    }
    /* 1st Row */
    .footer-contact-info {
      padding: 0 2.5vw;
    }
    /* 2nd Row */
    .footer-list-container:nth-of-type(1) {
      padding: 0 0 0 2.5vw;
    }
    .footer-list-container:nth-of-type(2) {
      padding: 0 2.5vw 0 0;
    }
    /* 3rd Row */
    .footer-list-bottom.left {
      padding: 40px 2.5vw 0 0;
    }
    .footer-list-container:nth-of-type(3) {
      padding: 40px 0 0 2.5vw;
    }
    .footer-safety-link {
      width: 115px;
    }
    .footer-life-lift-logo {
      width: 120px;
    }
  }
  
  /*END OF FOOTER STYLING*/
  /*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
  /*PAGES STYLING*/
  
  /*UNIVERSAL PAGE COMPONENTS*/
  .page-header-container {
    max-width: 2300px;
    margin: 0 auto;
    position: relative;
  }
  .page-header-container::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
  }
  .page-header-container.left::before {
    background: -webkit-gradient(
      linear,
      left top,
      right top,
      from(rgba(42, 42, 42, 0.7)),
      color-stop(45.77%, rgba(0, 0, 0, 0.25)),
      color-stop(62.32%, rgba(255, 255, 255, 0))
    );
    background: -o-linear-gradient(
      left,
      rgba(42, 42, 42, 0.7) 0%,
      rgba(0, 0, 0, 0.25) 45.77%,
      rgba(255, 255, 255, 0) 62.32%
    );
    background: linear-gradient(
      90deg,
      rgba(42, 42, 42, 0.7) 0%,
      rgba(0, 0, 0, 0.25) 45.77%,
      rgba(255, 255, 255, 0) 62.32%
    );
  }
  .page-header-container.center::before {
    background: rgba(0, 0, 0, 0.5);
  }
  .page-header-title {
    position: absolute;
    top: 50%;
  }
  .page-header-title.left {
    left: 10%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    max-width: min(55vw, 1050px);
  }
  .page-header-title.center {
    width: 80vw;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
  }
  .page-header-title.x-large {
    left: 5%;
  }
  .page-header {
    display: block;
    width: 100%;
    min-height: 250px;
    height: auto;
    max-height: 400px;
    margin: 0 auto;
    -o-object-fit: cover;
    object-fit: cover;
  }
  @media screen and (max-width: 1440px) {
    .page-header-title.left.large {
      left: 5%;
    }
  }
  @media screen and (max-width: 500px) {
    .page-header {
      min-height: 125px;
    }
    .page-header-title {
      line-height: 1.2;
    }
    .page-header-title.left {
      left: 5%;
    }
  }
  
  /*Offset Grid Styling*/
  .offset-full-grid {
    width: 100vw;
    max-width: 2560px;
    margin: 0 auto;
    display: -ms-grid;
    display: grid;
  }
  @media (min-width: 950px) {
    .offset-full-grid {
      -ms-grid-rows: 1fr 1fr;
      grid-template-rows: 1fr 1fr;
    }
  }
  .offset-full-grid-row {
    display: -ms-grid;
    display: grid;
    min-height: min(30vw, 500px);
  }
  @media (min-width: 1921px) {
      .offset-full-grid-row {
          max-height: 550px;
      }
  }
  /*Top Row Styling*/
  .offset-full-grid-row.top {
    -ms-grid-columns: 41fr 59fr;
    grid-template-columns: 41fr 59fr;
    background-color: var(--light-light-gray);
  }
  /*Bottom Row Styling*/
  .offset-full-grid-row.bottom {
    -ms-grid-columns: 59fr 41fr;
    grid-template-columns: 59fr 41fr;
    background-color: var(--site-burgundy);
  }
  .offset-full-grid-row.bottom .offset-full-grid-img-container {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 1;
    grid-row: 1;
  }
  .offset-full-grid-row.bottom .offset-full-grid-img-container {
    -ms-grid-column: 2;
    grid-column: 2;
    -ms-grid-row: 1;
    grid-row: 1;
  }
  
  /*Grid Images Styling*/
  .offset-full-grid-img-container {
    height: 100%;
    overflow: hidden;
  }
  .offset-full-grid-img-container img {
    display: block;
    width: 100%;
    min-height: 100%;
    height: auto;
    -o-object-fit: cover;
    object-fit: cover;
  }
  /*Grid Content Syling*/
  .offset-full-grid-content-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 35px;
    width: 85%;
    max-width: 800px;
    margin: auto;
    padding: 55px 0 75px;
  }
  .offset-full-grid-content--btn-padding {
    padding: 0 0 20px;
  }
  
  .offset-full-grid-row.bottom .offset-full-grid-content-container * {
    color: #ffffff;
  }
  /*Grid Button Styling*/
  .rounded-btn {
    display: grid;
    place-items: center;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    min-width: 250px;
    min-height: 60px;
    padding: 0 1rem;
    text-align: center;
    border-radius: 60px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.15);
    transform: translateY(0.0001px);
  }
  .offset-full-grid-row.top .rounded-btn {
    border: 2px solid var(--site-burgundy);
  }
  .offset-full-grid-row.bottom .rounded-btn {
    border: 2px solid #ffffff;
  }
  @media screen and (min-width: 769px) {
    .offset-full-grid-img-container {
      display: -webkit-box;
    }
  }
  @media screen and (max-width: 1440px) and (min-width: 1201px) {
    .offset-full-grid-row.top {
      -ms-grid-columns: 42fr 58fr;
      grid-template-columns: 42fr 58fr;
    }
    /*Bottom Row Styling*/
    .offset-full-grid-row.bottom {
      -ms-grid-columns: 58fr 42fr;
      grid-template-columns: 58fr 42fr;
    }
  }
  @media screen and (max-width: 1200px) and (min-width: 950px) {
    .offset-full-grid-row.top {
      -ms-grid-columns: 450px auto;
      grid-template-columns: 450px auto;
    }
    .offset-full-grid-row.bottom {
      -ms-grid-columns: auto 450px;
      grid-template-columns: auto 450px;
    }
  }
  @media screen and (max-width: 949px) {
    .offset-full-grid-row {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      max-height: none;
    }
    @media (min-width: 700px) {
      .offset-full-grid-img-container {
        height: 400px;
      }
      .offset-full-grid-img-container img {
          height: 100%;
      }
    }
    .offset-full-grid-content-container {
      min-height: 300px;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      padding: 40px 0 60px;
    }
  }
  @media screen and (max-width: 700px) {
    .offset-full-grid-img-container {
      overflow: inherit;
      height: auto;
    }
    .offset-full-grid-img-container img {
      min-height: inherit;
    }
  }
  @media screen and (max-width: 600px) {
    .offset-full-grid {
      -ms-grid-rows: auto auto;
      grid-template-rows: auto auto;
    }
  }
  @media screen and (max-width: 475px) {
    .offset-full-grid-content-container {
      padding: 30px 0 50px;
    }
    .rounded-btn {
      min-width: 200px;
      min-height: 50px;
    }
  }
  
  /* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
  /*Tab Carousel Styling*/
  .tab-carousel-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 2rem;
    border: 1px solid var(--light-gray);
    border-radius: 10px;
  }
  .tab-selector-container {
    width: 100%;
    overflow-x: scroll;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
  }
  .tab-selector-container::-webkit-scrollbar {
    display: none;
  }
  .tab-selector-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
  }
  .tab-selector {
    width: 100%;
  }
  .tab-selector-button {
    width: 100%;
    background: var(--light-light-gray);
    border: none;
    border-bottom: 1px solid var(--light-gray);
    padding: 1rem;
    white-space: nowrap;
    font-size: 24px;
  }
  .tab-selector:not(:first-of-type) .tab-selector-button {
    border-left: 1px solid var(--light-gray);
  }
  .tab-selector:first-of-type .tab-selector-button {
    border-radius: 10px 0 0 0;
  }
  .tab-selector:last-of-type .tab-selector-button {
    border-radius: 0 10px 0 0;
  }
  .tab-content-wrapper {
    display: -ms-grid;
    display: grid;
    width: 100%;
  }
  .tab-content {
    -ms-grid-row: 1;
    grid-row: 1;
    -ms-grid-column: 1;
    grid-column: 1;
    visibility: hidden;
  }
  /*ACTIVE STATE*/
  .tab-selector.active .tab-selector-button {
    font-weight: 700;
    border-bottom: transparent 1px solid;
    background: #ffffff;
  }
  .tab-content.active {
    visibility: visible;
  }
  @media screen and (max-width: 786px) {
    .tab-section > div {
      width: 100%;
    }
    .tab-selector-button {
      font-size: 22px;
    }
  }
  @media screen and (max-width: 550px) {
    .tab-carousel-container {
      border-radius: 0;
      border: none;
    }
    .tab-selector-container {
      width: 100vw;
    }
    .tab-selector-wrapper {
      border-top: 1px solid var(--light-gray);
      border-bottom: 1px solid var(--light-gray);
      width: -webkit-fit-content;
      width: -moz-fit-content;
      width: fit-content;
    }
    .tab-selector {
      -webkit-box-flex: initial;
      -ms-flex: initial;
      flex: initial;
    }
    .tab-selector-button {
      padding: 0.75rem 1rem;
      border-bottom: none;
      font-size: 16px;
    }
    .tab-selector:first-of-type .tab-selector-button,
    .tab-selector:last-of-type .tab-selector-button {
      border-radius: 0;
    }
  }
  
  /*STEP BY STEP FORM*/
  #form-section {
    -ms-grid-rows: 1rem auto 2rem auto;
    grid-template-rows: 1rem auto 2rem auto;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    padding: 0 0 140px;
  }
  #form-section > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  #form-section > *:nth-child(2) {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
  }
  #form-section > *:nth-child(3) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  #form-section > *:nth-child(4) {
    -ms-grid-row: 4;
    -ms-grid-column: 1;
  }
  #red-banner {
    -ms-grid-row: 1;
    -ms-grid-row-span: 3;
    grid-row: 1 / 4;
    -ms-grid-column: 1;
    grid-column: 1;
  }
  #form-section h2,
  #form-section h3 {
    -ms-grid-row: 2;
    grid-row: 2;
    -ms-grid-column: 1;
    grid-column: 1;
  }
  #step-form-container {
    width: 95%;
    -ms-grid-row: 3;
    -ms-grid-row-span: 2;
    grid-row: 3 / 5;
    -ms-grid-column: 1;
    grid-column: 1;
    background-color: #fff;
    -webkit-box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  }
  #home-step-display,
  #step-display {
    position: relative;
    display: flex;
    justify-content: space-between;
    width: 88%;
    margin: 1rem auto 0;
  }
  /*Progress Bar*/
  .step-line-container {
    position: absolute;
    top: 30px;
    width: 88%;
    height: 3px;
    background-color: #c4c4c4;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .step-bar {
    -webkit-transition: 0.3s all ease-in;
    -o-transition: 0.3s all ease-in;
    transition: 0.3s all ease-in;
    height: 100%;
    background: -o-linear-gradient(left, #47a447 0%, #0ba360 100%);
    background: -webkit-gradient(
      linear,
      left top,
      right top,
      from(#47a447),
      to(#0ba360)
    );
    background: linear-gradient(90deg, #47a447 0%, #0ba360 100%);
  }
  .step-box {
    display: -ms-grid;
    display: grid;
    row-gap: 5px;
    z-index: 100;
  }
  .step-number {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 60px;
    height: 60px;
    background-color: #c4c4c4;
    border-radius: 60px;
    margin: 0 auto;
    font-size: 2rem;
  }
  /*When user is on current step*/
  .step-number.active {
    color: #fff;
    background-color: var(--site-green);
    background-image: -o-linear-gradient(left, #47a447 0%, #0ba360 100%);
    background-image: -webkit-gradient(
      linear,
      left top,
      right top,
      from(#47a447),
      to(#0ba360)
    );
    background-image: linear-gradient(90deg, #47a447 0%, #0ba360 100%);
  }
  .step-text {
    text-align: center;
    font-size: 22px;
  }
  /*Progress Form*/
  #home-step-form {
    display: -ms-grid;
    display: grid;
    padding: 0 6%;
  }
  #step-form {
    display: -ms-grid;
    display: grid;
    padding: 3rem 6%;
    width: 100%;
  }
  #home-step-form .step-fieldset,
  #step-form .step-fieldset {
    row-gap: 1rem;
    column-gap: 4rem;
    min-height: 200px;
  }
  #info-form .step-fieldset {
    gap: 3rem;
  }
  .step-fieldset {
    display: none;
    -ms-grid-row: 1;
    grid-row: 1;
    -ms-grid-column: 1;
    grid-column: 1;
    border: none;
    -ms-grid-columns: 1fr 4rem 1fr;
    grid-template-columns: 1fr 1fr;
  }
  /*Location Fieldset*/
  .main-autofill-element {
    width: 100%;
    max-width: 450px;
    justify-self: center;
  }
  @media screen and (min-width: 626px) {
    .main-autofill-element,
    .street-address-element {
      grid-column: 1 / span 2;
    }
    .street-address-element {
      max-width: 530px;
    }
    .postcode-container,
    .location-fieldset .back {
      grid-column: 1;
    }
  }
  .step-fieldset.active {
    display: grid;
  }
  .step-fieldset label,
  .step-fieldset span,
  .step-fieldset-radio-title {
    font-size: 22px;
  }
  .form-input-wrapper {
    position: relative;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
  .form-input-wrapper input {
    font-size: 18px;
  }
  .form-input-wrapper.error::before {
    content: "Pflichtfeld";
    font-family: calibri, sans-serif;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 1rem;
    color: #ff2626;
  }
  .form-input-wrapper.email-invalid::before {
    content: "Ungültig";
    font-family: calibri, sans-serif;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 1rem;
    color: #ff2626;
  }
  #home-step-form .form-input:not(.form-readonly),
  #info-form .form-input:not(.form-readonly) {
    background-color: #ffffff;
  }
  #step-form .form-input:not(.form-readonly) {
    background-color: var(--light-light-gray);
  }
  .form-input {
    border: 1px solid var(--light-gray);
    border-radius: 5px;
    padding: 0.5rem;
    width: 100%;
    outline: none;
  }
  .form-input:focus,
  .form-input:focus-visible {
    border: 1px solid var(--gray) !important;
  }
  .form-input.error {
    border: 1px solid #ff2626;
  }
  .form-input.form-readonly {
    background-color: #d8d9d8;
  }
  .radio-input {
    background-color: var(--light-light-gray);
    border: 1px solid var(--light-gray);
    border-radius: 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    min-width: 120px;
    max-height: 55px;
    cursor: pointer;
    margin-bottom: 1.5rem;
  }
  #home-form-section .radio-input {
    background-color: #ffffff;
  }
  input[type="radio"] {
    height: 20px;
    width: 20px;
  }
  .forward,
  #submit-btn,
  #home-submit-btn,
  #success-btn {
    width: 100%;
    max-width: 250px;
    position: relative;
    text-align: center;
    color: #fff;
    background-color: var(--site-green);
    background-image: -o-linear-gradient(left, #47a447 0%, #0ba360 100%);
    background-image: -webkit-gradient(
      linear,
      left top,
      right top,
      from(#47a447),
      to(#0ba360)
    );
    background-image: linear-gradient(90deg, #47a447 0%, #0ba360 100%);
    -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.15);
    border-radius: 100px;
    border: none;
    padding: 0 1rem;
    min-height: 50px;
    font-size: 22px;
    margin-top: auto;
    -webkit-transition: 0.2s transform ease-in-out, 0.2s opacity ease-in-out,
      0.2s box-shadow ease-in-out;
    -o-transition: 0.2s transform ease-in-out, 0.2s opacity ease-in-out,
      0.2s box-shadow ease-in-out;
    transition: 0.2s transform ease-in-out, 0.2s opacity ease-in-out,
      0.2s box-shadow ease-in-out;
    transform: translateY(0.00001px);
    font-weight: 700;
  }
  .forward .corner-arrow {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(225deg);
    -ms-transform: translateY(-50%) rotate(225deg);
    transform: translateY(-50%) rotate(225deg);
  }
  .back {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.5rem;
    background-color: transparent;
    border: none;
    padding: 0.5rem 1rem;
    margin: auto auto 0 0;
  }
  @media screen and (max-width: 768px) {
    #info-form {
      width: 100%;
    }
    #home-step-form,
    #step-form {
      width: 100%;
      -ms-grid-column-align: center;
      justify-self: center;
      padding: 3rem 5%;
    }
    #home-step-form .step-fieldset,
    #step-form .step-fieldset {
      row-gap: 2rem;
      column-gap: 1rem;
    }
  }
  @media screen and (max-width: 625px) {
    #info-form .step-fieldset {
      gap: 2rem;
    }
    .step-fieldset {
      display: none;
    }
    .step-fieldset.active {
      display: grid;
    }
    .form-input-element {
      -ms-grid-column: 1;
      -ms-grid-column-span: 2;
      grid-column: 1 / span 2;
      width: min(100%, 350px);
      -ms-grid-column-align: center;
      justify-self: center;
    }
  }
  @media screen and (max-width: 550px) {
    .mobile-step-display {
      padding: 0 5%;
    }
    .step-ring-container {
      position: relative;
    }
    .ring-fill {
      -webkit-transition: 0.35s stroke-dashoffset;
      -o-transition: 0.35s stroke-dashoffset;
      transition: 0.35s stroke-dashoffset;
      -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
      transform: rotate(-90deg);
      -webkit-transform-origin: 50% 50%;
      -ms-transform-origin: 50% 50%;
      transform-origin: 50% 50%;
    }
    .mobile-step-number {
      position: absolute;
      width: 100%;
      text-align: center;
      left: 50%;
      top: 50%;
      -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
    }
    .mobile-step-text,
    .mobile-step-number,
    .mobile-current-number {
      font-size: 22px;
    }
    #home-step-display,
    #step-display {
      display: none;
    }
    #home-mobile-step-display,
    .mobile-step-display {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
    }
    #home-step-form,
    #step-form {
      padding: 1rem 5% 3rem;
    }
  }
  @media screen and (max-width: 475px) {
    #home-step-form {
      padding: 0 5%;
    }
    #form-section {
      padding: 0 0 85px;
    }
    #info-form .radio-input {
      min-width: initial;
    }
    .forward,
    #submit-btn,
    #home-submit-btn,
    #success-btn {
      font-size: 20px;
      max-width: 180px;
    }
  }
  /*END OF STEP BY STEP FORM*/
  
  /*Confirmation Modal*/
  #modal-overlay {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    z-index: 100000;
    position: fixed;
    top: 0;
    bottom: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.4);
  }
  #success-modal {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 3rem 2rem;
    gap: 2rem;
    background-color: #ffffff;
    width: 80%;
    max-width: 400px;
    border-radius: 10px;
  }
  #success-modal img {
    position: absolute;
    left: 50%;
    top: 0;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  
  /*SHADOW & ELEVATION STYLING*/
  .elevation-1 {
    -webkit-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.3),
      0px 1px 3px 1px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.3),
      0px 1px 3px 1px rgba(0, 0, 0, 0.15);
  }
  .elevation-2 {
    -webkit-box-shadow: 0px 1px 10px 1px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 1px 10px 1px rgba(0, 0, 0, 0.15);
  }
  .elevation-3 {
    -webkit-box-shadow: 0px 2px 5px 2px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 2px 5px 2px rgba(0, 0, 0, 0.15);
  }
  .elevation-4 {
    -webkit-box-shadow: 0px 4px 8px 3px rgba(0, 0, 0, 0.12),
      0px 1px 3px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 4px 8px 3px rgba(0, 0, 0, 0.12),
      0px 1px 3px rgba(0, 0, 0, 0.25);
  }
  
  /*Checkmark*/
  .checkmark {
    width: 35px;
    height: 35px;
  }
  @media (max-width: 825px) {
    .checkmark {
      width: 25px;
      height: 25px;
    }
  }
  @media (max-width: 500px) {
    .checkmark {
      width: 20px;
      height: 20px;
    }
  
  }
  
  /*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
  /*HOME PAGE*/
  #home-hero-section {
    position: relative;
    max-width: 1920px;
    margin: 0 auto;
    overflow: hidden;
    background-color: #6e0c32;
  }
  /*Covid Banner*/
  #covid-badge {
    position: absolute;
    right: 2%;
    top: 10px;
    width: 292px;
    -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    z-index: 100;
    line-height: 1.1;
    padding: 5px 13px;
  }
  #covid-badge span,
  #covid-banner span {
    font-size: 16px;
  }
  #covid-badge img {
    float: right;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    margin-bottom: -10px;
  }
  @media (max-width: 1249px) {
    #covid-badge.landing-hero-badge {
      display: none;
    }
    #covid-banner.landing-hero-banner {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
    }
  }
  @media screen and (max-width: 1100px) {
    #covid-badge {
      display: none;
    }
    #covid-banner {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
    }
  }
  
  @media screen and (max-width: 980px) {
    #covid-banner span {
      max-width: 500px;
    }
  }
  @media screen and (max-width: 535px) {
    #covid-banner span {
      font-size: 14px;
    }
  }
  
  /*Hero images*/
  .home-hero-carousel-2 {
    position: relative;
    display: grid;
    grid-template-rows: 1fr auto;
    gap: clamp(30px, calc(1.875rem + ((1vw - 14.4px) * 12.5)), 50px);
    overflow: hidden;
  }
  .home-hero-carousel-2::before {
    content: "";
    position: absolute;
    top: -10%;
    left: 10%;
    width: 80vw;
    max-width: 1300px;
    height: 1000px;
    background-image: url("/assets/imgs/home/home-hero/fade-glow.png");
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 1;
  }
  @media (max-width: 1150px) {
    .home-hero-carousel-2 {
      grid-template-columns: auto 1fr;
    }
    .home-hero-carousel-2::before {
      top: 0;
      left: 0;
      height: 750px;
    }
  }
  @media (max-width: 800px) {
    .home-hero-carousel-2 {
      gap: 0 30px;
    }
    .home-hero-carousel-2::before {
      height: 100%;
      left: -5%;
    }
  }
  @media (max-width: 700px) {
    .home-hero-carousel-2 {
      grid-template-columns: 1fr;
      gap: 0;
    }
    .home-hero-carousel-2::before {
      top: 50%;
      width: 120vw;
      max-width: 500px;
      height: 120vw;
      max-height: 500px;
      left: 10%;
      bottom: 40px;
    }
  }
  @media (max-width: 400px) {
    .home-hero-carousel-2::before {
      left: 5%;
    }
  }
  /*Overwrite Slick Styling*/
  .home-hero-carousel-2 .slick-track {
    display: flex !important;
  }
  .home-hero-carousel-2 .slick-slide {
    height: inherit !important;
  }
  /*Images*/
  .home-hero-main-stairlift-img-2.mobile {
    display: none;
  }
  .home-hero-main-stairlift-img-container-2 {
    position: relative;
    display: grid;
    grid-column: 1;
    grid-row: 1 / span 2;
  }
  .home-hero-main-stairlift-img-2 {
    display: block;
    grid-row: 1;
    grid-column: 1;
    width: 40vw;
    max-width: 770px;
    height: auto;
    max-height: 760px;
    object-fit: cover;
    object-position: bottom right;
    z-index: 10;
  }
  .home-hero-main-stairlift-img-js {
    transform: translateX(-100%);
    visibility: hidden;
    opacity: 0;
    transition: 0.75s all ease-in-out;
  }
  .home-hero-main-stairlift-img-js.active {
    transform: translateX(0);
    visibility: visible;
    opacity: 1;
  }
  @media (max-width: 1150px) {
    .home-hero-main-stairlift-img-2 {
      width: 42vw;
    }
  }
  @media (max-width: 950px) {
    .home-hero-main-stairlift-img-2 {
      height: 460px;
    }
  }
  @media (max-width: 850px) {
    .home-hero-main-stairlift-img-2 {
      width: 35vw;
      margin: -30px 0 0 0;
    }
  }
  @media (max-width: 700px) {
    .home-hero-main-stairlift-img-container-2.desktop {
      display: none;
    }
    .home-hero-main-stairlift-img-2.mobile {
      display: block;
      margin: auto 0 0 0;
    }
    .home-hero-main-stairlift-img-2 {
      width: 70vw;
      height: min(100vw, 470px);
    }
  }
  
  /*Content*/
  .home-hero-main-stairlift-content-slick {
    padding: 100px 0 0 0;
    z-index: 11;
    width: 47.5vw;
    max-width: 640px;
    grid-column: 2;
    align-self: flex-end;
  }
  .home-hero-main-stairlift-content-slick .slick-slide {
    opacity: 1 !important;
  }
  .home-hero-main-content-2 {
    width: 100%;
    transition: 0.75s opacity ease-in-out;
    display: flex;
    flex-direction: column;
    gap: 30px;
    opacity: 0;
    visibility: hidden;
    transition: visibility 0.5s linear, opacity 0.5s ease-in-out;
  }
  @media (min-width: 1000px) {
    .home-hero-main-content-2__p {
      font-size: 20px;
    }
  }
  /*Links*/
  .home-hero-main-link-2 {
    border: 2px solid #ffffff;
  }
  @media (max-width: 1100px) {
    .home-hero-main-stairlift-content-slick {
      padding: clamp(50px, calc(3.125rem + ((1vw - 9px) * 24.1935)), 80px) 0 0 0;
    }
  }
  @media (max-width: 850px) {
    .home-hero-main-stairlift-content-slick {
      width: 52.5vw;
    }
  }
  @media (max-width: 800px) {
    .home-hero-main-stairlift-content-slick {
      padding: 130px 0 0 0;
    }
    .home-hero-main-link-2 {
      min-height: 50px;
      min-width: 225px;
    }
  }
  @media (max-width: 750px) {
    .home-hero-main-stairlift-content-slick {
      width: 55vw;
    }
  }
  @media (max-width: 700px) {
    .home-hero-carousel-2 .slick-slide {
      display: flex;
      flex-direction: column;
    }
    .home-hero-main-stairlift-content-slick {
      padding: 40px 0 0 0;
      grid-column: 1;
      width: 100vw;
      max-width: none;
      justify-self: center;
    }
    .home-hero-main-content-2 {
      text-align: center;
      width: 85vw;
      max-width: 500px;
      margin: 0 auto;
    }
    .home-hero-main-link-2 {
      margin: 0 auto;
    }
  }
  @media (max-width: 550px) {
    .home-hero-main-content-2 {
      margin: 0 auto -60px;
    }
  }
  /*Arrows*/
  .home-hero-main-stairlift-content-slick .slick-prev {
    display: none !important;
  }
  .home-hero-slick-next {
    width: fit-content;
    background: none;
    border: none;
    padding: 10px;
    z-index: 10;
    position: absolute;
    right: 3%;
    top: 40%;
  }
  @media (max-width: 750px) {
    .home-hero-slick-next {
      display: none;
    }
  }
  /*Indicators*/
  .home-hero-indicator-container-2 {
    display: flex;
    gap: clamp(25px, calc(1.5625rem + ((1vw - 10.5px) * 30)), 40px);
    grid-column: 2;
    grid-row: 2;
    z-index: 10;
    align-self: flex-end;
    justify-self: flex-end;
    padding: 35px clamp(25px, calc(1.5625rem + ((1vw - 10.5px) * 20)), 35px) 35px
      0;
  }
  .home-hero-indicator-2 {
    width: fit-content;
    background: none;
    border: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #ffffff;
    opacity: 0.65;
    transition: 0.5s opacity ease-in-out;
  }
  .home-hero-indicator-img-2 {
    width: clamp(85px, calc(5.3125rem + ((1vw - 12px) * 27.0833)), 150px);
    height: clamp(65px, calc(4.0625rem + ((1vw - 12px) * 27.0833)), 130px);
    object-fit: cover;
    object-position: bottom right;
  }
  .home-hero-indicator-2::after {
    content: "";
    display: block;
    width: clamp(10px, calc(0.625rem + ((1vw - 10.24px) * 0.5319)), 12px);
    height: clamp(10px, calc(0.625rem + ((1vw - 10.24px) * 0.5319)), 12px);
    border-radius: 12px;
    background: #ffffff;
    margin: 6px 0 0 0;
    opacity: 0;
    transition: 0.5s opacity ease-in-out;
  }
  @media (max-width: 1050px) {
    .home-hero-indicator-2 {
      font-size: 15px;
    }
  }
  @media (max-width: 850px) {
    .home-hero-indicator-container-2 {
      width: 100%;
      padding: 35px 25px 25px 0;
    }
  }
  @media (max-width: 970px) {
    .home-hero-indicator-container-2 {
      margin: 20px 0 0 0;
      width: fit-content;
      grid-column: 1 / span 2;
    }
    .home-hero-indicator-img-2 {
      display: none;
    }
  }
  @media (max-width: 700px) {
    .home-hero-indicator-container-2 {
      padding: 25px 25px 35px;
      width: 100%;
      justify-content: space-between;
      margin: 0;
      grid-column: 1;
    }
  }
  /*Active State*/
  .slick-active .home-hero-main-content-2,
  .home-hero-indicator-2.active,
  .home-hero-indicator-2.active::after {
    opacity: 1;
    visibility: visible;
  }
  
  /*ALT LANDING*/
  /*Home Hero Landing Page*/
  .home-hero-landing-container {
    width: 100vw;
    max-width: 2300px;
    height: auto;
    overflow: hidden;
    margin: 0 auto;
    position: relative;
  }
  /*
  .home-hero-landing-slick-js.slick-slider {
      touch-action: auto !important;
  }
  */
  /*Content*/
  .home-hero-landing-slick-js .slick-slide {
    opacity: 1 !important;
  }
  .home-hero-landing-slide-container {
    position: relative;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: visibility 0.5s linear, opacity 0.5s ease-in-out;
  }
  .home-hero-landing-img {
    display: block;
    width: 100%;
  /*  height: auto;*/
      height: 650px;
    min-height: 550px;
    object-fit: cover;
  }
  .home-hero-landing-img.hero-straight-img {
    object-position: 20% 50%;
  }
  .home-hero-landing-img.hero-curved-img {
    object-position: 65% 50%;
  }
  .home-hero-landing-img.hero-outdoor-img {
    object-position: 99% 50%;
  }
  .home-hero-landing-content {
    position: absolute;
    top: clamp(75px, calc(4.6875rem + ((1vw - 12px) * 27.5)), 185px);
    left: clamp(75px, calc(4.6875rem + ((1vw - 12px) * 55)), 130px);
    width: 56vw;
    max-width: 580px;
  }
  @media (min-width: 1921px) {
      .home-hero-landing-content {
          left: 50%;
          transform: translateX(-50%);
          width: 100vw;
          max-width: 1920px;
          padding: 0 0 0 clamp(75px, calc(4.6875rem + ((1vw - 12px) * 55)), 130px);
      }
      .home-hero-landing-content * {
          max-width: 580px;
      }
  }
  @media (min-width: 1550px) {
      .home-hero-landing-img {
          height: 800px;
      }
  }
  @media (min-width: 800px) {
    .home-hero-landing-content__p {
      font-size: 20px;
    }
  }
  .home-hero-landing-link {
    margin: 25px 0 0 0;
    border: 2px solid #8f023d;
  }
  .outdoor-slide .home-hero-landing-link {
    border: 2px solid #ffffff;
  }
  /*OUTDOOR SLIDE*/
  .home-hero-landing-slide-container.outdoor-slide::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 125vw;
    max-width: 2300px;
    background: linear-gradient(
      90deg,
      rgba(49, 42, 32, 0.5) 40.35%,
      rgba(0, 0, 0, 0) 54.23%
    );
  }
  
  /*Home Landing Indicators*/
  .home-hero-landing-indicator-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100vw;
    max-width: 1920px;
    height: clamp(130px, calc(8.125rem + ((1vw - 11px) * 25)), 180px);
    display: flex;
    align-items: center;
    padding: 0 0 0 clamp(75px, calc(4.6875rem + ((1vw - 12px) * 55)), 130px);
  }
  @media (min-width: 1921px) {
      .home-hero-landing-indicator-container {
          left: 50%;
          transform: translateX(-50%);
      }
  }
  .home-hero-landing-indicator-btn-container {
    display: flex;
    gap: clamp(60px, calc(3.75rem + ((1vw - 11px) * 20)), 100px);
  }
  .home-hero-landing-indicator-btn {
    background: none;
    border: none;
    display: grid;
    place-items: center;
    gap: 7px;
    text-align: center;
    opacity: 0.65;
    transition: opacity 0.5s ease-in-out;
  }
  .home-hero-landing-indicator-btn-control-container {
    display: none;
  }
  .home-hero-landing-indicator-text {
    font-size: clamp(15px, calc(0.9375rem + ((1vw - 11px) * 5)), 20px);
  }
  .home-hero-landing-indicator-dot {
    border: 1px var(--black) solid;
    border-radius: 50px;
    width: 8px;
    height: 8px;
    transition: width 0.1s linear, background 0.1s linear;
    -webkit-transition: width 0.1s linear, background 0.1s linear;
  }
  .home-hero-landing-indicator-dot.paused-slide {
    background: var(--black);
  }
  .home-hero-landing-indicator-dot-fill {
    content: "";
    display: block;
    width: 7px;
    height: 100%;
    border-radius: 50px;
    background: var(--black);
  }
  /*With Timer Indicator Only*/
  @media (min-width: 751px) {
    /*Indicator Active Styling*/
    .version-1 .home-hero-landing-indicator-btn.active .home-hero-landing-indicator-dot {
      width: 65px;
    }
    .version-1 .home-hero-landing-indicator-btn.active-outdoor .home-hero-landing-indicator-dot.paused-slide {
    background: #ffffff;
  }
    /* Indicator Animation ~ Update to (-1) the total animation time */
    .version-1 .home-hero-landing-indicator-btn.active
      .home-hero-landing-indicator-dot-fill {
      width: 100%;
    }
    /*Swap Colors to white on outdoor slide*/
    .version-1 .home-hero-landing-indicator-btn.active-outdoor
      .home-hero-landing-indicator-text {
      color: #ffffff;
    }
    .version-1 .home-hero-landing-indicator-btn.active-outdoor
      .home-hero-landing-indicator-dot {
      border: 1px #ffffff solid;
    }
    .version-1 .home-hero-landing-indicator-btn.active-outdoor
      .home-hero-landing-indicator-dot-fill {
      background: #ffffff;
    }
  }
  
  /*ACTIVE STATE TRANSITIONS*/
  .slick-active .home-hero-landing-slide-container,
  .home-hero-landing-indicator-btn.active {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease-in-out, visibility 0.5s linear;
    -webkit-transition: opacity 0.5s ease-in-out, visibility 0.5s linear;
  }
  /*Alt Landing Responsive*/
  @media (max-width: 1150px) {
    .home-hero-landing-content {
      max-width: 460px;
    }
    .home-hero-landing-indicator-container {
      background: none;
    }
  }
  @media (max-width: 1000px) {
    .home-hero-landing-content {
      left: clamp(40px, calc(2.5rem + ((1vw - 8px) * 20.202)), 60px);
    }
    .home-hero-landing-img.hero-straight-img {
      object-position: 42% 50%;
    }
    .home-hero-landing-indicator-container {
      padding: 0 0 0 50px;
    }
    .home-hero-landing-indicator-btn-container {
      width: 65vw;
      gap: 35px;
    }
  }
  @media (max-width: 899px) {
    .home-hero-landing-img {
      min-height: 500px;
    }
    .home-hero-landing-img.hero-straight-img {
      object-position: 35% 50%;
    }
    .home-hero-landing-title {
      padding: 0;
    }
    .home-hero-landing-link {
      min-height: 50px;
      min-width: 225px;
    }
    .home-hero-landing-indicator-container {
      height: 85px;
      padding: 0 0 0 30px;
    }
  }
  @media (max-width: 800px) and (min-width: 751px) {
    .home-hero-landing-img.hero-straight-img {
      object-position: 47% 50%;
    }
    .home-hero-landing-img.hero-curved-img {
      object-position: 100% 50%;
    }
    .home-hero-landing-content__p {
      width: 50vw;
    }
  }
  /* Content Stacking Breakpoints */
  @media (max-width: 750px) {
     .home-hero-landing-container {
       max-height: 950px;
    }
    .home-hero-landing-content {
      left: 50%;
      top: clamp(10px, calc(0.625rem + ((1vw - 5px) * 20)), 30px);
      transform: translate(-50%, 0);
      width: 91vw;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .home-hero-landing-img {
      height: clamp(600px, calc(37.5rem + ((1vw - 4px) * 114.2857)), 1000px);
    }
    /*Individual Images*/
    .home-hero-landing-img.hero-straight-img {
      object-position: 50% 100%;
    }
    /*OUTDOOR SLIDE*/
    .home-hero-landing-slide-container.outdoor-slide::before {
      content: "";
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      width: 100vw;
      min-height: 750px;
      background: linear-gradient(
        180deg,
        rgba(49, 42, 32, 0.6) 34.21%,
        rgba(0, 0, 0, 0) 44.89%
      );
    }
    /*Indicators*/
    .home-hero-landing-indicator-container {
      background: none;
      height: auto;
      padding: 0;
      left: 50%;
      bottom: 35px;
      transform: translate(-50%, 0);
      width: 200px;
    }
    .home-hero-landing-indicator-btn-container {
      width: 200px;
      height: clamp(40px, calc(2.5rem + ((1vw - 5px) * 10)), 50px);
      background: rgba(255, 255, 255, 0.75);
      border-radius: 30px;
      gap: 10px;
      justify-content: center;
    }
    .home-hero-landing-indicator-btn {
      padding: 4px;
      opacity: 0.25;
    }
    .home-hero-landing-indicator-dot {
      width: 12px;
      height: 12px;
      background: #1f1d1d;
    }
    .home-hero-landing-indicator-text,
    .home-hero-landing-indicator-dot-fill {
      display: none;
    }
    /*Play / Pause Controls*/
    .home-hero-landing-indicator-btn-control-container {
      display: grid;
      place-items: center;
      padding: 0 0 0 5px;
    }
    .home-hero-landing-control {
      display: grid;
      place-items: center;
      grid-row: 1;
      grid-column: 1;
      background: none;
      border: none;
      width: 20px;
      height: 20px;
      opacity: 0;
      z-index: 20;
    }
    .home-hero-landing-control.active {
      opacity: 1;
      z-index: 21;
    }
  }
  @media (max-width: 650px) {
    .home-hero-landing-indicator-container {
      bottom: 10px;
    }
    .home-hero-landing-link {
      margin: 20px 0 0 0;
    }
  }
  @media (max-width: 450px) {
    .home-hero-landing-img.hero-curved-img {
      object-position: 50% 35%;
    }
  }
  @media (max-width: 400px) {
    .home-hero-landing-img.hero-curved-img {
      object-position: 50% 20%;
    }
  }
  
  /*NEW Home V2*/
  /* Overlay */
  /*
  .home-hero-landing-slide-container.outdoor-slide-v2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient( -90deg, rgba(49, 42, 32, 0.5) 40.35%, rgba(0, 0, 0, 0) 54.23% );
    z-index: 1;
  }
  */
  /* Images */
  .hero-straight-img-v2 {
    object-position: 85% 50%;
  }
  .hero-curved-img-v2 {
  /*  object-position: bottom;*/
      object-position: 15% 80%;
  }
  .hero-outdoor-img-v2 {
    object-position: 40% 50%;
  }
  /* Content */
  .home-hero-landing-content-v2 {
      position: absolute;
      top: 50%;
      right: 60px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
      background: rgba(255, 255, 255, 0.8);
      -webkit-backdrop-filter: blur(4px);
      backdrop-filter: blur(4px);
      transform: translateY(-50%);
      border-radius: 10px;
      max-width: 600px;
      padding: 30px 10px 30px 25px;
    z-index: 2;
  }
  @media (min-width: 1500px) {
    .home-hero-landing-content-v2 {
      min-height: 330px;
    }
  }
  .home-hero-landing-content-v2__title {
      line-height: 1.1;
      padding: 0 0 10px;
  }
  .home-hero-landing-content-v2__p {
      width: 95%;
  }
  /* Indicator */
  .home-hero-landing-indicator-container-v2 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: flex-end;
    width: 100vw;
    max-width: 2300px;
    padding: 0 25px 15px 0;
  }
  @media (min-width: 1250px) {
    /*Indicator Active Styling*/
    .home-hero-landing-indicator-container-v2 .home-hero-landing-indicator-btn.active .home-hero-landing-indicator-dot {
      width: 65px;
    }
    /* Indicator Animation ~ Update to (-1) the total animation time */
    .home-hero-landing-indicator-container-v2 .home-hero-landing-indicator-btn.active
      .home-hero-landing-indicator-dot-fill {
      width: 100%;
    }
  }
  @media (max-width: 1500px) {
    .home-hero-landing-indicator-container-v2 {
      padding: 0 25px 15px 0;
    }
    .home-hero-landing-indicator-container-v2 .home-hero-landing-indicator-btn-container {
      gap: 60px;
    }
    @media (min-width: 1200px) {
        .hero-v2 .home-hero-landing-img {
              min-height: 650px;
          }
      }
  }
  @media (max-width: 1249px) {
    .home-hero-landing-content-v2 {
      top: 50px;
      right: 35px;
      min-height: auto;
      transform: none;
      width: 60vw;
    }
    .home-hero-landing-indicator-container-v2 {
      justify-content: center;
    }
      @media (min-width: 751px) {
        .home-hero-landing-indicator-container-v2.home-hero-landing-indicator-container {
          background: none;
          height: auto;
          padding: 0;
          left: 50%;
          bottom: 35px;
          transform: translate(-50%, 0);
          width: 200px;
        }
        .home-hero-landing-indicator-container-v2 .home-hero-landing-indicator-btn-container {
          width: 200px;
          height: 40px;
          background: rgba(255, 255, 255, 0.75);
          border-radius: 30px;
          gap: 10px;
          justify-content: center;
          margin: 0 auto;
        }
        .home-hero-landing-indicator-container-v2 .home-hero-landing-indicator-btn {
          padding: 4px;
          opacity: 0.25;
        }
        .home-hero-landing-indicator-container-v2 .home-hero-landing-indicator-btn.active {
          opacity: 1;
        }
        .home-hero-landing-indicator-container-v2 .home-hero-landing-indicator-dot {
          width: 12px;
          height: 12px;
          background: #1f1d1d;
        }
        .home-hero-landing-indicator-container-v2 .home-hero-landing-indicator-text,
        .home-hero-landing-indicator-container-v2 .home-hero-landing-indicator-dot-fill {
          display: none;
        }
        /*Play / Pause Controls*/
        .home-hero-landing-indicator-container-v2 .home-hero-landing-indicator-btn-control-container {
          display: grid;
          place-items: center;
          padding: 0 0 0 5px;
        }
        .home-hero-landing-indicator-container-v2 .home-hero-landing-control {
          display: grid;
          place-items: center;
          grid-row: 1;
          grid-column: 1;
          background: none;
          border: none;
          width: 20px;
          height: 20px;
          opacity: 0;
          z-index: 20;
        }
        .home-hero-landing-indicator-container-v2 .home-hero-landing-control.active {
          opacity: 1;
          z-index: 21;
        }
      }
  }
  @media (max-width: 850px) {
    .home-hero-landing-slide-container.outdoor-slide-v2::before {
      background: linear-gradient( 90deg, rgba(49, 42, 32, 0.5) 40.35%, rgba(0, 0, 0, 0) 54.23% );
    }
    /* Images */
    .hero-v2 .home-hero-landing-img {
      height: 540px;
      height: clamp(540px, calc(33.75rem + ((1vw - 7.68px) * 134.1463)), 650px);
    }
    .hero-straight-img-v2 {
      object-position: 100% 0;
    }
    .hero-curved-img-v2 {
      object-position: 100% 10%;
    }
    .hero-outdoor-img-v2 {
      transform: none;
    }
    /* Content */
    .home-hero-landing-content-v2 {
      top: 30px;
      left: 40px;
      right: auto;
      text-align: center;
      padding: 15px 5px;
      align-items: center;
      min-width: 370px;
      width: 51vw;
      max-width: 430px;
    }
      @media (min-width: 601px) {
        .outdoor-slide-v2 .home-hero-landing-content-v2 {
          width: 56vw;	
        }
      }
    .home-hero-landing-content-v2__title {
      font-size: 36px;
    }
    .home-hero-landing-content-v2__p {
      margin: 0 auto;
      font-size: 16px;
    }
    .home-hero-landing-content-v2 .home-hero-landing-link {
      margin: 15px 0 0;
    }
    /* Indicators */
    .home-hero-landing-indicator-container-v2 {
      padding: 0 0 10px;
    }
  }
  @media (max-width: 750px) {
    .home-hero-landing-indicator-container-v2 .home-hero-landing-indicator-btn-container {
      gap: 10px;
      height: 40px;
      width: 200px;
    }
  }
  @media (max-width: 600px) {
      .hero-v2 .home-hero-landing-img {
          height: 980px;
      }
      .hero-straight-img-v2,
      .hero-curved-img-v2 {
          object-position: 25% 100%;
      }
      .home-hero-landing-content-v2 {
          top: 20px;
          left: 3vw;
          min-width: inherit;
          width: 94vw;
      }
      .home-hero-landing-content-v2__title {
          font-size: 30px;
          padding: 0 0 5px;
      }
  }
  @media (max-width: 500px) {
      .home-hero-landing-slide-container.outdoor-slide-v2::before {
          background: linear-gradient( 180deg, rgba(49, 42, 32, 0.6) 34.21%, rgba(0, 0, 0, 0) 44.89% );
      }
      .hero-outdoor-img-v2 {
          object-position: 25% 100%;
      }
  }
  
  /*Acorn Customer Section*/
  @media screen and (max-width: 1300px) {
    .acorn-customer-grid {
      grid-column-gap: 1rem;
    }
  }
  @media screen and (max-width: 1000px) {
    .acorn-customer-grid {
      -ms-grid-columns: 1fr auto;
      grid-template-columns: 1fr auto;
    }
    .home-acorn-logo {
      width: clamp(100px, 25vw, 200px);
    }
  }
  @media screen and (max-width: 950px) {
    .home-acorn-logo {
      -ms-grid-row: 1;
      grid-row: 1;
      grid-column: 1;
      width: clamp(155px, 40vw, 200px);
      height: auto;
      justify-self: center;
    }
    .acorn-customer-p {
      -ms-grid-column: 1;
      -ms-grid-column-span: 2;
      grid-column: 1 / span 2;
    }
  }
  
  .home-acorn-customer-icon-content-grid {
    max-width: 1225px;
  }
  .home-acorn-customer-icon-container {
    display: grid;
    width: 100px;
    height: 100px;
    align-items: flex-end;
  }
  @media screen and (max-width: 768px) {
    .home-acorn-customer-icon-content-grid {
      -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
    }
    .acorn-customer-grid {
      -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
    }
    .acorn-customer-p {
      -ms-grid-column: 1;
      grid-column: 1;
    }
  }
  @media screen and (max-width: 550px) {
    .home-acorn-customer-icon-container {
      height: 75px;
      width: 75px;
    }
  }
  
  /*Infographic Section*/
  @media (min-width: 600px) {
      .infographic-title--span {
          white-space: nowrap;
      }
  }
  .infographic-content--p {
    width: 90vw;
  }
  .info-block-container {
      max-width: 1330px;
      width: 90vw;
      margin: 0 40px;
      justify-self: center;
  }
  /*Individual Info Block Styling*/
  .info-block {
    display: -ms-grid;
    display: grid;
    column-gap: 2rem;
    row-gap: 1rem;
    position: relative;
  }
  .info-block:not(:last-child) {
    border-bottom: 5px solid var(--site-burgundy);
  }
  @media (min-width: 1200px) {
      .info-block:nth-child(odd) {
          padding: 45px 30px 75px 80px;
      }
      .info-block:nth-child(even) {
          padding: 45px 80px 75px 30px;
      }
  }
  @media (max-width: 1199px) and (min-width: 1001px) {
      .info-block:nth-child(odd) {
          padding: 35px 15px 60px 60px;
      }
      .info-block:nth-child(even) {
          padding: 35px 60px 75px 15px;
      }
  }
  @media screen and (min-width: 1001px) {
      /*Left Blocks*/
      .info-block:nth-child(odd) {
        grid-template-columns: auto 30%;
        border-left: 5px solid var(--site-burgundy);
      }
      /*Right Blocks*/
      .info-block:nth-child(even) {
        grid-template-columns: 30% auto;
        border-right: 5px solid var(--site-burgundy);
      }
    /*Left Blocks (odd)*/
    .info-block:nth-child(odd) .info-block-title,
    .info-block:nth-child(odd) .info-block-content {
      -ms-grid-column: 1;
      grid-column: 1;
    }
    .info-block:nth-child(even) .info-block-title,
    .info-block:nth-child(even) .info-block-content {
      -ms-grid-column: 2;
      grid-column: 2;
    }
    .info-block-title {
      -ms-grid-column: 1;
      grid-column: 1;
      margin: auto 0 0 0;
    }
      .info-block.home-survey .info-block-title {
          grid-column: 1 / span 2;
          grid-row: 1;
      }
      .info-block.home-survey .info-img {
          grid-column: 2;
      }
  }
  .info-block-content {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 2;
    grid-row: 2;
  }
  /*Custom Content*/
  .info-block.acorn-club .info-block-content {
      max-width: 780px;
  }
  .info-img {
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    grid-row: 1 / span 2;
  }
  .info-img-collapsed {
    display: none;
  }
  /*Custom Img Styling*/
  .info-grid-stairlift-container {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
  }
  .info-grid-stairlift-img {
      height: 200px;
      width: auto;
  }
  .info-img-quote {
      max-width: 310px;
  }
  .info-img-home {
      max-width: 310px;
      align-self: flex-end;
  }
  .info-img-installers {
      max-width: 310px;
  }
  .info-img-acorn {
      max-width: 220px;
  }
  .info-number {
    position: absolute;
    top: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 80px;
    width: 80px;
    border-radius: 50%;
    background-color: var(--site-burgundy);
  }
  .info-block:nth-child(odd) .info-number {
    left: 0;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  .info-block:nth-child(even) .info-number {
    right: 0;
    -webkit-transform: translate(50%, -50%);
    -ms-transform: translate(50%, -50%);
    transform: translate(50%, -50%);
  }
  .info-number span {
    color: #fff;
    font-size: calc(1.5rem + 1vw);
  }
  @media (max-width: 1200px) {
      .info-grid-stairlift-img {
          width: 100%;
          height: auto;
      }
  }
  @media screen and (max-width: 1000px) {
    .info-block-container {
      width: 100%;
      background-color: transparent;
    }
    .info-block {
      margin: 0 auto;
      width: 92.5%;
      padding: 15px 25px 30px;
      column-gap: 15px;
      row-gap: 0;
      border-radius: 20px;
    }
    .info-block::before {
      content: "";
      z-index: -1;
      position: absolute;
      width: 1px;
      height: 100%;
      background: var(--site-burgundy);
      left: 50px;
      transition: 500ms background linear;
    }
    .info-block:nth-of-type(1)::before {
      height: 50%;
      bottom: 0;
    }
    .info-block:nth-of-type(5)::before {
      height: 50%;
      top: 0;
    }
    /*Active State*/
    .info-block.active {
      background: var(--light-light-gray);
    }
    .info-block.active::before {
      background: transparent;
    }
    .info-block.active .info-number {
      background-color: var(--site-green);
    }
    .info-block.active .info-block-title {
      color: var(--site-burgundy);
    }
  
    .info-block:not(:last-child) {
      border-bottom: none;
    }
    .info-block:nth-child(odd),
    .info-block:nth-child(even) {
      grid-template-columns: auto 1fr;
      border-left: none;
      border-right: none;
    }
    .info-block:nth-child(even) .info-number {
      right: inherit;
      left: 0;
    }
    .info-number {
      -webkit-transform: translate(0, 0) !important;
      -ms-transform: translate(0, 0) !important;
      transform: translate(0, 0) !important;
      position: unset;
      height: 50px;
      width: 50px;
      grid-column: 1;
      grid-row: 1;
      margin: auto 0;
      -webkit-transition: background 0.15s ease-in-out;
      -o-transition: background 0.15s ease-in-out;
      transition: background 0.15s ease-in-out;
    }
    .info-number span {
      font-size: 28px;
    }
    .info-img {
        display: none;
    }
    @media (min-width: 601px) {
      .info-img-collapsed {
        display: block;
        margin: 0 auto;
        padding: 30px 0;
      }
    }
    .info-block-title {
      grid-column: 2;
      grid-row: 1;
      align-self: center;
      padding: 1rem 0;
    }
    .info-block-content {
      padding: 10px 0 0;
      grid-column: 1 / span 2;
      grid-row: 2;
    }
    #info-form {
      padding: 0 0 30px;
    }
    .info-grid-stairlift-img {
      margin: 0 auto;
    }
    .info-img:not(:first-child) {
      margin: 0;
    }
    .info-img-stairlift-names {
      display: none;
    }
  }
  @media screen and (max-width: 600px) {
    .info-block-container {
      margin: 0;
    }
    .info-block {
      width: 100vw;
      padding: 15px 15px 25px;
      column-gap: 10px;
      border-radius: 10px;
    }
    .info-block::before {
      left: 37px;
    }
    .info-number {
      width: 45px;
      height: 45px;
    }
    .info-number span {
      font-size: 26px;
    }
    .info-block-title {
      padding: 0;
    }
    .info-block-content {
      padding: 20px 0 0 10px;
    }
  }
  @media (max-width: 475px) {
    .info-block-title {
      font-size: 18px;
    }
  }
  
  /* Innovation Section */
  .home-innovation-section {
    max-width: 1920px;
    width: 97.5vw;
    margin: 0 0 0 auto;
    display: flex;
    gap: 30px;
    padding: clamp(130px, calc(8.125rem + ((1vw - 11px) * 17.5)), 200px) 0;
  }
  @media (min-width: 1600px) {
    .home-innovation-section {
      width: min(calc(100vw - ((100vw - 1200px) / 2)), 95vw);
    }
  }
  /* Home Innovation Checkmark Content */
  .home-innovation-content {
    width: 53vw;
    max-width: 750px;
    display: flex;
    flex-direction: column;
    gap: clamp(30px, calc(1.875rem + ((1vw - 11px) * 4)), 50px);
  }
  .home-innovation-checkmark-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin: 0 0 0 40px;
  }
  .home-innovation-checkmark--li {
    position: relative;
  }
  .home-innovation-checkmark--li::before {
    content: "";
    position: absolute;
    left: -35px;
    top: 0;
    width: 25px;
    height: 25px;
    background-image: url("/assets/imgs/check-icon.svg");
    background-size: contain;
    background-repeat: no-repeat;
  }
  /* Home Innovation Carousel */
  .home-innovation-carousel-container {
    overflow: hidden;
    position: relative;
    width: 60vw;
    height: fit-content;
  }
  .home-innovation-carousel-slick-js {
    width: min(90vw, 1330px);
  }
  .home-innovation-carousel-slick-js .slick-list {
    margin-right: -20px;
  }
  .home-innovation-carousel-slick-js .slick-slide {
    margin-right: 20px;
    opacity: .5;
    transition: opacity 500ms ease-in-out;
  }
  .home-innovation-carousel-slick-js .slick-current.slick-slide {
    opacity: 1;
  }
  .home-innovation-carousel-img {
    width: 45vw;
    max-width: 665px;
    height: 530px;
    height: clamp(500px, calc(31.25rem + ((1vw - 12px) * 10)), 530px);
    object-fit: cover;
  }
  .home-innovation-carousel-slick-js .slick-prev {
    display: none !important;
  }
  .home-innovation-carousel-slick-next {
    background: none;
    border: none;
    position: absolute;
    top: 50%;
    left: min(calc(50vw + 20px), 685px);
    transform: translateY(-50%);
    z-index: 3;
  }
  .home-innovation-carousel-slick-next-svg {
    width: 50px;
    height: 50px;
  }
  @media (max-width: 1450px) and (min-width: 1251px) {
    .home-innovation-carousel-slick-next {
      left: initial;
      right: 10px;
    }
  }
  @media (max-width: 1250px) {
    .home-innovation-section {
      width: 95vw;
      flex-direction: column;
      gap: 40px;
    }
    .home-innovation-content {
      width: 90vw;
      max-width: none;
    }
    .home-innovation-content-title {
      max-width: 750px;
    }
    .home-innovation-carousel-container {
      width: 95vw;
    }
    .home-innovation-carousel-slick-js {
      width: min(170vw, 1540px);
    }
    .home-innovation-carousel-img {
      width: 85vw;
      max-width: 770px;
    }
    .home-innovation-carousel-slick-next {
      left: min(87.5vw, 800px);
    }
  }
  @media (max-width: 800px) {
    @media (min-width: 550px) {
      .home-innovation-carousel-slick-js {
        width: 165vw;
      }
      .home-innovation-carousel-img {
        height: 425px;
        width: 82.5vw;
      }
    }
    .home-innovation-carousel-slick-next {
      left: initial;
      right: 2.5vw;
    }
  }
  @media (max-width: 549px) {
    .home-innovation-section {
      gap: 30px;
    }
    .home-innovation-content,
    .home-innovation-checkmark-container {
      gap: 25px;
    }
    .home-innovation-checkmark-container {
      margin: 0 0 0 30px;
    }
    .home-innovation-checkmark--li::before {
      width: 20px;
      height: 20px;
      left: -30px;
      top: 2px;
    }
    .home-innovation-carousel-slick-js .slick-list {
      margin-right: -20px;
    }
    .home-innovation-carousel-slick-js .slick-slide {
      margin-right: 20px;
    }
    .home-innovation-carousel-slick-next {
      display: none !important;
    }
    .home-innovation-carousel-img {
      min-height: auto;
      height: 225px;
      height: clamp(225px, calc(14.0625rem + ((1vw - 4px) * 33.3333)), 275px);
    }
  }
  
  /*Contact Button Section*/
  .home-contact-btn-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 4rem;
  }
  .home-contact-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 2rem;
    padding: 2.5rem 0;
    min-width: 200px;
    width: min(25vw, 300px);
    background-color: var(--light-light-gray);
  }
  .home-contact-btn-icon {
    display: block;
    min-width: 60px;
    width: 30%;
    max-width: 75px;
  }
  .home-contact-btn .main-btn {
    min-width: 125px;
    width: 80%;
    max-width: 200px;
  }
  @media screen and (max-width: 1000px) {
    .home-contact-btn {
      width: min(80vw, 275px);
    }
  }
  
  /*COVID PAGE*/
  @media screen and (max-width: 475px) {
    .mobile-only-accordion-container {
      width: 100vw;
    }
    .mobile-only-accordion-header {
      cursor: pointer;
    }
    .mobile-only-accordion-header,
    .mobile-only-accordion-content > * {
      padding: 1rem 7.5vw;
    }
    .mobile-only-accordion-section .corner-arrow {
      -webkit-transition: 0.25s all linear;
      -o-transition: 0.25s all linear;
      transition: 0.25s all linear;
    }
    .mobile-only-accordion-section.expand .corner-arrow {
      -webkit-transform: translateY(0.25rem) rotate(135deg);
      -ms-transform: translateY(0.25rem) rotate(135deg);
      transform: translateY(0.25rem) rotate(135deg);
    }
  }
  
  .covid-page-banner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background-color: var(--site-burgundy);
    background: -webkit-gradient(
      linear,
      right top,
      left top,
      from(#8f023d),
      to(#6d1937)
    );
    background: -o-linear-gradient(right, #8f023d 0%, #6d1937 100%);
    background: linear-gradient(270deg, #8f023d 0%, #6d1937 100%);
    min-height: 135px;
    height: 25vw;
    max-height: 350px;
  }
  .covid-header-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: auto;
    gap: 5rem;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  .covid-header-container h1 {
    line-height: 1.1;
  }
  .covid-header-icon {
    display: block;
    width: 20vw;
    max-width: 200px;
    max-height: 200px;
    height: auto;
  }
  
  @media screen and (max-width: 1279px) {
    .covid-page-banner {
      height: auto;
    }
    .covid-header-container {
      padding: 20px 10px;
    }
    .covid-header-icon {
      width: clamp(100px, 15vw, 130px);
    }
  }
  @media screen and (max-width: 650px) {
    .covid-header-container {
      gap: 15px;
    }
    .covid-header-icon {
      width: 80px;
    }
  }
  @media (max-width: 399px) {
    .covid-header-title-main-page {
      font-size: clamp(26px, calc(1.625rem + ((1vw - 3.5px) * 8.1633)), 30px);
    }
    .covid-header-icon {
      width: 65px;
    }
  }
  
  /*Intro Content*/
  .covid-main-virtual-call-container {
    max-width: 1920px;
    width: 100vw;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
    gap: 100px;
  }
  .covid-main-virtual-call-content {
    flex: 1;
    max-width: 804px;
    align-self: center;
    padding: 3rem 0;
    margin: 0 0 0 min(7.5vw, 120px);
  }
  .covid-main-virtual-call-content-title {
    line-height: 1;
  }
  .covid-main-virtual-call-img-container {
    width: clamp(520px, calc(32.5rem + ((1vw - 14.4px) * 60)), 770px);
  }
  .covid-main-virtual-call-img {
    display: block;
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
  
  @media screen and (max-width: 1279px) {
    .covid-main-virtual-call-container {
      flex-direction: column;
      gap: 0;
    }
    .covid-main-virtual-call-img-container {
      width: 100%;
      order: -1;
    }
    .covid-main-virtual-call-img {
      max-height: min(550px, 45vw);
      object-position: 0 40%;
    }
    .covid-main-virtual-call-content {
      width: 80vw;
      margin: 0 auto;
    }
  }
  @media screen and (max-width: 475px) {
    .covid-main-virtual-call-content {
      width: 85vw;
      padding: 2rem 0 3rem;
    }
  }
  
  .covid-measurements-link-section {
    padding: clamp(100px, calc(6.25rem + ((1vw - 7.68px) * 4.3403)), 150px) 0
      clamp(175px, calc(10.9375rem + ((1vw - 7.68px) * 4.3403)), 225px);
    gap: 50px;
  }
  .covid-measurements-link-btn-container {
    display: flex;
    justify-content: space-evenly;
    gap: clamp(30px, calc(1.875rem + ((1vw - 8px) * 40)), 50px);
  }
  .sub-covid-link-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 50px;
    text-align: center;
    background: var(--light-light-gray);
    height: 375px;
    width: 425px;
  }
  .sub-covid-link-btn svg {
    width: 25vw;
    max-width: 135px;
    height: 25vw;
    max-height: 135px;
  }
  
  @media screen and (max-width: 1100px) {
    .sub-covid-link-btn {
      gap: 25px;
      height: 275px;
      width: 86vw;
    }
    @media (min-width: 400px) {
      .sub-covid-link-btn {
        max-width: 330px;
      }
    }
    .sub-covid-link-btn svg {
      width: 100px;
      height: 100px;
    }
    .sub-covid-link-btn-text {
      width: 90%;
    }
    @media (min-width: 501px) {
      .sub-covid-link-btn-text {
        font-size: 20px;
      }
    }
  }
  @media (max-width: 767px) {
    .covid-measurements-link-btn-container {
      flex-direction: column;
      align-items: center;
    }
  }
  @media screen and (max-width: 475px) {
    .covid-measurements-link-section {
      gap: 25px;
      padding: 60px 0 80px;
    }
    .sub-covid-link-btn {
      padding: 2rem 1rem;
    }
  }
  
  @media screen and (min-width: 476px) {
    .mobile-only-accordion-section.covid-page {
      background-color: var(--light-light-gray);
    }
  }
  @media screen and (max-width: 850px) {
    .covid-header-container h1 {
      text-align: center;
    }
  }
  @media screen and (max-width: 475px) {
    .mobile-only-accordion-section.covid-page .mobile-only-accordion-content {
      background-color: var(--light-light-gray);
      padding: 2rem 0;
    }
  }
  
  /*Covid Sub Pages*/
  @media screen and (max-width: 750px) {
    .covid-header-icon.sub {
      display: none;
    }
  }
  /*Person Measure*/
  @media screen and (min-width: 560px) {
    .person-measure-banner-text {
      display: -ms-grid;
      display: grid;
    }
  }
  .covid-measurements-content {
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
  }
  .covid-measurements-img {
    -ms-grid-column-align: center;
    justify-self: center;
  }
  @media screen and (max-width: 1000px) {
    .covid-measurements-container {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
    }
    .covid-measurements-content {
      -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
      order: 2;
      -ms-flex-item-align: auto;
      -ms-grid-row-align: auto;
      align-self: auto;
      padding: 0 0 1rem 0;
    }
    .covid-measurements-img {
      min-width: 200px;
      width: 100%;
      max-width: 435px;
    }
  }
  @media screen and (max-width: 490px) and (min-width: 476px) {
    #person-measure-banner {
      height: auto;
      max-height: none;
    }
  }
  @media screen and (max-width: 475px) {
    #person-measure-banner .covid-header-container {
      width: 96vw;
    }
  }
  
  /*Reviews Hidden Page*/
  .hidden-reviews-hero {
    max-width: 1500px;
  }
  .hidden-reviews-hero-title {
    line-height: 1.2;
  }
  .hidden-reviews-main-img {
    max-width: 600px;
  }
  .hidden-review-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 5rem;
    padding: 3rem;
    width: 50%;
    max-width: 420px;
  }
  /*Review Components*/
  .google-review-img {
    max-width: 240px;
    width: 100%;
  }
  .trustpilot-review-img {
    max-width: 290px;
    width: 100%;
  }
  /*Review Buttons*/
  .hidden-review-card .main-btn {
    min-width: 250px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  .google-review-btn {
    color: #4c8cee;
  }
  .trustpilot-review-btn {
    color: #1bb57c;
  }
  /*Review Quotes*/
  .quote-card {
    display: -ms-grid;
    display: grid;
  }
  .quote-card.main {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
  }
  .quote-card-small-container {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    padding-bottom: 10rem;
  }
  .quote-card.small {
    -ms-grid-rows: 1fr 5px auto;
    grid-template-rows: 1fr auto;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 3rem 1.5rem;
    min-height: 300px;
    max-width: 400px;
    gap: 5px;
  }
  .quote-card.small blockquote {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
  }
  
  @media screen and (max-width: 1000px) {
    .hidden-reviews-hero {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      text-align: center;
    }
    .hidden-reviews-main-img {
      padding: 0 0 1rem 0;
    }
    .hidden-reviews-hero-title.sub-header {
      -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
      order: 3;
    }
    .hidden-review-card-container {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
    }
    .hidden-review-card {
      width: 100%;
    }
    .quote-card-small-container {
      -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
    }
  }
  @media screen and (max-width: 500px) {
    .hidden-reviews-hero {
      gap: 1rem;
    }
    .hidden-review-card {
      padding: 1.5rem 1rem 2rem 1rem;
      gap: 2rem;
    }
    .hidden-review-card-img {
      padding: 0 0 2rem;
    }
    .hidden-review-card .main-btn {
      min-width: 200px;
    }
    .hidden-review-quote-text {
      font-size: 16px;
    }
    .quote-card.small {
      min-height: 200px;
    }
    .quote-card-small-container {
      padding-bottom: 3rem;
    }
  }
  
  /*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
  /*CAREERS PAGE*/
  .careers-main-banner-container {
    max-width: 1920px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: min(5.5vw, 100px);
    align-items: center;
    justify-items: flex-end;
  }
  .careers-main-banner-content {
    margin: 0 -50px 0 min(5vw, 96px);
  }
  .careers-main-banner-content * {
    line-height: 1.2;
  }
  .careers-main-banner-img {
    display: block;
    height: auto;
    width: min(50vw, 960px);
    margin: 0 0 0 min(-5vw, -96px);
  }
  
  @media screen and (max-width: 1200px) {
    .careers-main-banner-container {
      gap: 0;
    }
    .careers-main-banner-content {
      justify-self: flex-start;
    }
  }
  
  @media screen and (max-width: 800px) {
    .careers-main-banner-content {
      margin: 0 0 0 4vw;
    }
    .careers-main-banner-img {
      margin: 0 0 0 -12vw;
    }
  }
  
  @media screen and (max-width: 750px) {
    .careers-main-banner-content {
      text-align: left;
    }
    .careers-main-banner-img {
      width: max(45vw, 180px);
      margin: 0 0 0 -7vw;
    }
  }
  
  .careers-icon-grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1rem 1fr 1rem 1fr 1rem 1fr 1rem 1fr;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
  }
  .careers-icon-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 1rem;
  }
  .careers-icon {
    min-height: 75px;
    height: 6vw;
    max-height: 100px;
    width: auto;
  }
  .careers-card-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: clamp(25px, calc(1.5625rem + ((1vw - 5px) * 15)), 40px);
    justify-content: center;
    width: fit-content;
    margin: 0 auto;
  }
  .careers-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 2rem;
    background: #ffffff;
    text-align: center;
    border-radius: 10px;
    max-width: 500px;
    min-height: 200px;
  }
  .careers-card-title {
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  .careers-card p {
    text-align: center;
  }
  
  @media screen and (max-width: 1024px) and (min-width: 601px) {
    .careers-icon-grid {
      -ms-grid-columns: 1fr 1rem 1fr 1rem 1fr 1rem 1fr 1rem 1fr 1rem 1fr;
      grid-template-columns: repeat(6, 1fr);
      row-gap: 4rem;
      -webkit-column-gap: 1rem;
      -moz-column-gap: 1rem;
      column-gap: 1rem;
    }
    .careers-icon-group:nth-of-type(1) {
      -ms-grid-column: 2;
      -ms-grid-column-span: 2;
      grid-column: 2 / span 2;
    }
    .careers-icon-group:nth-of-type(2) {
      -ms-grid-column: 4;
      -ms-grid-column-span: 2;
      grid-column: 4 / span 2;
    }
    .careers-icon-group.bottom {
      grid-column: auto / span 2;
    }
  }
  @media (max-width: 849px) {
    .careers-card-layout {
      display: flex;
      flex-direction: column;
    }
  }
  @media screen and (max-width: 600px) {
    .careers-icon-grid {
      -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
      row-gap: 3rem;
    }
  }
  @media screen and (max-width: 500px) {
    .careers-icon-group {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -ms-flex-direction: row;
      flex-direction: row;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      gap: 15px;
    }
    .careers-icon {
      min-height: inherit;
      height: 55px;
    }
    .careers-icon-group p {
      text-align: left;
    }
    .careers-card {
      padding: 2rem 1rem;
    }
  }
  
  /*ACORN CLUB PAGE*/
  .max-acorn-club {
    max-width: 1300px;
  }
  /*Intro Section*/
  .acorn-club-banner {
    display: -ms-grid;
    display: grid;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 40px 0;
  }
  .acorn-club-banner-heading {
    line-height: 1;
    font-size: 44px;
  }
  .acorn-club-banner-subheading {
    font-size: 18px;
  }
  .ac-club-white-logo {
    width: 100px;
    margin: 0 0 0 10px;
    -ms-grid-column: 2;
    grid-column: 2;
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    grid-row: 1 / span 2;
    -ms-grid-row-align: center;
    align-self: center;
  }
  .acorn-club-btn {
      min-width: 250px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 30px;
      min-height: 60px;
      background-color: var(--site-green);
      background-image: linear-gradient(180deg, #47A447 0%, #87C487 100%);
      border-radius: 60px;
      -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.15);
        box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.15);
      transform: translateY(00000.1px);
  }
  /*Start with Acorn Club Cards*/
  .acorn-club-card-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }
  /*Cards*/
  .acorn-club-card {
    display: grid;
    grid-template-rows: auto 1fr;
  }
  .acorn-club-card-header {
    background: var(--site-burgundy);
    position: relative;
    min-height: 62px;
    text-align: center;
  }
  .acorn-club-card-header-icon,
  .acorn-club-card-header-title {
    position: absolute;
    top: 50%;
  }
  .acorn-club-card-header-icon {
    left: 20px;
    display: block;
    width: auto;
    height: 40px;
    transform: translateY(-50%);
  }
  .acorn-club-card-header-title {
    width: fit-content;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .acorn-club-card-content {
    background: #ffffff;
    padding: 20px 4%;
    text-align: center;
  }
  
  /*Acorn Club Benefits*/
  .acorn-club-benefit-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 45px;
  }
  .acorn-club-benefit-intro {
    grid-column: 1 / span 2;
  }
  /*List*/
  .acorn-club-benefit-list-container {
    display: flex;
    flex-direction: column;
    gap: 45px;
  }
  .acorn-club-benefit-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  .acorn-club-benefit-header {
    display: flex;
    align-items: flex-end;
    gap: 10px;
  }
  .acorn-club-benefit-header-icon {
    display: block;
    width: 40px;
    height: 40px;
  }
  .acorn-club-benefit-header h5 {
    color: var(--dark-burgundy);
  }
  .acorn-club-benefit-phone {
    display: block;
    width: 350px;
    height: auto;
    justify-self: center;
    align-self: center;
  }
  
  @media screen and (max-width: 1200px) {
    .acorn-club-benefit-section {
      grid-template-columns: 1fr auto;
    }
    .acorn-club-benefit-list-container {
      gap: 25px;
    }
  }
  
  @media screen and (max-width: 1200px) and (min-width: 1100px) {
    /*Get Started Acorn Club Cards*/
    .acorn-club-card-header-title {
      left: 65px;
      transform: translateY(-50%);
    }
  }
  @media screen and (max-width: 1100px) {
    /*Start Section*/
    .acorn-club-start-section {
      width: 90%;
    }
    .acorn-club-card-container {
      grid-template-columns: auto;
      justify-content: center;
    }
    .acorn-club-card {
      max-width: 500px;
    }
    /*Benefits Section*/
    .acorn-club-benefit-phone {
      width: 380px;
    }
  }
  
  @media screen and (max-width: 999px) {
    .acorn-club-benefit-section {
      grid-template-columns: 1fr;
      gap: 30px;
    }
    .acorn-club-benefit-intro {
      grid-column: 1;
    }
    .acorn-club-benefit-phone {
      grid-row: 2;
      width: min(62vw, 270px);
    }
  }
  @media screen and (max-width: 540px) {
    .acorn-club-banner {
      padding: 30px 0;
    }
    .acorn-club-banner-heading {
      -ms-flex-item-align: end;
      align-self: flex-end;
    }
    .acorn-club-banner-subheading {
      font-size: 16px;
      -ms-grid-column: 1;
      -ms-grid-column-span: 2;
      grid-column: 1 / span 2;
    }
    .ac-club-white-logo {
      width: 60px;
      margin: 0 auto;
      -ms-grid-row: 1;
      grid-row: 1;
    }
  }
  @media screen and (max-width: 500px) {
    /*Start Section*/
    .acorn-club-start-section {
      width: 92%;
    }
    .acorn-club-start-intro {
      padding: 0 1.5vw;
    }
    /*Acorn Club Cards*/
    .acorn-club-card-header {
      min-height: 50px;
    }
    .acorn-club-card-header-icon {
      height: 35px;
    }
  }
  @media screen and (max-width: 350px) {
    .acorn-club-start-intro {
      padding: 0;
    }
    .acorn-club-card-header-icon {
      height: 30px;
      left: 10px;
    }
  }
  
  /*Request Offer Page*/
  .request-offer-header {
    max-width: 1050px;
  }
  @media (min-width: 476px) {
    .request-offer-header {
      width: 91%;
    }
  }
  /*Request Offer Form Section*/
  .request-offer-form-container {
    padding: 115px 0 200px;
  }
  .request-offer-form-graphic {
    display: block;
    width: 165px;
    height: auto;
    margin: 0 auto;
  }
  @media screen and (max-width: 500px) {
    .request-offer-form-container {
      padding: 65px 0 100px;
    }
    .request-offer-form-graphic {
      width: 150px;
    }
  }
  
  /*Request Offer Main Bottom Content */
  .request-offer-main-container {
    max-width: 1920px;
    width: 100vw;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
    gap: clamp(25px, calc(1.5625rem + ((1vw - 10.24px) * 23.4375)), 160px);
  }
  .request-offer-main-content {
    flex: 1;
    max-width: 860px;
    align-self: center;
    padding: clamp(25px, calc(1.5625rem + ((1vw - 10.24px) * 3.4722)), 45px) 0
      clamp(85px, calc(5.3125rem + ((1vw - 10.24px) * 4.3403)), 110px);
    margin: 0 0 0 min(5vw, 120px);
  }
  .request-offer-main-contact-container {
    max-width: 570px;
  }
  
  @media screen and (min-width: 1001px) {
    .request-offer-main-img-container {
      width: clamp(445px, calc(27.8125rem + ((1vw - 10.24px) * 38.1944)), 665px);
      background-image: url("/assets/imgs/general/request-offer/request-offer-bottom-img.jpg");
      background-size: cover;
      background-repeat: no-repeat;
      background-position: 86% 65%;
    }
  }
  
  @media screen and (max-width: 1000px) {
    .request-offer-main-container {
      flex-direction: column;
      gap: 0;
    }
    .request-offer-main-img-container {
      order: -1;
      width: 100vw;
      height: min(55vw, 550px);
    }
    .request-offer-main-img {
      display: block;
      height: 100%;
      width: 100%;
      object-fit: cover;
      object-position: 50% 45%;
    }
    .request-offer-main-content {
      padding: 25px 0 110px;
      margin: 0 auto;
      width: 90vw;
    }
  }
  @media screen and (max-width: 710px) {
    .request-offer-form-content-img-container {
      flex-direction: column;
    }
  }
  @media screen and (max-width: 550px) {
    .request-offer-main-img-container {
      height: 106.6vw;
    }
    .request-offer-main-img {
      object-position: 50% 70%;
    }
  }
  
  /*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
  /*STAIRLIFT MAIN PAGE*/
  /*Stairlift Main Header*/
  .stairlift-main-banner-section {
    padding: 0 0 100px;
  }
  .stairlift-main-banner-container {
    max-width: 1920px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: min(4vw, 100px);
    align-items: center;
    justify-items: flex-end;
  }
  .stairlift-main-banner-content {
    margin: 0 min(5vw, 96px);
    display: grid;
    justify-content: center;
    gap: 10px;
    text-align: center;
  }
  .stairlift-main-banner-content * {
    line-height: 1.2;
  }
  .stairlift-main-banner-img {
    display: block;
    height: auto;
    width: min(50vw, 960px);
    margin: 0 0 0 min(-6vw, -96px);
  }
  
  @media screen and (max-width: 1675px) {
    .stairlift-main-banner-container {
      gap: 0;
    }
    .stairlift-main-banner-content {
      justify-self: flex-start;
    }
  }
  
  @media screen and (min-width: 801px) and (max-width: 860px) {
      .stairlift-main-banner-content {
          padding-right: 5vmin!important;
      }
  }
  
  /*@media screen and (max-width: 800px) {*/
  @media screen and (max-width: 800px) {
    .stairlift-main-banner-content {
      margin: 0 2.5vw;
    }
    .stairlift-main-banner-img {
      margin: 0 0 0 -7vw;
    }
  }
  
  @media screen and (max-width: 750px) {
    .stairlift-main-banner-content-subtitle {
      border: 0 !important;
      clip: rect(1px, 1px, 1px, 1px) !important;
      -webkit-clip-path: inset(50%) !important;
      clip-path: inset(50%) !important;
      height: 1px !important;
      overflow: hidden !important;
      margin: -1px !important;
      padding: 0 !important;
      position: absolute !important;
      width: 1px !important;
      white-space: nowrap !important;
    }
    .stairlift-main-banner-content {
      text-align: left;
    }
    .stairlift-main-banner-img {
      width: max(45vw, 180px);
      margin: 0 0 0 -7vw;
    }
  }
  @media screen and (max-width: 500px) {
    .stairlift-main-banner-section {
      padding: 0 0 60px;
    }
  }
  @media (max-width: 350px) {
    .stairlift-main-banner-title {
      font-size: 26px;
    }
  }
  
  /*Stairlift Main Cards*/
  .stairlift-main-card-display {
    max-width: 1640px;
    width: 95vw;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
  }
  .stairlift-main-card-item {
    display: flex;
    align-items: center;
  }
  .stairlift-main-card-img-container {
    display: grid;
    place-items: center;
    height: 450px;
    width: 325px;
    border-radius: 5px 0px 0px 5px;
    z-index: -1;
  }
  .stairlift-main-card-img-element {
    height: 385px;
    width: auto;
  }
  .stairlift-main-card-content {
    display: grid;
    grid-template-rows: auto auto 1fr;
    padding: 30px 20px 40px 30px;
    width: 430px;
    min-height: 575px;
    height: 100%;
  }
  .stairlift-main-card-content-header {
    padding: 0 0 25px;
  }
  .stairlift-main-card-content-header * {
    line-height: 1.2;
  }
  @media (min-width: 476px) {
    .stairlift-main-card-cotnent-title-sm {
      font-size: clamp(26px, calc(1.625rem + ((1vw - 10px) * 0.9091)), 30px);
    }
    .stairlift-main-card-content-title-lg {
      font-size: clamp(28px, calc(1.5rem + 0.9vw), 36px);
    }
  }
  .stairlift-main-card-content--features-title {
    padding: 0 0 15px;
  }
  .stairlift-main-card-content--features {
    display: flex;
    flex-direction: column;
    padding: 35px 0 0 0;
  }
  .stairlift-main-card-content--features_ul {
    display: grid;
    height: 100%;
    gap: 25px;
    margin: 0 0 0 30px;
  }
  .stairlift-main-card-content--features_li {
    position: relative;
  }
  .stairlift-main-card-content--features_li::before {
    content: "";
    position: absolute;
    top: 3px;
    left: -30px;
    width: 20px;
    height: 20px;
    background-image: url(/assets/imgs/check-icon.svg);
    background-size: contain;
    background-repeat: no-repeat;
  }
  .stairlift-main-card-link {
    border: 2px solid var(--site-burgundy);
    height: fit-content;
  }
  @media (max-width: 1650px) and (min-width: 1450px) {
    .stairlift-main-card-img-container {
      width: clamp(280px, calc(17.5rem + ((1vw - 15.5px) * 45)), 325px);
    }
    .stairlift-main-card-content {
      width: clamp(390px, calc(24.375rem + ((1vw - 15px) * 80)), 430px);
    }
  }
  @media (max-width: 1449px) {
    .stairlift-main-card-display {
      flex-direction: column;
      align-items: center;
      gap: 60px;
    }
  }
  @media (max-width: 825px) and (min-width: 761px) {
    .stairlift-main-card-img-container {
      width: 38vw;
    }
  }
  @media (max-width: 760px) {
    .stairlift-main-card-item {
      flex-direction: column;
    }
    .stairlift-main-card-img-container {
      width: 275px;
      height: 350px;
      border-radius: 5px 5px 0px 0px;
    }
    .stairlift-main-card-img-element {
      height: 325px;
    }
    .stairlift-main-card-content {
      min-height: auto;
    }
    .stairlift-main-card-content-header {
      text-align: center;
      padding: 0 0 20px;
    }
    .stairlift-main-card-link {
      margin: 0 auto;
    }
    .stairlift-main-card-content--features_ul {
      display: flex;
      flex-direction: column;
    }
  }
  @media (max-width: 475px) {
    .stairlift-main-card-img-container {
      width: 250px;
      height: 270px;
    }
    .stairlift-main-card-img-element {
      height: 250px;
    }
    .stairlift-main-card-content {
      width: 95vw;
      max-width: 340px;
      padding: 16px 5px 25px 16px;
      min-height: 455px;
    }
    .stairlift-main-card-item:nth-of-type(2)
      .stairlift-main-card-content--features_ul {
      gap: 20px;
    }
    .stairlift-main-card-content--features_ul {
      margin: 0 0 0 25px;
    }
    .stairlift-main-card-content--features_li::before {
      height: 15px;
      width: 15px;
      left: -25px;
    }
  }
  
  /*Stairlift Main Form*/
  .stairlift-main-form-container {
    padding: 165px 0 200px;
  }
  @media screen and (max-width: 800px) {
    .stairlift-main-form-container {
      padding: 150px 0;
    }
  }
  @media screen and (max-width: 500px) {
    .stairlift-main-form-container {
      padding: 100px 0;
    }
  }
  
  /*Stairlift Offset Grid*/
  .stairlift-main-offset-grid-mc-link {
    font-size: 22px;
  }
  .stairlift-main-offset-grid-outdoor-img {
    object-position: 60% 100%;
  }
  
  @media screen and (max-width: 1300px) {
    .stairlift-main-offset-grid-mc-link {
      font-size: 20px;
    }
    @media (min-width: 950px) {
      .stairlift-main-offset-grid .offset-full-grid {
        grid-template-rows: auto auto;
      }
      .stairlift-main-offset-grid .offset-full-grid-row {
        min-height: 420px;
      }
      .stairlift-main-offset-grid .offset-full-grid-row.top {
        grid-template-columns: 350px auto;
      }
      .stairlift-main-offset-grid .offset-full-grid-row.bottom {
        grid-template-columns: auto 350px;
      }
      .stairlift-main-offset-grid .offset-full-grid-content-container {
        width: 90%;
        max-width: 650px;
      }
    }
  }
  @media (max-width: 949px) and (min-width: 700px) {
      .stairlift-main-offset-grid .offset-full-grid-img-container {
          height: 450px;
      }
  }
  @media screen and (max-width: 475px) {
    .stairlift-main-offset-grid-mc-link {
      font-size: 18px;
    }
    .stairlift-main-offset-grid-outdoor-img {
      object-position: 50% 30%;
    }
  }
  
  /*Stairlift Main FAQ and Guide Section*/
  .stairlift-main-bottom-section {
    max-width: 1385px;
    margin: 0 auto;
    padding: 250px 0;
    display: flex;
    justify-content: space-between;
    gap: 75px;
  }
  /*Stairlift Main FAQ*/
  .stairlift-main-faq-container {
    display: flex;
    flex-direction: column;
    gap: 50px;
    flex: 1;
  }
  .stairlift-main-faq-accordion-container {
    display: flex;
    flex-direction: column;
    gap: 35px;
    max-width: 640px;
  }
  /*Stairlift Main Guide Buttons*/
  .stairlift-main-guide-card-container {
    display: flex;
    flex-direction: column;
    gap: 50px;
  }
  .stairlift-main-guide-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 20px 0 25px;
    width: 500px;
    min-height: 295px;
    background: var(--light-light-gray);
  }
  .stairlift-main-guide-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
  }
  .stairlift-main-guide-card-header-title {
    line-height: 1.2;
  }
  .stairlift-main-guide-card-text {
    text-align: center;
    width: 90%;
    max-width: 415px;
  }
  .stairlift-main-guide-card .main-btn {
    margin: auto 0 0;
  }
  
  @media screen and (max-width: 1250px) {
    .stairlift-main-bottom-section {
      flex-direction: column;
      align-items: center;
      padding: 150px 0 200px;
      gap: 150px;
    }
  
    .stairlift-main-guide-card-container {
      order: -1;
    }
    @media (min-width: 950px) {
      .stairlift-main-guide-card-container {
        flex-direction: row;
      }
    }
    .stairlift-main-guide-card {
      width: 100%;
      max-width: 500px;
      margin: 0 auto;
    }
  }
  
  @media screen and (max-width: 475px) {
    .stairlift-main-bottom-section {
      padding: 120px 0 150px;
    }
    .stairlift-main-faq-accordion-container {
      gap: 20px;
    }
  }
  
  @media screen and (max-width: 370px) {
    .stairlift-main-guide-card-header {
      padding: 0 5%;
    }
    .stairlift-main-guide-card-svg {
      width: 40px;
      height: auto;
    }
  }
  
  /*INNER PAGES*/
  .stairlift-header-container {
    max-width: 1920px;
    width: 100vw;
    overflow-x: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 auto;
  }
  @-webkit-keyframes linear-wrap {
    0% {
      -webkit-transform: translateX(0%);
      transform: translateX(0%);
    }
    100% {
      -webkit-transform: translateX(-100%);
      transform: translateX(-100%);
    }
  }
  @keyframes linear-wrap {
    0% {
      -webkit-transform: translateX(0%);
      transform: translateX(0%);
    }
    100% {
      -webkit-transform: translateX(-100%);
      transform: translateX(-100%);
    }
  }
  .stairlift-header-carousel {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-animation: linear-wrap 45s linear infinite;
    animation: linear-wrap 45s linear infinite;
  }
  .stairlift-header-img {
    min-width: 150px;
    width: 25vw;
    max-width: 310px;
    -o-object-fit: cover;
    object-fit: cover;
    height: auto;
    min-height: 150px;
    margin: 0 0 0 1rem;
    transform: translate3d(0, 0, 0);
  }
  @media (max-width: 500px) {
    .stairlift-header-img {
      height: 150px;
    }
  }
  /*END OF ANIMATED IMAGES*/
  
  @media (min-width: 769px) {
    .inner-stairlift-hero {
      padding: 50px 0 100px;
    }
  }
  
  .stairlift-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 2rem;
  }
  @media (min-width: 1251px) {
    .stairlift-hero-grid {
      grid-template-rows: auto auto 1fr;
    }
  }
  .stairlift-hero-img {
    max-width: 380px;
  }
  .stairlift-hero-title h1 {
    line-height: 1;
  }
  .tech-layout {
    display: grid;
    grid-template-columns: 4fr 6fr;
    gap: 0 2rem;
  }
  @media screen and (max-width: 900px) {
    .tech-layout {
      grid-template-columns: 45fr 55fr;
    }
  }
  .inner-stairlift-container {
    max-width: 1350px;
  }
  @media (min-width: 1000px) {
    .inner-stairlift-container {
      width: 87vw;
    }
  }
  @media (min-width: 1101px) {
    .inner-stairlift-grid-container {
      grid-template-rows: auto auto 1fr;
    }
  }
  .inner-stairlift-gallery-slider {
    -ms-grid-column: 2;
    grid-column: 2;
    -ms-grid-row: 1;
    -ms-grid-row-span: 3;
    grid-row: 1 / span 3;
    justify-self: flex-end;
  }
  @media screen and (max-width: 1250px) and (min-width: 616px) {
    .stairlift-hero-grid {
      -ms-grid-columns: auto 1fr;
      grid-template-columns: auto 1fr;
    }
    .stairlift-hero-img {
      -ms-grid-row: 1;
      grid-row: 1;
      -ms-grid-column: 1;
      grid-column: 1;
      width: 25vw;
      max-width: 300px;
    }
    .stairlift-hero-title {
      -ms-grid-row: 1;
      grid-row: 1;
      -ms-grid-column: 2;
      grid-column: 2;
      margin: auto 0;
    }
    .stairlift-hero-content {
      grid-column: auto / span 2;
    }
  }
  
  @media screen and (max-width: 1100px) {
    .inner-stairlift-list-content {
      grid-column: 1 / -1;
      width: 100%;
    }
    @media (min-width: 925px) {
      .inner-stairlift-list-content .disc-list {
        grid-template-columns: repeat(3, auto);
      }
    }
    .inner-stairlift-list-content .disc-list {
      gap: 1rem 2rem;
    }
    .inner-stairlift-gallery-slider {
      grid-row: 1 / span 2;
    }
  }
  @media screen and (max-width: 1024px) and (min-width: 769px) {
    .inner-stairlift-gallery-slider {
      -ms-grid-row: 1;
      -ms-grid-row-span: 2;
      grid-row: 1 / span 2;
    }
    .inner-stairlift-list-content {
      -ms-grid-column: 1;
      -ms-grid-column-span: 2;
      grid-column: 1 / span 2;
    }
  }
  @media screen and (max-width: 925px) {
    .inner-stairlift-grid-container {
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .inner-stairlift-gallery-slider {
      order: -1;
    }
  }
  @media screen and (max-width: 850px) and (min-width: 769px) {
    .inner-stairlift-gallery-slider {
      -ms-grid-row: 1;
      grid-row: 1;
    }
    .inner-stairlift-foldable-content {
      -ms-grid-column: 1;
      -ms-grid-column-span: 2;
      grid-column: 1 / span 2;
    }
  }
  @media screen and (max-width: 768px) {
    .stairlift-hero-grid {
      gap: 20px 15px;
    }
    .stairlift-dimensions-accordion-img {
      max-width: 375px;
      width: 90%;
      align-self: center;
    }
  }
  @media screen and (max-width: 670px) {
    .inner-stairlift-list {
      display: flex;
      flex-direction: column;
    }
  }
  
  @media screen and (max-width: 615px) {
    .stairlift-hero-grid {
      grid-template-columns: 1fr;
    }
  }
  
  /*Table Styling*/
  .stairlift-table {
    border-spacing: 0;
    border-collapse: collapse;
    height: fit-content;
    max-width: 720px;
  }
  .stairlift-table,
  .stairlift-table-th,
  .stairlift-table-td {
    border: 1px solid #666666;
    padding: 9px 8px;
  }
  .stairlift-table-th {
    background-color: #eeeeee;
    color: var(--black);
    text-align: left;
    font-size: 18px;
  }
  .stairlift-table tbody tr:nth-of-type(even) {
    background-color: var(--light-light-gray);
  }
  .stairlift-table-td {
    font-size: 16px;
    vertical-align: top;
  }
  @media screen and (max-width: 600px) {
    .stairlift-table-th {
      font-size: 16px;
    }
    .stairlift-table-td-alpha {
      min-width: 35px;
    }
  }
  
  /*Gallery Layout*/
  .stairlift-gallery-container {
    position: relative;
    width: min(42vw, 650px);
    overflow: hidden;
    aspect-ratio: 650 / 670;
  }
  .stairlift-gallery-container .slick-slider {
  /*  touch-action: auto !important;*/
      user-select: all !important;
      -webkit-user-select: all !important;
      -moz-user-select: all !important;
      -ms-user-select: all !important;
      -webkit-touch-callout: all !important;
      -khtml-user-select: all !important;
  }
  .slick-js-inner-stairlift-slide {
    width: min(42vw, 650px);
    height: auto;
    max-height: 670px;
    aspect-ratio: 650 / 670;
  }
  .slick-js-inner-stairlift-img {
    object-fit: cover;
    width: 100%;
    height: auto;
    min-height: 100%;
  }
  @media (max-width: 900px) {
    .stairlift-gallery-container,
    .slick-js-inner-stairlift-slide {
      max-width: 550px;
      width: 90vw;
    }
  }
  
  .gallery-img {
    width: 100%;
    min-height: 100%;
    height: auto;
    -o-object-fit: cover;
    object-fit: cover;
  }
  .gallery-btn {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.7);
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    -webkit-transition: 0.3s all ease;
    -o-transition: 0.3s all ease;
    transition: 0.3s all ease;
    z-index: 5;
    cursor: pointer;
  }
  @media (hover: hover) and (pointer: fine) {
    .gallery-btn:hover {
      background-color: rgba(0, 0, 0, 0.4);
    }
  }
  .gallery-right.gallery-btn {
    right: 0;
  }
  .gallery-left-svg {
    transform: translateX(-15%);
  }
  .gallery-right-svg {
    transform: translateX(15%);
  }
  @media (max-width: 1200px) {
    .gallery-btn {
      width: 35px;
      height: 35px;
    }
    .gallery-left-svg,
    .gallery-right-svg {
      width: 12px;
      height: auto;
    }
  }
  
  .view-tech-details-btn {
    font-size: 22px;
    background-color: transparent;
    background-image: url("/assets/imgs/stairlift/view-tech-details-bg.svg");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    border: none;
    width: 360px;
    height: 48px;
    padding: 0 0 0 5%;
    margin-top: 35px;
  }
  
  .main.accordion-header,
  .multi-acc-header {
    cursor: pointer;
  }
  .accordion-container .corner-arrow,
  .multi-acc-container .corner-arrow {
    -webkit-transition: all linear 0.25s;
    -o-transition: all linear 0.25s;
    transition: all linear 0.25s;
  }
  .accordion-container .corner-arrow.down,
  .multi-acc-container .corner-arrow.down {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .accordion-container.expand .corner-arrow,
  .multi-acc-container.expand .corner-arrow {
    -webkit-transform: translate(0, 4px) rotate(135deg);
    -ms-transform: translate(0, 4px) rotate(135deg);
    transform: translate(0, 4px) rotate(135deg);
  }
  
  .small.multi-acc-header {
    padding: 5px 2rem;
    min-height: 70px;
  }
  .accordion-title,
  .faq-accordion-title {
    font-size: 20px;
  }
  
  /*Mini FAQs*/
  .mini-faq-container {
    max-width: 1160px;
    width: 90vw;
    margin: 0 auto;
    padding: 150px 0 200px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 30px;
  }
  .mini-faq-container.large {
      max-width: 1200px;
  }
  .mini-faq-intro {
    max-width: 470px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 15% 0 0 0;
  }
  .mini-faq-accordion-container {
    width: 100%;
    max-width: 560px;
    display: flex;
    flex-direction: column;
    gap: 35px;
    justify-self: flex-end;
  }
  .mini-faq-container.large .mini-faq-accordion-container {
    max-width: 640px;
  }
  
  /*With Gray Underline*/
  .multi-acc-header.underline {
    border-bottom: 1px solid var(--light-gray);
    padding: 25px 0 10px;
    transition: border-bottom 0.25s ease-in-out;
  }
  .multi-acc-container.expand .multi-acc-header.underline {
    border-bottom: 1px solid transparent;
  }
  
  @media screen and (max-width: 1000px) {
    .mini-faq-container {
      grid-template-columns: auto;
      justify-content: center;
      gap: 50px;
    }
    .mini-faq-intro {
      max-width: none;
      padding: 0;
      gap: 10px;
    }
    .mini-faq-accordion-container {
      justify-self: initial;
    }
  }
  @media screen and (max-width: 550px) {
    .mini-faq-container {
      padding: 100px 0 125px;
    }
    .mini-faq-accordion-container {
      gap: 25px;
    }
  }
  
  /*TABLET DISPLAY ACCORDIAN STYLING*/
  @media screen and (max-width: 768px) {
    .tb-btm-border {
      border-bottom: 1px solid var(--light-gray);
    }
  }
  /*Force Mobile Heading Text ot be Uniform*/
  @media screen and (max-width: 500px) {
    .small.multi-acc-header {
      padding: 5px 1rem;
    }
    .accordion-title,
    .mobile-only-accordion-title {
      font-size: 18px;
    }
    .faq-accordion-title {
      font-size: 16px;
    }
  }
  
  /*Stairlift Features*/
  .stairlift-features-section {
    display: flex;
    flex-direction: column;
    gap: clamp(45px, calc(2.8125rem + ((1vw - 5px) * 45)), 90px);
    padding: 40px 0 65px;
  }
  .stairlift-features-container {
    max-width: 1200px;
    width: 90vw;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
  
  .stairlift-features-item-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px clamp(50px, calc(3.125rem + ((1vw - 7.68px) * 19.5313)), 100px);
  }
  .stairlift-features-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 20px;
    align-items: center;
  }
  .stairlift-features-icon-container {
    width: clamp(65px, calc(4.0625rem + ((1vw - 7.68px) * 3.9063)), 75px);
    height: clamp(65px, calc(4.0625rem + ((1vw - 7.68px) * 3.9063)), 75px);
  }
  .stairlift-features-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  
  @media (max-width: 700px) {
    .stairlift-features-container {
      width: 87.5vw;
    }
    .stairlift-features-item-layout {
      grid-template-columns: 1fr;
    }
  }
  
  /*Buyers Guide Page*/
  /*Alternating Backgrounds*/
  @media screen and (min-width: 516px) {
    /*Every odd step & every even content gets llg background*/
    .buyers-guide-step:nth-of-type(odd),
    .buyers-guide-step:nth-of-type(even) .buyers-guide-step-content-container {
      background: var(--light-light-gray);
    }
    /*Every even step & every odd content gets white background*/
    .buyers-guide-step:nth-of-type(even),
    .buyers-guide-step:nth-of-type(odd) .buyers-guide-step-content-container {
      background: #ffffff;
    }
  }
  /*Round the corners of containers*/
  .buyers-guide-step-img-container {
    border-radius: 5px;
  }
  /*Element Step Styling*/
  .buyers-guide-step {
    display: -ms-grid;
    display: grid;
    place-items: center;
    padding: 50px 0;
    min-height: 500px;
  }
  
  /*Inner Containers*/
  .buyers-guide-step-inner-container {
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: 30px auto 30px;
    grid-template-rows: 30px auto 30px;
    width: min(90vw, 1320px);
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  /*Individual Element Grids*/
  @media screen and (min-width: 1101px) {
    /*1st + 3rd Grid*/
    .buyers-guide-step:nth-of-type(1) .buyers-guide-step-inner-container,
    .buyers-guide-step:nth-of-type(3) .buyers-guide-step-inner-container {
      -ms-grid-columns: 500fr 30px 850fr;
      grid-template-columns: 500fr 30px 850fr;
    }
    /*2nd + 4th*/
    .buyers-guide-step:nth-of-type(2) .buyers-guide-step-inner-container,
    .buyers-guide-step:nth-of-type(4) .buyers-guide-step-inner-container {
      -ms-grid-columns: 800fr 30px 540fr;
      grid-template-columns: 800fr 30px 540fr;
    }
    /*5th + 7th*/
    .buyers-guide-step:nth-of-type(5) .buyers-guide-step-inner-container,
    .buyers-guide-step:nth-of-type(7) .buyers-guide-step-inner-container {
      -ms-grid-columns: 440fr 30px 800fr;
      grid-template-columns: 440fr 30px 800fr;
    }
    /*6th*/
    .buyers-guide-step:nth-of-type(6) .buyers-guide-step-inner-container {
      -ms-grid-columns: 780fr 30px 540fr;
      grid-template-columns: 780fr 30px 540fr;
    }
    /*8th*/
    .buyers-guide-step:nth-of-type(8) .buyers-guide-step-inner-container {
      -ms-grid-columns: 840fr 30px 490fr;
      grid-template-columns: 840fr 30px 490fr;
    }
  }
  /*Large Laptop to Large Tablets*/
  @media screen and (max-width: 1100px) and (min-width: 900px) {
    .buyers-guide-step {
      padding: 60px 0;
    }
    .buyers-guide-step:nth-of-type(1) .buyers-guide-step-inner-container,
    .buyers-guide-step:nth-of-type(3) .buyers-guide-step-inner-container,
    .buyers-guide-step:nth-of-type(5) .buyers-guide-step-inner-container,
    .buyers-guide-step:nth-of-type(7) .buyers-guide-step-inner-container {
      -ms-grid-columns: 370fr 30px 500fr;
      grid-template-columns: 370fr 30px 500fr;
    }
    .buyers-guide-step:nth-of-type(2) .buyers-guide-step-inner-container,
    .buyers-guide-step:nth-of-type(4) .buyers-guide-step-inner-container {
      -ms-grid-columns: 500fr 30px 370fr;
      grid-template-columns: 500fr 30px 370fr;
    }
    .buyers-guide-step:nth-of-type(6) .buyers-guide-step-inner-container {
      -ms-grid-columns: 600fr 30px 300fr;
      grid-template-columns: 600fr 30px 300fr;
    }
  
    .buyers-guide-step:nth-of-type(8) .buyers-guide-step-inner-container {
      -ms-grid-columns: 620fr 30px 335fr;
      grid-template-columns: 620fr 30px 335fr;
    }
    /*Image Max Heights for 1 - 5*/
    .buyers-guide-step:nth-of-type(-n + 5) .buyers-guide-step-img-container {
      max-height: 475px;
    }
  }
  @media screen and (max-width: 1000px) and (min-width: 900px) {
    .buyers-guide-step-inner-container {
      width: 95vw;
    }
  }
  /*Large Tablets and Under*/
  @media screen and (max-width: 899px) and (min-width: 516px) {
    .buyers-guide-step {
      min-height: 600px;
    }
    .buyers-guide-step-inner-container {
      width: 85vw;
      -ms-grid-rows: auto;
      grid-template-rows: auto;
    }
    /*Content Box Layout*/
    .buyers-guide-step:nth-of-type(odd) .buyers-guide-step-inner-container {
      -ms-grid-columns: 1fr 75vw;
      grid-template-columns: 1fr 75vw;
    }
    .buyers-guide-step:nth-of-type(even) .buyers-guide-step-inner-container {
      -ms-grid-columns: 75vw 1fr;
      grid-template-columns: 75vw 1fr;
    }
  }
  
  /*Step Image Styling*/
  @media screen and (min-width: 900px) {
    .buyers-guide-step:nth-of-type(odd) .buyers-guide-step-img-container {
      -ms-grid-column: 1;
      -ms-grid-column-span: 2;
      grid-column: 1 / span 2;
    }
    .buyers-guide-step:nth-of-type(even) .buyers-guide-step-img-container {
      -ms-grid-column: 2;
      -ms-grid-column-span: 2;
      grid-column: 2 / span 2;
    }
    /*First 3 images*/
    .buyers-guide-step:nth-of-type(-n + 3) .buyers-guide-step-img-container {
      -ms-grid-row: 2;
      grid-row: 2;
    }
    /*4 through 8 images*/
    .buyers-guide-step:nth-of-type(n + 4):nth-of-type(-n + 8)
      .buyers-guide-step-img-container {
      -ms-grid-row: 1;
      -ms-grid-row-span: 3;
      grid-row: 1 / span 3;
    }
    .buyers-guide-step-img-container {
      z-index: 1;
      background-size: cover;
      background-position: 75% 35%;
      width: 100%;
      height: 100%;
    }
    /*Specific Image Styling*/
    .buyers-guide-step:nth-of-type(2) .buyers-guide-step-img-container {
      background-position: 35% 50%;
    }
    .buyers-guide-step:nth-of-type(4) .buyers-guide-step-img-container {
      background-position: 0 50%;
    }
    .buyers-guide-step:nth-of-type(6) .buyers-guide-step-img-container {
      background-position: 50% 50%;
    }
    .buyers-guide-step:nth-of-type(7) .buyers-guide-step-img-container {
      min-height: 575px;
    }
    .buyers-guide-step:nth-of-type(8) .buyers-guide-step-img-container {
      background-position: 0 45%;
      min-height: 525px;
    }
  }
  /*HIDE IMAGES BELOW 899px*/
  @media screen and (max-width: 899px) {
    .buyers-guide-step-img-container {
      display: none;
    }
  }
  
  /*Step Number Styling*/
  .buyers-guide-step-number-circle {
    display: -ms-grid;
    display: grid;
    place-items: center;
    width: 60px;
    height: 60px;
    border-radius: 60px;
    background: var(--site-burgundy);
  }
  .buyers-guide-step-number {
    color: #ffffff;
    line-height: 1;
  }
  
  /*Step Content Container*/
  /*All Screens Styling*/
  .buyers-guide-step-content-container {
    display: -ms-grid;
    display: grid;
    gap: 15px;
    min-height: 350px;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    -ms-flex-line-pack: center;
    align-content: center;
    -ms-grid-row-align: center;
    align-self: center;
  }
  .buyers-guide-step-content-header {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: auto 10px 1fr;
    grid-template-columns: auto 1fr;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
  .buyers-guide-step-content {
    max-width: 730px;
  }
  /*Large Screens only*/
  @media screen and (min-width: 900px) {
    .buyers-guide-step:nth-of-type(odd) .buyers-guide-step-content-container {
      -ms-grid-column: 2;
      -ms-grid-column-span: 2;
      grid-column: 2 / span 2;
      padding: 25px 25px 25px 60px;
    }
    .buyers-guide-step:nth-of-type(even) .buyers-guide-step-content-container {
      -ms-grid-column: 1;
      -ms-grid-column-span: 2;
      grid-column: 1 / span 2;
      padding: 25px 60px 25px 25px;
    }
    /*First 3 content containers*/
    .buyers-guide-step:nth-of-type(-n + 3) .buyers-guide-step-content-container {
      -ms-grid-row: 1;
      -ms-grid-row-span: 3;
      grid-row: 1 / span 3;
    }
    /*4 through 8 content containers*/
    .buyers-guide-step:nth-of-type(n + 4):nth-of-type(-n + 8)
      .buyers-guide-step-content-container {
      -ms-grid-row: 2;
      grid-row: 2;
    }
  }
  /*Large Laptops to Large Tablets*/
  @media screen and (max-width: 1100px) and (min-width: 900px) {
    .buyers-guide-step:nth-of-type(odd) .buyers-guide-step-content-container {
      -ms-grid-column: 2;
      -ms-grid-column-span: 2;
      grid-column: 2 / span 2;
      padding: 15px 20px 15px 50px;
    }
    .buyers-guide-step:nth-of-type(even) .buyers-guide-step-content-container {
      -ms-grid-column: 1;
      -ms-grid-column-span: 2;
      grid-column: 1 / span 2;
      padding: 15px 50px 15px 20px;
    }
    .buyers-guide-step:nth-of-type(7) .buyers-guide-step-content-container {
      padding: 15px 10px 15px 50px;
    }
  }
  /*Large Latops and Under*/
  @media screen and (max-width: 1100px) {
    .buyers-guide-step-number-circle {
      width: 50px;
      height: 50px;
    }
  }
  @media screen and (max-width: 899px) and (min-width: 516px) {
    .buyers-guide-step:nth-of-type(odd) .buyers-guide-step-content-container {
      -ms-grid-column: 2;
      grid-column: 2;
    }
    .buyers-guide-step:nth-of-type(even) .buyers-guide-step-content-container {
      -ms-grid-column: 1;
      grid-column: 1;
    }
    .buyers-guide-step-content-container {
      min-height: inherit;
      padding: 15px 25px;
    }
  }
  /*ALL MOBILE RESPONSIVENESS FOR BUYERS GUIDE*/
  @media screen and (max-width: 515px) {
    .buyers-guide-step-wrapper {
      padding: 0 0 125px 0;
    }
    .buyers-guide-step {
      position: relative;
      min-height: inherit;
      padding: 25px 0 25px 10px;
      place-items: inherit;
    }
    /*Line down the side*/
    .buyers-guide-step::before {
      content: "";
      position: absolute;
      left: 35px;
      width: 1px;
      background-color: var(--site-burgundy);
    }
    /*First Line start halfway down the number circle*/
    .buyers-guide-step:nth-of-type(1)::before {
      top: 50px;
    }
    /*Every step inbetween starts at the top*/
    .buyers-guide-step:not(:nth-of-type(1))::before {
      top: 0;
    }
    /*Last step line does not go all the way down*/
    .buyers-guide-step:not(:nth-last-child(1))::before {
      bottom: 0;
    }
    /*Last step line goes halfway down the circle*/
    .buyers-guide-step:last-of-type::before {
      bottom: calc(100% - 50px);
    }
  
    .buyers-guide-step-inner-container {
      width: 90vw;
      -ms-grid-rows: auto;
      grid-template-rows: auto;
    }
    .buyers-guide-step-content-container {
      min-height: inherit;
      gap: 0;
    }
    .buyers-guide-step-content-header {
      z-index: 5;
    }
    .buyers-guide-step-number {
      -webkit-transition: 0.1s background ease-in-out;
      -o-transition: 0.1s background ease-in-out;
      transition: 0.1s background ease-in-out;
      font-size: 28px;
    }
    .buyers-guide-step-title {
      line-height: 1.2;
    }
    .buyers-guide-step-content {
      padding: 15px 0 0 60px;
    }
    /*Active State*/
    .buyers-guide-step.active .buyers-guide-step-number-circle {
      background: var(--site-green);
    }
    .buyers-guide-step.active:last-of-type::before {
      bottom: 25px;
    }
  }
  
  /*END OF BUYERS GUIDE*/
  
  /*Recommend Friend*/
  @media screen and (max-width: 475px) {
    .recommend-friend-btm-img {
      max-height: 200px;
      -o-object-position: top;
      object-position: top;
    }
  }
  
  /*Medical Conditions Page*/
  .medical-conditions-header-element {
    width: 45vw;
  }
  @media screen and (max-width: 475px) {
    .medical-conditions-header-element {
      width: inherit;
    }
    img.medical-conditions-header-element {
      width: 250px;
    }
  }
  /*Conditions Section*/
  #medical-conditions-container,
  .medical-conditions-btn-info-wrapper,
  .medical-conditions-info {
    display: -ms-grid;
    display: grid;
    justify-items: center;
  }
  
  .medical-conditions-btn {
    width: min(30vw, 300px);
    height: min(30vw, 250px);
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: 65fr 25px 35fr;
    grid-template-rows: 65fr 35fr;
    justify-items: center;
    gap: 25px;
    background: #ffffff;
    border: none;
    z-index: 10;
  }
  .medical-conditions-icon {
    -ms-flex-item-align: end;
    align-self: flex-end;
  }
  
  .medical-conditions-info {
    visibility: hidden;
    -ms-grid-row: 2;
    grid-row: 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
    grid-column: 1 / span 3;
    -ms-grid-rows: 40px auto 40px;
    grid-template-rows: 40px auto 40px;
    width: 100%;
  }
  .medical-conditions-info-content {
    background-color: var(--light-light-gray);
    -ms-grid-row: 2;
    grid-row: 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
    grid-column: 1 / span 3;
    width: 100%;
    padding: 2rem;
  }
  
  /*Active State*/
  .medical-conditions-btn-info-wrapper.active .medical-conditions-btn {
    background: var(--site-burgundy);
  }
  .medical-conditions-btn-info-wrapper.active .medical-conditions-icon path {
    fill: #ffffff;
  }
  .medical-conditions-btn-info-wrapper.active .medical-conditions-text {
    color: #ffffff;
  }
  .medical-conditions-btn-info-wrapper.active .medical-conditions-info {
    visibility: visible;
    z-index: 10;
  }
  
  /*Desktop Styling*/
  @media screen and (min-width: 768px) {
    .medical-conditions-btn-info-wrapper,
    .medical-conditions-info {
      -ms-grid-columns: (1fr) [3];
      grid-template-columns: repeat(3, 1fr);
    }
    .medical-conditions-btn-info-wrapper {
      -ms-grid-row: 1;
      grid-row: 1;
      -ms-grid-column: 1;
      grid-column: 1;
    }
    .medical-conditions-btn-info-wrapper {
      -ms-grid-rows: 250px auto 250px;
      grid-template-rows: 250px auto 250px;
    }
    /*Flip Over Indicators for Bottom Row*/
    .medical-conditions-btn-info-wrapper:nth-of-type(n + 4):nth-of-type(-n + 6)
      .medical-conditions-indicator {
      -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
      transform: rotate(180deg);
    }
  
    /*Position the buttons and active indicators*/
    /*Top Row*/
    .medical-conditions-btn-info-wrapper:nth-of-type(-n + 3)
      .medical-conditions-btn,
    .medical-conditions-btn-info-wrapper:nth-of-type(-n + 3)
      .medical-conditions-indicator {
      -ms-grid-row: 1;
      grid-row: 1;
      align-self: flex-end;
    }
    /*Bottom Row*/
    .medical-conditions-btn-info-wrapper:nth-of-type(n + 4):nth-of-type(-n + 6)
      .medical-conditions-btn,
    .medical-conditions-btn-info-wrapper:nth-of-type(n + 4):nth-of-type(-n + 6)
      .medical-conditions-indicator {
      -ms-grid-row: 3;
      grid-row: 3;
      align-self: flex-start;
    }
    /*Column Positioning*/
    .medical-conditions-btn-info-wrapper:nth-of-type(3n + 1)
      .medical-conditions-btn,
    .medical-conditions-btn-info-wrapper:nth-of-type(3n + 1)
      .medical-conditions-indicator {
      -ms-grid-column: 1;
      grid-column: 1;
    }
    .medical-conditions-btn-info-wrapper:nth-of-type(3n + 2)
      .medical-conditions-btn,
    .medical-conditions-btn-info-wrapper:nth-of-type(3n + 2)
      .medical-conditions-indicator {
      -ms-grid-column: 2;
      grid-column: 2;
    }
    .medical-conditions-btn-info-wrapper:nth-of-type(3n + 3)
      .medical-conditions-btn,
    .medical-conditions-btn-info-wrapper:nth-of-type(3n + 3)
      .medical-conditions-indicator {
      -ms-grid-column: 3;
      grid-column: 3;
    }
  }
  
  /*Tablet/Mobile Styling*/
  @media screen and (max-width: 767px) {
    .medical-conditions-info {
      display: none;
      -ms-grid-rows: 40px auto;
      grid-template-rows: 40px auto;
    }
  
    .medical-conditions-indicator {
      -ms-flex-item-align: end;
      align-self: flex-end;
    }
  
    /*Tablet/Mobile Active Styling*/
    .medical-conditions-btn-info-wrapper.active .medical-conditions-info {
      display: -ms-grid;
      display: grid;
    }
  }
  /*Tablet Styling*/
  @media screen and (max-width: 767px) and (min-width: 501px) {
    #medical-conditions-container,
    .medical-conditions-btn-info-wrapper,
    .medical-conditions-info {
      -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
    }
    #medical-conditions-container {
      row-gap: 4rem;
    }
    .medical-conditions-btn-info-wrapper {
      -ms-grid-column: 1;
      -ms-grid-column-span: 2;
      grid-column: 1 / span 2;
      width: 100%;
      justify-items: center;
    }
    /*Grid Container Placement*/
    .medical-conditions-btn-info-wrapper:nth-of-type(n + 1):nth-of-type(-n + 2) {
      -ms-grid-row: 1;
      grid-row: 1;
    }
    .medical-conditions-btn-info-wrapper:nth-of-type(n + 3):nth-of-type(-n + 4) {
      -ms-grid-row: 2;
      grid-row: 2;
    }
    .medical-conditions-btn-info-wrapper:nth-of-type(n + 5):nth-of-type(-n + 6) {
      -ms-grid-row: 3;
      grid-row: 3;
    }
    /*Grid Button/Indicator Placement*/
    .medical-conditions-btn-info-wrapper:nth-of-type(even)
      .medical-conditions-btn,
    .medical-conditions-btn-info-wrapper:nth-of-type(even)
      .medical-conditions-indicator {
      -ms-grid-column: 2;
      grid-column: 2;
    }
    .medical-conditions-btn {
      width: min(45vw, 300px);
      height: min(45vw, 250px);
    }
  
    /*Info Styling*/
    .medical-conditions-info {
      -ms-grid-column: 1;
      -ms-grid-column-span: 2;
      grid-column: 1 / span 2;
    }
  }
  
  @media screen and (max-width: 500px) {
    #medical-conditions-container {
      row-gap: 2rem;
    }
    .medical-conditions-btn {
      width: 200px;
      min-height: 175px;
    }
    .medical-conditions-icon {
      width: 50px;
      height: 70px;
    }
    .medical-conditions-info,
    .medical-conditions-info-content {
      -ms-grid-column: 1;
      grid-column: 1;
    }
    .medical-conditions-info-content {
      padding: 1rem;
    }
  }
  
  /*Bottom Grid Section*/
  .mc-grid-btm-container {
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: auto 1.5rem auto 1.5rem 1fr;
    grid-template-rows: auto auto 1fr;
    row-gap: 1.5rem;
    -webkit-column-gap: 2.5rem;
    -moz-column-gap: 2.5rem;
    column-gap: 2.5rem;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
  .mc-grid-btm-img {
    display: block;
    -ms-grid-row: 1;
    -ms-grid-row-span: 3;
    grid-row: 1 / span 3;
    width: 100%;
    height: 100%;
    max-height: 560px;
    overflow: hidden;
  }
  .mc-grid-btm-img img {
    display: block;
    -o-object-fit: cover;
    object-fit: cover;
    height: 100%;
    width: 100%;
  }
  .mc-grid-btm-content {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    width: 100%;
    max-width: 620px;
  }
  @media screen and (min-width: 1150px) {
    .mc-grid-btm-container:nth-of-type(1) {
      -ms-grid-columns: 1fr min(35vw, 500px);
      grid-template-columns: 1fr min(35vw, 500px);
    }
    .mc-grid-btm-container:nth-of-type(2) {
      -ms-grid-columns: min(35vw, 500px) 1fr;
      grid-template-columns: min(35vw, 500px) 1fr;
    }
  }
  @media screen and (min-width: 751px) {
    .mc-grid-btm-img.right {
      -ms-grid-column: 2;
      grid-column: 2;
      margin-left: auto;
      -o-object-position: 50% 65%;
      object-position: 50% 65%;
    }
    .mc-grid-btm-img.left {
      -ms-grid-column: 1;
      grid-column: 1;
      margin-right: auto;
    }
    .mc-grid-btm-img.left img {
      -o-object-position: 50% 80%;
      object-position: 50% 80%;
    }
    .mc-grid-btm-content.left {
      -ms-grid-column: 1;
      grid-column: 1;
    }
    .mc-grid-btm-content.right {
      -ms-grid-column: 2;
      grid-column: 2;
    }
  }
  
  .mc-check-list-container {
    display: -ms-grid;
    display: grid;
    gap: 2rem;
  }
  @media screen and (max-width: 1024px) and (min-width: 951px) {
    .mc-grid-btm-section {
      width: 80%;
    }
  }
  @media screen and (max-width: 1024px) and (min-width: 751px) {
    .mc-grid-btm-container {
      row-gap: 0.5rem;
      -webkit-column-gap: 2rem;
      -moz-column-gap: 2rem;
      column-gap: 2rem;
    }
    .mc-grid-btm-container:nth-of-type(1) {
      -ms-grid-columns: 56fr 44fr;
      grid-template-columns: 56fr 44fr;
    }
    .mc-grid-btm-container:nth-of-type(2) {
      -ms-grid-columns: 44fr 56fr;
      grid-template-columns: 44fr 56fr;
    }
    .mc-grid-btm-img {
      -ms-grid-row: 1;
      -ms-grid-row-span: 2;
      grid-row: 1 / span 2;
    }
    .mc-grid-btm-content.content-2 {
      -ms-grid-row: 3;
      grid-row: 3;
      -ms-grid-column: 1;
      -ms-grid-column-span: 2;
      grid-column: 1 / span 2;
      max-width: none;
    }
    .mc-grid-btm-content.content-2.btn-container {
      padding: 2rem 0 0;
    }
  }
  @media screen and (max-width: 1024px) and (min-width: 901px) {
    .mc-grid-btm-img {
      height: min(40vw, 400px);
    }
  }
  @media screen and (max-width: 900px) and (min-width: 751px) {
    .mc-grid-btm-img {
      height: 100%;
    }
  }
  @media screen and (max-width: 750px) {
    .mc-grid-btm-section {
      -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
    }
    .mc-grid-btm-content {
      -ms-grid-column: 1;
      grid-column: 1;
    }
    .mc-grid-btm-img {
      -ms-grid-row: 2;
      grid-row: 2;
      -ms-grid-column: 1;
      grid-column: 1;
      width: max(65vw, 245px);
      height: max(70vw, 265px);
      -ms-grid-column-align: center;
      justify-self: center;
    }
    .mc-grid-btm-img.right img {
      -o-object-position: 50% 61%;
      object-position: 50% 61%;
    }
    .mc-grid-btm-img.left img {
      -o-object-position: 50% 79%;
      object-position: 50% 79%;
    }
  }
  
  /*Stairlift Pricing*/
  /*Icon Section*/
  .stairlift-pricing-icon {
    display: block;
    width: clamp(100px, 15vw, 150px);
    height: auto;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
  }
  
  @media screen and (min-width: 600px) {
    /*Pricing Page Stairlift Cards*/
    .pricing-page-award-winning-stairlift {
      max-width: 1300px;
    }
    .pricing-page-award-winning-stairlift .award-winning-stairlift-card {
      width: 400px;
      grid-template-rows: auto 1fr;
    }
    .pricing-page-award-winning-stairlift
      .award-winning-stairlift-card-img-container {
      overflow: hidden;
    }
    .pricing-page-award-winning-stairlift .award-winning-stairlift-card-img {
      height: 250px;
      object-fit: cover;
    }
    .pricing-page-award-winning-stairlift
      .award-winning-stairlift-card-content-text {
      font-size: clamp(18px, calc(1.125rem + ((1vw - 6px) * 0.303)), 22px);
    }
    .pricing-page-award-winning-stairlift .red-arrow {
      display: block;
      width: 25px;
      height: auto;
    }
    @media screen and (max-width: 1300px) {
      .pricing-page-award-winning-stairlift .award-winning-stairlift-container {
        padding: 0 40px;
      }
    }
  }
  
  /*Image / Gray Box Section*/
  .pricing-main-grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: min(40vw, 670px) 1fr;
    grid-template-columns: min(40vw, 670px) 1fr;
  }
  .pricing-main-img-container {
    width: 100%;
    height: 100%;
  }
  .pricing-main-img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
  @media screen and (min-width: 769px) {
    .stairlift-pricing-text {
      max-width: 21ch;
    }
  }
  @media screen and (max-width: 1024px) and (min-width: 476px) {
    .pricing-main-gray-box div {
      width: 90%;
    }
  }
  @media screen and (max-width: 768px) {
    .pricing-main-grid {
      -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
    }
    .pricing-main-img-container {
      width: 100%;
      min-height: 325px;
    }
  }
  @media screen and (min-width: 475px) {
    .stairlift-pricing-text {
      font-size: min(calc(1rem + 0.25vw), 20px);
    }
  }
  
  /*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
  /*SERVICE MAIN PAGE*/
  /*Service Main Header*/
  .service-main-header.page-header-container.left::before {
    background: rgba(0, 0, 0, 0.2);
  }
  .service-main-header .page-header-title.left {
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    max-width: none;
  }
  @media screen and (min-width: 551px) {
    .service-main-header .page-header-title.left {
      -webkit-transform: translateY(-10%);
      -ms-transform: translateY(-10%);
      transform: translateY(-10%);
    }
  }
  @media screen and (max-width: 550px) {
    .service-main-header .page-header-title {
      left: 2.5%;
      width: 95%;
      text-align: center;
    }
  }
  /*Service Main Info Grid*/
  .service-main-info-grid-container {
      max-width: 1200px;
      margin: 0 auto;
      width: 90%;
    display: flex;
    flex-direction: column;
    gap: 50px;
    padding: 5rem 0 8rem;
  }
  .service-main-info-grid {
    display: grid;
    grid-template-columns: 7fr 3fr;
    row-gap: 1rem;
    column-gap: 3rem;
  }
  .service-main-info-heading {
    -ms-flex-item-align: end;
    align-self: flex-end;
  }
  .service-main-info-asset {
    -ms-grid-column: 2;
    grid-column: 2;
    max-width: 400px;
    width: 100%;
  }
  .service-main-btn {
    margin: 35px 0 0;
  }
  
  /*Assets*/
  .service-main-info-asset.wrench-img-container {
    grid-row: 1 / span 2;
    max-height: 450px;
    overflow: hidden;
  }
  .service-main-info-asset.wrench-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .service-main-info-asset.checkmark-list {
    -ms-grid-row: 1;
    -ms-grid-row-span: 3;
    grid-row: 1 / span 3;
    display: -ms-grid;
    display: grid;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  @media (min-width: 1300px) {
      .checkmark-list--li {
          white-space: nowrap;
      }
      .service-main-info-asset.wrench-img-container {
          width: 360px;
      }
  }
  @media (max-width: 1024px) {
    .service-main-info-grid {
      column-gap: 2rem;
    }
  }
  @media (max-width: 825px) {
    .service-main-info-grid-container {
      gap: 80px;
    }
    .service-main-info-grid {
      grid-template-columns: 1fr 235px;
      column-gap: 1rem;
    }
    .service-main-info-grid.maintenance .service-main-info-heading,
    .service-main-info-asset.checkmark-list,
    .service-main-info-content.maintenance {
      -ms-grid-column: 1;
      -ms-grid-column-span: 2;
      grid-column: 1 / span 2;
    }
    .service-main-info-content.maintenance {
      padding: 15px 0 0 0;
    }
    .service-main-info-asset.checkmark-list {
      grid-row: 2;
      max-width: none;
      -webkit-box-pack: start;
      -ms-flex-pack: start;
      justify-content: flex-start;
      gap: 25px;
    }
    .service-main-info-content.installation {
      max-width: 425px;
    }
  }
  @media (max-width: 790px) {
    .service-main-info-grid.installation .service-main-info-heading {
      grid-column: 1 / span 2;
    }
    .service-main-info-asset.wrench-img-container {
      grid-row: 2;
      height: 250px;
    }
  }
  @media screen and (max-width: 720px) {
    .service-main-info-grid-container {
      padding: clamp(20px, calc(1.25rem + ((1vw - 5.5px) * 20)), 50px) 0 135px;
    }
    @media (min-width: 650px) {
      .service-main-info-grid-container {
        width: 92%;
      }
    }
    .service-main-info-grid {
      grid-template-columns: 1fr;
      row-gap: 1rem;
    }
    .service-main-info-asset.wrench-img-container {
      display: none;
    }
    .service-main-info-asset.checkmark-list {
      grid-row: 2;
      grid-column: 1;
      -webkit-box-pack: start;
      -ms-flex-pack: start;
      justify-content: flex-start;
    }
    .service-main-info-content.installation {
      max-width: initial;
    }
  }
  
  /*Service General Styling*/
  .gray-underline {
    height: 2px;
    background-color: var(--light-gray);
  }
  .vertical-line {
    width: 2px;
    background-color: var(--light-gray);
  }
  
  @media screen and (max-width: 768px) {
    .vertical-line {
      height: 2px;
      width: 70%;
    }
  }
  
  /*Service Instllation Page*/
  @media screen and (max-width: 1050px) {
    .service-installation .page-header-title {
      left: 5%;
    }
  }
  @media screen and (max-width: 949px) and (min-width: 880px) and (min-width: 500px) {
    .service-installation .page-header {
      object-position: 80% 0;
    }
  }
  .service-installation-info-grid {
    display: grid;
    grid-template-rows: 1fr auto;
    gap: 1rem 5px;
  }
  .service-installation-info-grid-title {
    align-self: flex-end;
  }
  .service-installation-8minute-img {
    display: block;
    width: min(26vw, 290px);
    height: auto;
    max-height: 225px;
    grid-column: 2;
    grid-row: 1 / span 2;
    margin: 0 4px;
  }
  @media screen and (min-width: 875px) {
    .service-installation-8minute-img {
      align-self: center;
    }
  }
  @media screen and (max-width: 1100px) {
    .service-installation-info-grid {
      padding-top: 2rem;
    }
  }
  @media screen and (max-width: 750px) {
    .service-installation-8minute-img {
      justify-self: center;
      width: 75%;
      grid-column: 1;
      grid-row: 2;
    }
  }
  
  /*Service Maintenance Page*/
  @media screen and (max-width: 1075px) {
    .service-maintenance-section .page-header-title.left {
      left: 5%;
    }
  }
  @media screen and (max-width: 700px) {
    @media (min-width: 500px) {
      .service-maintenance-section .page-header {
        min-height: 150px;
        object-position: 40% 0;
      }
    }
    .service-maintenance-section .page-header-title.left {
      max-width: 65vw;
    }
  }
  @media screen and (max-width: 500px) {
    .service-maintenance-section .page-header-title.left {
      font-size: 30px;
    }
    .service-maintenance-section .page-header {
      object-position: 80% 0;
    }
  }
  
  /*Service Quality and Testing Page*/
  .quality-testing-awards-container {
    display: -ms-grid;
    display: grid;
  }
  .quality-testing-awards-container h4 {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    -ms-flex-item-align: end;
    align-self: flex-end;
  }
  .award-winning-quality-img {
    display: block;
    width: clamp(200px, 90%, 503px);
    height: auto;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
  }
  @media screen and (min-width: 950px) {
    .quality-testing-awards-container {
      -ms-grid-columns: 6fr 4fr;
      grid-template-columns: 6fr 4fr;
      -ms-grid-rows: 1fr auto;
      grid-template-rows: 1fr auto;
    }
    .quality-testing-awards-container > *:nth-child(1) {
      -ms-grid-row: 1;
      -ms-grid-column: 1;
    }
    .quality-testing-awards-container > *:nth-child(2) {
      -ms-grid-row: 1;
      -ms-grid-column: 2;
    }
    .quality-testing-awards-container > *:nth-child(3) {
      -ms-grid-row: 2;
      -ms-grid-column: 1;
    }
    .quality-testing-awards-container > *:nth-child(4) {
      -ms-grid-row: 2;
      -ms-grid-column: 2;
    }
    .award-winning-quality-img {
      -ms-grid-row: 1;
      -ms-grid-row-span: 2;
      grid-row: 1 / span 2;
      -ms-grid-column: 2;
      grid-column: 2;
      justify-self: flex-end;
    }
  }
  
  @media screen and (min-width: 725px) {
    #quality-testing-tabs {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -ms-flex-direction: row;
      flex-direction: row;
      gap: 1rem;
    }
    /*Modify the tabs to vertical with new indicator*/
    #quality-testing-tabs .tab-selector-container {
      width: -webkit-fit-content;
      width: -moz-fit-content;
      width: fit-content;
      overflow-x: visible;
    }
    #quality-testing-tabs .tab-selector-wrapper {
      width: -webkit-fit-content;
      width: -moz-fit-content;
      width: fit-content;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      gap: 3rem;
      padding: 3rem 0;
    }
    #quality-testing-tabs .tab-selector-button {
      border-radius: 0;
      border-left: none;
      border-bottom: none;
      background: transparent;
      text-align: left;
      font-size: 22px;
      padding: 0 0 0 25px;
      min-height: 50px;
      -webkit-transition: none;
      -o-transition: none;
      transition: none;
    }
    #quality-testing-tabs .tab-selector.active .tab-selector-button::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 5px;
      background: var(--site-burgundy);
    }
    .safety-features-container {
      width: 100%;
      padding: 2rem 0;
    }
  }
  @media screen and (min-width: 725px) and (max-width: 1440px) {
    #quality-testing-tabs .tab-selector-button {
      font-size: 20px;
    }
  }
  @media screen and (min-width: 725px) and (max-width: 900px) {
    #quality-testing-tabs .tab-selector-button {
      white-space: normal;
    }
  }
  /*Quality Testing Tabs Styling Before Scroll Tabs*/
  @media screen and (min-width: 550px) {
    #quality-testing-tabs {
      -webkit-box-shadow: 0px 1px 10px 1px rgba(0, 0, 0, 0.15);
      box-shadow: 0px 1px 10px 1px rgba(0, 0, 0, 0.15);
      border: none;
      width: 90vw;
    }
  }
  /*Modify the content*/
  #quality-testing-tabs {
    overflow: hidden;
    margin-bottom: 5rem;
  }
  #quality-testing-tabs .tab-selector-button {
    position: relative;
  }
  #quality-testing-tabs .tab-selector.active .tab-selector-button {
    color: var(--site-burgundy);
  }
  .safety-features-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 2rem;
    margin: 0 auto;
    width: 85%;
    max-width: 670px;
  }
  .safety-features-img-container {
    position: relative;
  }
  .safety-features-img-container::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: -webkit-gradient(
      linear,
      left bottom,
      left top,
      from(rgba(0, 0, 0, 0.2)),
      to(rgba(0, 0, 0, 0.2))
    );
    background: -o-linear-gradient(
      bottom,
      rgba(0, 0, 0, 0.2),
      rgba(0, 0, 0, 0.2)
    );
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
  }
  .safety-features-img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 670px;
  }
  .safety-features-header {
    color: #ffffff;
    text-align: center;
    width: 80%;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  @media screen and (max-width: 550px) {
    #quality-testing-tabs {
      margin-bottom: 0;
    }
    #quality-testing-tabs .tab-selector.active .tab-selector-button::before {
      content: "";
      position: absolute;
      left: 1rem;
      right: 1rem;
      bottom: -2px;
      height: 2px;
      background: var(--site-burgundy);
    }
  }
  
  /*Ease-of-Use Page*/
  .ease-of-use-header {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 20px;
    align-items: center;
  }
  .ease-of-use-header-img {
    display: block;
    width: 100%;
    max-width: 500px;
    height: auto;
    justify-self: center;
  }
  @media screen and (max-width: 650px) {
    .ease-of-use-header {
      grid-template-columns: 1fr;
      text-align: center;
    }
    .ease-of-use-header-img {
      width: 70vw;
    }
  }
  
  /*Home Survey Page*/
  @media screen and (max-width: 1075px) {
    .home-survey-header-section .page-header-title {
      left: 5%;
    }
  }
  @media screen and (max-width: 700px) and (min-width: 501px) {
    .home-survey-header-section .page-header {
      min-height: 150px;
    }
  }
  
  /*Form section*/
  .home-survey-form-container {
    max-width: 780px;
    display: flex;
    flex-direction: column;
    gap: 70px;
  }
  .home-survey-form-content-img-container {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
  }
  .home-survey-form-content {
    flex: 1;
    align-self: flex-end;
  }
  .home-survey-form-img {
    display: block;
    width: 220px;
    height: auto;
    margin: 0 auto;
  }
  
  /*Reset stylings from normal forms*/
  @media (min-width: 551px) {
    .home-survey-form-container #step-form {
      padding: 3rem 0;
    }
  }
  .home-survey-form-container #step-display {
    width: 100%;
  }
  .home-survey-form-container .mobile-step-display {
    padding: 0;
  }
  
  @media (max-width: 500px) {
    .home-survey-form-container {
      gap: 50px;
    }
  }
  
  /*FastTrack Page*/
  .fasttrack-header-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 90%;
    margin: 0 auto;
  }
  .fasttrack-title,
  .fasttrack-arrow-title {
    line-height: 100%;
  }
  .fasttrack-title {
    position: relative;
  }
  .fasttrack-r {
    position: absolute;
    top: 0;
    right: 0;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
  }
  .fasttrack-arrow-container {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: auto auto 1fr;
    grid-template-columns: auto auto 1fr;
    min-height: 70px;
  }
  @media screen and (min-width: 1100px) {
    .fasttrack-arrow-container {
      width: 70%;
    }
  }
  .fasttrack-arrow-tail {
    width: 70px;
    height: 100%;
    -webkit-clip-path: polygon(
      50% 0,
      100% 50%,
      50% 100%,
      0% 100%,
      50% 50%,
      0% 0%
    );
    clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0% 100%, 50% 50%, 0% 0%);
  }
  .fasttrack-arrow-tail.light {
    background-color: rgba(131, 26, 61, 0.5);
  }
  .fasttrack-arrow-tail.medium {
    background-color: rgba(131, 26, 61, 0.75);
  }
  .fasttrack-arrow-tail.medium,
  .fasttrack-arrow-title-container {
    margin-left: -20px;
  }
  .fasttrack-arrow-title-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background-color: #831a3d;
    -webkit-clip-path: polygon(
      calc(100% - 35px) 0,
      100% 50%,
      calc(100% - 35px) 100%,
      0% 100%,
      35px 50%,
      0% 0%
    );
    clip-path: polygon(
      calc(100% - 35px) 0,
      100% 50%,
      calc(100% - 35px) 100%,
      0% 100%,
      35px 50%,
      0% 0%
    );
  }
  .fasttrack-arrow-title {
    margin: auto;
    padding: 0.5rem 30px 0.5rem 45px;
  }
  .fasttrack-arrow-part {
    display: block;
    height: 100%;
  }
  
  .fasttrack-quote-grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 2rem auto;
    grid-template-columns: 1fr auto;
    gap: 2rem 3rem;
  }
  .fasttrack-img-container {
    display: -webkit-box;
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    grid-row: 1 / span 2;
    -ms-grid-column: 2;
    grid-column: 2;
    width: 35vw;
    max-width: 560px;
    max-height: 660px;
  }
  .fasttrack-img-container img {
    display: block;
    min-height: 100%;
    height: auto;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
  @media screen and (max-width: 1200px) and (min-width: 769px) {
    .fasttrack-quote-wrapper {
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      -ms-grid-column: 1;
      -ms-grid-column-span: 2;
      grid-column: 1 / span 2;
    }
    .fasttrack-img-container {
      -ms-grid-row: 1;
      grid-row: 1;
    }
  }
  @media screen and (max-width: 768px) {
    .fasttrack-quote-grid {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
    }
    .fasttrack-img-container {
      width: 80vw;
      -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
      order: -1;
    }
    .fasttrack-check-grid {
      grid-template-columns: auto;
      justify-content: center;
    }
    .fasttrack-check-container {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -ms-flex-direction: row;
      flex-direction: row;
    }
    .fasttrack-check {
      width: 25px;
      height: 25px;
    }
  }
  @media screen and (max-width: 620px) {
    .fasttrack-header-container {
      width: 95%;
    }
    .fasttrack-arrow-container {
      width: 100%;
      max-width: 400px;
      min-height: 50px;
    }
    .fasttrack-arrow-tail {
      width: 40px;
    }
    .fasttrack-arrow-tail.medium,
    .fasttrack-arrow-title-container {
      margin-left: -15px;
    }
    .fasttrack-arrow-title-container {
      -webkit-clip-path: polygon(
        calc(100% - 20px) 0,
        100% 50%,
        calc(100% - 20px) 100%,
        0% 100%,
        20px 50%,
        0% 0%
      );
      clip-path: polygon(
        calc(100% - 20px) 0,
        100% 50%,
        calc(100% - 20px) 100%,
        0% 100%,
        20px 50%,
        0% 0%
      );
    }
    .fasttrack-arrow-title {
      font-size: 18px;
      padding: 0.5rem 5px 0.5rem 15px;
    }
  }
  @media screen and (max-width: 475px) {
    .fasttrack-main-info-container {
      width: 85%;
    }
    .fasttrack-img-container {
      width: 100%;
      height: max(70vw, 250px);
    }
  }
  @media screen and (max-width: 360px) {
    .fasttrack-arrow-title {
      font-size: 16px;
    }
  }
  @media screen and (max-width: 330px) {
    .fasttrack-arrow-title {
      padding: 8px 5px 8px 25px;
    }
  }
  
  /*Service Warranty Page*/
  .service-warranty-intro {
      max-width: 1140px;
  }
  .service-warranty-info-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
  }
  .service-warranty-info-block {
    flex: 1;
    min-width: 320px;
  }
  /*Phone Icon*/
  .warranty-phone {
    display: block;
    width: 80px;
    height: auto;
  }
  /*AC Icon*/
  .service-warranty-info-block-acorn-club-logo {
    width: clamp(200px, 30vw, 250px);
    margin: auto;
  }
  @media screen and (max-width: 475px) {
    .warranty-phone {
      width: 66px;
    }
    .service-warranty-info-block-acorn-club-logo {
      width: 165px;
    }
  }
  
  /*Aftercare Bottom Section*/
  .service-warranty-aftercare-container {
    display: grid;
    grid-template-columns: 60fr 37fr;
    grid-template-rows: auto 1fr;
    gap: 15px clamp(50px, 4.5vw, 85px);
    max-width: 1100px;
    width: 90%;
    padding: 115px 0;
  }
  .service-warranty-aftercare-img {
    width: min(100%, 365px);
    justify-self: center;
    grid-row: 1 / span 2;
    grid-column: 2;
  }
  
  @media screen and (max-width: 980px) {
    .service-warranty-aftercare-container {
      gap: 20px 50px;
      padding: 80px 0;
    }
    .service-warranty-aftercare-title {
      grid-column: 1 / span 2;
      max-width: 750px;
    }
    .service-warranty-aftercare-img {
      grid-row: 2;
    }
  }
  @media screen and (max-width: 768px) {
    .service-warranty-aftercare-container {
      display: flex;
      flex-direction: column;
    }
    .service-warranty-aftercare-img {
      width: min(65%, 265px);
      order: -1;
      margin: 0 auto;
    }
  }
  @media screen and (max-width: 475px) {
    .service-warranty-aftercare-container {
      padding: 40px 0 80px;
    }
  }
  
  /*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
  /*ABOUT PAGE*/
  .about-acorn-logo {
    display: block;
    width: clamp(100px, 25vw, 150px);
    height: clamp(100px, 25vw, 150px);
  }
  /*About Main Grid*/
  .about-main-grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr min(6.5vw, 120px) 1fr;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr auto 1fr;
    margin: 0 auto;
    width: min(90vw, 1520px);
    gap: min(6.5vw, 120px);
  }
  .about-main-grid > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .about-main-grid > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  .about-main-grid > *:nth-child(3) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .about-main-grid > *:nth-child(4) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .about-main-grid > *:nth-child(5) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .about-main-grid > *:nth-child(6) {
    -ms-grid-row: 5;
    -ms-grid-column: 3;
  }
  /*About Cards*/
  .about-main-card {
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: 150px 150px auto;
    grid-template-rows: 150px 150px auto;
    max-width: 700px;
  }
  .about-main-card-img,
  .about-main-card-background {
    -ms-grid-column: 1;
    grid-column: 1;
  }
  .about-main-card-img {
    display: block;
    -ms-grid-column-align: center;
    justify-self: center;
    width: auto;
    height: 300px;
    border-radius: 300px;
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    grid-row: 1 / span 2;
    z-index: 10;
  }
  .about-main-card-background {
    display: -ms-grid;
    display: grid;
    -ms-grid-row: 2;
    -ms-grid-row-span: 2;
    grid-row: 2 / span 2;
    background: var(--light-light-gray);
    border-radius: 10px;
    padding: 150px 0 0;
    min-height: 380px;
  }
  .about-main-card-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
    width: 91%;
    margin: 0 auto;
    padding: 40px 0 30px;
  }
  @media screen and (max-width: 1024px) {
    .about-main-grid {
      -ms-grid-rows: auto;
      grid-template-rows: auto;
      gap: 4rem;
    }
    .about-main-card {
      -ms-grid-rows: clamp(75px, 15vw, 132px) clamp(75px, 15vw, 132px) auto;
      grid-template-rows: clamp(75px, 15vw, 132px) clamp(75px, 15vw, 132px) auto;
    }
    .about-main-card-img {
      height: clamp(150px, 30vw, 265px);
    }
    .about-main-card-background {
      padding: clamp(75px, 15vw, 132px) 0 0;
    }
    .about-main-card-content {
      padding: 25px 0;
    }
  }
  @media screen and (max-width: 950px) {
    .about-main-grid {
      -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
      justify-items: center;
    }
    .about-main-card-background {
      min-height: inherit;
    }
  }
  @media screen and (max-width: 600px) {
    .about-main-grid {
      width: 100vw;
      gap: 50px;
    }
    .about-main-card {
      -ms-grid-rows: clamp(85px, 25vw, 132px) clamp(85px, 25vw, 132px) auto;
      grid-template-rows: clamp(85px, 25vw, 132px) clamp(85px, 25vw, 132px) auto;
    }
    .about-main-card-img {
      height: clamp(170px, 50vw, 265px);
    }
    .about-main-card-background {
      padding: clamp(85px, 25vw, 132px) 0 0;
    }
    .about-main-card-content {
      width: 85%;
      gap: 5px;
    }
  }
  
  /*Slide animations*/
  @-webkit-keyframes rightSlide {
    0% {
      opacity: 0;
      -webkit-transform: translate3d(125%, 0, 0);
      transform: translate3d(125%, 0, 0);
    }
  
    100% {
      opacity: 1;
      -webkit-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0);
    }
  }
  @keyframes rightSlide {
    0% {
      opacity: 0;
      -webkit-transform: translate3d(125%, 0, 0);
      transform: translate3d(125%, 0, 0);
    }
  
    100% {
      opacity: 1;
      -webkit-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0);
    }
  }
  @-webkit-keyframes leftSlide {
    0% {
      opacity: 0;
      -webkit-transform: translate3d(-125%, 0, 0);
      transform: translate3d(-125%, 0, 0);
    }
  
    100% {
      opacity: 1;
      -webkit-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0);
    }
  }
  @keyframes leftSlide {
    0% {
      opacity: 0;
      -webkit-transform: translate3d(-125%, 0, 0);
      transform: translate3d(-125%, 0, 0);
    }
  
    100% {
      opacity: 1;
      -webkit-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0);
    }
  }
  @-webkit-keyframes outLeft {
    0% {
      opacity: 1;
      -webkit-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0);
    }
    50% {
      opacity: 0.75;
    }
    100% {
      opacity: 0;
      -webkit-transform: translate3d(-125%, 0, 0);
      transform: translate3d(125%, 0, 0);
    }
  }
  @keyframes outLeft {
    0% {
      opacity: 1;
      -webkit-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0);
    }
    50% {
      opacity: 0.75;
    }
    100% {
      opacity: 0;
      -webkit-transform: translate3d(-125%, 0, 0);
      transform: translate3d(125%, 0, 0);
    }
  }
  @-webkit-keyframes outRight {
    0% {
      opacity: 1;
      -webkit-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0);
    }
    50% {
      opacity: 0.75;
    }
    100% {
      opacity: 1;
      -webkit-transform: translate3d(-125%, 0, 0);
      transform: translate3d(-125%, 0, 0);
    }
  }
  @keyframes outRight {
    0% {
      opacity: 1;
      -webkit-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0);
    }
    50% {
      opacity: 0.75;
    }
    100% {
      opacity: 1;
      -webkit-transform: translate3d(-125%, 0, 0);
      transform: translate3d(-125%, 0, 0);
    }
  }
  .gold-arrow {
    background-color: transparent;
    background-image: url("/assets/imgs/about/quote-arrow.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    min-width: 35px;
    width: 10%;
    max-width: 70px;
    min-height: 35px;
    height: auto;
    aspect-ratio: 1;
    border: none;
  }
  .gold-quote-icon {
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transform: translate(20%, -40%);
    -ms-transform: translate(20%, -40%);
    transform: translate(20%, -40%);
    width: 15%;
    max-width: 65px;
  }
  .quote {
    -ms-grid-row: 1;
    grid-row: 1;
    -ms-grid-column: 1;
    grid-column: 1;
    opacity: 0;
  }
  .quote.active {
    opacity: 1;
    z-index: 1;
  }
  .quote.active.right-slide {
    -webkit-animation-name: rightSlide;
    animation-name: rightSlide;
    -webkit-animation-duration: 0.75s;
    animation-duration: 0.75s;
    opacity: 1;
    z-index: 1;
  }
  .quote.active.left-slide {
    -webkit-animation-name: leftSlide;
    animation-name: leftSlide;
    -webkit-animation-duration: 0.75s;
    animation-duration: 0.75s;
    opacity: 1;
    z-index: 1;
  }
  .quote.out-right {
    -webkit-animation-name: outRight;
    animation-name: outRight;
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
  }
  .quote.out-left {
    -webkit-animation-name: outLeft;
    animation-name: outLeft;
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
  }
  .quote-indicator {
    height: 30px;
    width: 30px;
    border-radius: 30px;
    background-color: var(--light-gray);
    cursor: pointer;
    -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
  }
  .quote-indicator.active {
    background-color: #aa7f4b;
  }
  /*Desktop Quotes*/
  .desktop-quote-item {
    min-height: 400px;
    padding: 65px 0 40px;
    align-self: center;
  }
  /*Read More and Read Less*/
  .addReadMore.showlesscontent .SecSec,
  .addReadMore.showlesscontent .readLess {
    display: none;
  }
  
  .addReadMore.showmorecontent .readMore {
    display: none;
  }
  .addReadMore .readMore,
  .addReadMore .readLess {
    font-weight: 700;
    margin-left: 2px;
    color: var(--site-burgundy);
    cursor: pointer;
  }
  
  .addReadMoreWrapTxt.showmorecontent .SecSec,
  .addReadMoreWrapTxt.showmorecontent .readLess {
    display: block;
  }
  /*Mobile Quotes*/
  .mobile-quote-content {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1rem;
    padding: 3rem 0 2rem;
    width: 100%;
    background: var(--light-light-gray);
  }
  #indicator-container span {
    font-size: 20px;
  }
  @media screen and (max-width: 1024px) {
    .quote .gold-quote-icon {
      width: 45px;
      left: 8px;
    }
  }
  @media screen and (max-width: 475px) {
    .quote .gold-quote-icon {
      width: 40px;
    }
    .mobile-quote-content {
      gap: 1rem;
      padding: 2rem 0 1rem;
    }
  }
  
  /*REVIEWS PAGE*/
  /*SLICK CAROUSEL*/
  #review-background {
    min-height: 80vh;
    background-image: url("/assets/imgs/about/about-reviews-background.jpg");
    background-size: cover;
  }
  #review-slider-container {
    width: 100vw;
  }
  @media (min-width: 769px) {
    #review-slider-container {
      grid-template-columns: 1fr min(40vw, 500px) 1fr;
    }
  }
  #review-slider-container .slick-track {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    padding: 2rem 0;
  }
  #review-slider-container .slick-slide {
    height: inherit !important;
  }
  #review-slider-container .slick-list {
    grid-column: auto / span 3;
  }
  #review-slider-container .slick-slide {
    min-height: 400px;
    width: 80vw;
    max-width: 600px;
    height: 100%;
    -webkit-transition: 0.5s ease all;
    -o-transition: 0.5s ease all;
    transition: 0.5s ease all;
    -webkit-transform: scale(0.8);
    -ms-transform: scale(0.8);
    transform: scale(0.8);
    opacity: 0.75;
    z-index: -1;
  }
  #review-slider-container .slick-slide blockquote {
    color: rgba(0, 0, 0, 0.5);
  }
  .brb-5 {
    border-radius: 0 0 5px 5px;
  }
  .brt-5 {
    border-radius: 5px 5px 0 0;
  }
  #review-slider-container .slick-center {
    -webkit-transform: scale(1) !important;
    -ms-transform: scale(1) !important;
    transform: scale(1) !important;
    z-index: 1 !important;
    opacity: 1 !important;
  }
  #review-slider-container .slick-slide.slick-center blockquote {
    color: #000000 !important;
  }
  .review-slider-card {
    position: relative;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  /*Slick Arrows*/
  #review-slider-container .slick-prev {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 2;
    grid-row: 2;
    margin-left: auto;
    cursor: pointer;
  }
  #review-slider-container .slick-next {
    -ms-grid-column: 3;
    grid-column: 3;
    -ms-grid-row: 2;
    grid-row: 2;
    cursor: pointer;
  }
  /*Custom Dots*/
  #review-slider-container .slick-dots {
    -ms-grid-column: 2;
    grid-column: 2;
    -ms-grid-row: 2;
    grid-row: 2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 2rem;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  #review-slider-container .slick-dots li button {
    font-size: 0;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    -webkit-transition: 0.5s ease-in-out background;
    -o-transition: 0.5s ease-in-out background;
    transition: 0.5s ease-in-out background;
  }
  #review-slider-container .slick-dots li.slick-active button {
    background-color: #ffffff;
  }
  
  /*Review Cards*/
  .review-sub-title {
    max-width: 750px;
  }
  
  .about-review-column {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    justify-content: space-between;
    gap: 4rem;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    max-width: 650px;
  }
  .about-review-card-container {
    position: relative;
  }
  .about-review-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    background: #fff;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.3),
      0px 1px 3px 1px rgba(0, 0, 0, 0.15);
    gap: 25px;
  }
  .about-review-card.normal {
    padding: 70px 0 30px;
    min-height: 260px;
  }
  .about-review-card.small {
    padding: 70px 0;
    min-height: 225px;
  }
  .about-review-card-blockquote {
    width: 85%;
  }
  .about-review-name {
    font-size: min(calc(1rem + 0.4vw), 22px);
    min-height: 50px;
    display: -ms-grid;
    display: grid;
    place-items: center;
  }
  
  /*TRUSTPILOT REVIEW*/
  .about-reviews-trustpilot-img {
    display: block;
    width: min(85%, 340px);
    height: auto;
    margin: 0 auto;
  }
  
  @media screen and (max-width: 899px) {
    .about-review-column-container {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
    }
    .about-review-column {
      gap: 3rem;
    }
  }
  
  @media screen and (max-width: 500px) {
    #review-background {
      background-position: 20% 0;
    }
    #review-slider-container .slick-track {
      padding: 2rem 0 0;
    }
    #review-slider-container .slick-dots li button {
      width: 20px;
      height: 20px;
    }
    .about-review-name,
    .read-more-text {
      font-size: 18px;
    }
    .about-review-name {
      min-height: 40px;
    }
    .about-review-card {
      min-height: 250px;
    }
    #review-slider-container .gold-quote-icon,
    .about-review-card .gold-quote-icon {
      width: 40px;
    }
  
    .about-review-card.normal,
    .about-review-card.small {
      padding: 50px 0;
      min-height: 250px;
    }
  }
  /*FAQ Page*/
  /*Search Bar*/
  .search-bar-container {
    position: relative;
    width: 100%;
    max-width: 525px;
    margin: 0 auto;
  }
  #faq-search-input {
    width: 100%;
    padding: 1rem;
    -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    border: none;
  }
  #faq-search-input:focus {
    outline: none;
  }
  #faq-search-input::-webkit-input-placeholder {
    color: var(--gray);
  }
  #faq-search-input::-moz-placeholder {
    color: var(--gray);
  }
  #faq-search-input:-ms-input-placeholder {
    color: var(--gray);
  }
  #faq-search-input::-ms-input-placeholder {
    color: var(--gray);
  }
  #faq-search-input::placeholder {
    color: var(--gray);
  }
  .faq-search-icon {
    position: absolute;
    top: 50%;
    right: 5%;
    width: 25px;
    height: 25px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  @media screen and (min-width: 500px) {
    #faq-search-input,
    .faq-sub-para-text {
      font-size: 20px;
    }
  }
  .faq-sub-para-text {
      max-width: 1080px;
      margin: 0 auto;
  }
  .faq-main-container {
      display: flex;
      flex-direction: column;
      gap: 25px;
  }
  .faq-section-wrapper {
      width: 100%;
      max-width: 910px;
      margin: 0 auto;
  }
  .faq .multi-acc-header {
    padding: 5px 2rem;
    min-height: 70px;
  }
  @media screen and (max-width: 500px) {
    #faq-search-input {
      padding: 0.7rem 1rem;
    }
    .faq-search-icon {
      width: 18px;
      height: 18px;
    }
    .faq .multi-acc-header {
      padding: 5px 1rem;
    }
    .faq .multi-acc-header p {
      line-height: 1.2;
    }
  }
  
  /*Blog Posts*/
  /*Inner Pages*/
  .blog-inner-post {
      overflow-x: hidden;
  }
  .blog-inner-post * {
      padding: 0 0 1rem;
  }
  .blog-inner-post img {
      padding: 0;
      max-width: 80vw;
      object-fit: cover;
  }
  .blog-inner-post h1,
  .blog-inner-post h2,
  .blog-inner-post h3,
  .blog-inner-post h4,
  .blog-inner-post h5 {
      font-family: museo-sans-rounded, sans-serif;
      padding: 0 0 1.5rem;
      line-height: 1.2
  }
  .blog-inner-post h1 strong,
  .blog-inner-post h2 strong,
  .blog-inner-post h3 strong,
  .blog-inner-post h4 strong,
  .blog-inner-post h5 strong {
      font-weight: 700;
  }
  @media (max-width: 450px) {
      .blog-inner-post img {
          float: none !important;
      }
  }
  
  /*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
  /*CONTACT PAGE*/
  .contact-main-section {
    max-width: 1700px;
  }
  .contact-main-page-content {
    display: -ms-grid;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
  
  /*INFO CARDS*/
  .contact-main-info-card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    width: fit-content;
  }
  .contact-main-info-card {
    display: grid;
    place-items: center;
    gap: 25px;
    min-height: 225px;
    width: 230px;
    padding: 30px 0;
    background-color: var(--light-light-gray);
  }
  .contact-main-info-card-icon {
    height: 50px;
  }
  
  .contact-main-acorn-club-logo {
    max-width: 370px;
  }
  
  #contact-main-tabs {
    max-width: 820px;
  }
  #contact-main-tabs {
    width: 100%;
    justify-self: flex-end;
    height: fit-content;
  }
  
  .main-contact-tab-form-container {
    display: grid;
    gap: 2rem;
    padding: 0 0 3rem 0;
    margin: 0 auto;
    height: 100%;
  }
  @media (min-width: 620px) {
    .main-contact-tab-form-container {
      grid-template-rows: 1fr 5fr;
    }
  }
  .main-contact-form {
    display: -ms-grid;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  
  .without-radio .main-contact-form {
    grid-template-rows: repeat(5, auto) 1fr;
  }
  .main-contact-form label,
  .main-contact-form-text {
    font-size: 22px;
  }
  .main-contact-form-xl-form-field {
    grid-column: 1 / -1;
  }
  .main-contact-radio .main-contact-form-text {
    padding-left: 10px;
  }
  .main-contact-submit-btn {
    font-size: 22px;
    min-width: 250px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    min-height: 60px;
    height: fit-content;
    text-align: center;
    background: -webkit-gradient(
        linear,
        left top,
        right top,
        from(#47a447),
        to(#0ba360)
      )
      var(--site-green);
    background: -o-linear-gradient(left, #47a447 0%, #0ba360 100%)
      var(--site-green);
    background: linear-gradient(90deg, #47a447 0%, #0ba360 100%) var(--site-green);
    -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.15);
    -webkit-transition: 0.2s transform ease-in-out, 0.2s opacity ease-in-out,
      0.2s box-shadow ease-in-out;
    -o-transition: 0.2s transform ease-in-out, 0.2s opacity ease-in-out,
      0.2s box-shadow ease-in-out;
    transition: 0.2s transform ease-in-out, 0.2s opacity ease-in-out,
      0.2s box-shadow ease-in-out;
    transform: translateY(0.00001px);
    border: none;
    color: #ffffff;
    border-radius: 100px;
    margin: 10px 0 0;
  }
  #contact-main-tabs .tab-selector-wrapper {
    width: 100%;
  }
  @media screen and (max-width: 1625px) and (min-width: 1301px) {
    .contact-main-info-card-container {
      width: 480px;
      justify-content: center;
    }
  }
  @media screen and (max-width: 1300px) {
    .contact-main-section {
      gap: 2rem;
    }
    .contact-main-page-content {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      gap: 7rem;
    }
    .contact-main-content {
      -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
      order: 2;
    }
  }
  @media screen and (max-width: 800px) and (min-width: 766px) {
    .contact-main-info-card-container {
      gap: 15px;
    }
  }
  @media screen and (max-width: 767px) {
    .contact-main-content {
      width: 85vw;
    }
    @media (min-width: 565px) {
      .contact-main-info-card-container {
        width: 480px;
        justify-content: center;
      }
    }
  }
  @media screen and (max-width: 620px) {
    .contact-main-section {
      gap: 1rem;
    }
    .contact-main-page-content {
      gap: 4rem;
    }
    #contact-main-tabs .tab-content {
      display: none;
    }
    #contact-main-tabs .tab-content.active {
      display: block;
    }
    .main-contact-form {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
    }
    .main-contact-form label,
    .main-contact-form-text {
      font-size: 20px;
    }
  }
  @media screen and (max-width: 564px) {
    .contact-main-info {
      align-items: center;
    }
    .contact-main-info-card-container {
      flex-direction: column;
    }
    .contact-main-info-card {
      min-height: 217px;
      padding: 25px 0;
    }
  }
  @media screen and (max-width: 500px) {
    .main-contact-submit-btn {
      min-width: 200px;
      min-height: 50px;
    }
  }
  @media screen and (max-width: 415px) {
    #contact-main-tabs .tab-selector-wrapper {
      width: fit-content;
    }
  }
  
  /*3 Contact Cards*/
  /*Laptop*/
  @media screen and (max-width: 1024px) {
    .contact-cards {
      gap: 1rem;
    }
  }
  /*Large Tablet*/
  @media screen and (max-width: 975px) {
    .contact-cards {
      -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
      gap: 3rem;
      width: 90%;
      max-width: 500px;
    }
  }
  @media screen and (max-width: 475px) {
    .contact-cards {
      padding: 4rem 0;
      gap: 35px;
    }
  }
  
  /*Future Customer Page*/
  .future-customer-intro-container {
    max-width: 1300px;
    width: 90%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 11fr 10fr;
    gap: 15px;
    padding: 30px 0 0 0;
  }
  .future-customer-intro-content {
    align-self: flex-end;
  }
  .future-customer-intro-content-p {
    max-width: 530px;
  }
  .future-customer-intro-img {
    display: block;
    height: auto;
    width: 100%;
    max-width: 543px;
    align-self: flex-end;
  }
  @media screen and (max-width: 1100px) {
    .future-customer-intro-container {
      grid-template-columns: 65fr 55fr;
    }
  }
  
  @media screen and (max-width: 999px) {
    .future-customer-intro-container {
      grid-template-columns: 1fr;
      gap: 20px;
      justify-items: center;
      padding: 15px 0 0 0;
    }
    .future-customer-intro-content {
      text-align: center;
      max-width: 730px;
    }
    .future-customer-intro-content-p {
      margin: 0 auto;
    }
    .future-customer-intro-img {
      order: -1;
    }
  }
  
  /*Form Section*/
  .future-customer-form-container {
    padding: 115px 0 150px;
  }
  .future-customer-form-img {
    width: 235px;
  }
  .future-customer-form-content-p {
    max-width: 490px;
  }
  
  .future-customer-acorn-club-logo {
    width: 200px;
    height: auto;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
  }
  .future-customer-icon-container {
    display: -ms-grid;
    display: grid;
    place-items: center;
    height: 100px;
    width: 100px;
  }
  .contact-future-phone {
    max-width: 80px;
  }
  @media screen and (max-width: 500px) {
    .future-customer-acorn-club-logo {
      width: 150px;
    }
    .future-customer-icon-container {
      height: 75px;
      width: 75px;
    }
  }
  
  /*Future Customer Awards Section*/
  .future-customer-awards-section {
    margin: 180px 0 0;
  }
  .future-customer-awards-container {
    background-image: url("/assets/imgs/contact/future-customer-stairlift-backdrop.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 45% 75%;
    min-height: min(42vw, 700px);
    display: grid;
  }
  .future-customer-awards-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 85vw;
    max-width: 1400px;
    margin: auto;
    padding: 45px 0 60px;
  }
  .future-customer-awards-content {
    width: 47.5vw;
    max-width: 680px;
  }
  .future-customer-awards-img-container {
    display: flex;
    align-items: center;
    gap: 70px;
    width: fit-content;
  }
  .future-customer-awards-img-eou {
    width: clamp(185px, calc(11.5625rem + ((1vw - 7.68px) * 1.0417)), 192px);
  }
  .future-customer-awards-img-8minute {
    width: clamp(185px, calc(11.5625rem + ((1vw - 7.68px) * 4.4643)), 215px);
  }
  
  @media screen and (max-width: 900px) {
    .future-customer-awards-content-wrapper {
      width: 90vw;
    }
    .future-customer-awards-content {
      width: 52vw;
    }
    .future-customer-awards-img-container {
      gap: 40px;
    }
  }
  
  @media screen and (max-width: 700px) {
    .future-customer-awards-container {
      background-position: 55% 75%;
    }
  }
  
  @media screen and (max-width: 600px) {
    .future-customer-awards-section {
      margin: 80px 0 0;
    }
    .future-customer-awards-container {
      background-image: none;
    }
    .future-customer-awards-content-wrapper {
      width: 100vw;
      gap: 0;
      padding: 0;
    }
    .future-customer-awards-content {
      width: 100%;
      padding: 25px 5vw 0;
      background: linear-gradient(
        62.33deg,
        #c6bcb2 5.48%,
        #c3b6ad 14.44%,
        #d1cac2 28.34%,
        #c6bcb3 67.46%
      );
    }
    .future-customer-awards-mobile-bottom-container {
      display: grid;
    }
    .future-customer-awards-mobile-bottom-img {
      display: block;
      width: 100vw;
      height: auto;
      grid-column: 1;
      grid-row: 1;
    }
    .future-customer-awards-img-container {
      grid-column: 1;
      grid-row: 1;
      width: 90vw;
      margin: 0 auto;
      flex-direction: column;
      align-items: initial;
      justify-content: center;
      gap: clamp(20px, calc(1.25rem + ((1vw - 3.75px) * 4.4444)), 30px);
      padding: 0 0 45px;
    }
    .future-customer-awards-img-eou,
    .future-customer-awards-img-8minute {
      width: clamp(150px, calc(9.375rem + ((1vw - 4px) * 17.5)), 185px);
    }
  }
  @media screen and (max-width: 400px) {
    .future-customer-awards-img-container {
      align-items: initial;
      justify-content: flex-end;
    }
  }
  
  /*EXISTING CUSTOMTER PAGE*/
  .existing-customer-banner-container {
    max-width: 1920px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: min(5.5vw, 100px);
    align-items: center;
    justify-items: flex-end;
  }
  .existing-customer-banner-content {
    max-width: 570px;
    margin: 0 0 0 min(5vw, 96px);
  }
  @media (min-width: 911px) {
      .existing-customer-banner-title {
          margin: 0 min(-5vw, -96px) 0 0;
      }
  }
  .existing-customer-banner-img {
    display: block;
    height: auto;
    width: min(50vw, 960px);
  }
  
  @media screen and (max-width: 1023px) {
    .existing-customer-banner-container {
      gap: 0;
    }
  }
  
  @media screen and (max-width: 910px) {
    .existing-customer-banner-content {
      justify-self: flex-start;
    }
    .existing-customer-banner-p-desktop {
      display: none;
    }
    .existing-customer-banner-p-mobile {
      display: block;
      width: 90vw;
      margin: 0 auto;
    }
    .existing-customer-banner-img {
      margin: 0 0 0 -4vw;
    }
  }
  
  @media screen and (max-width: 700px) {
    .existing-customer-banner-img {
      width: max(45vw, 180px);
    }
  }
  
  @media (max-width: 1099px) and (min-width: 976px) {
      .existing-customer.contact-cards {
          -ms-grid-columns: 1fr;
          grid-template-columns: 1fr;
          gap: 3rem;
          width: 90%;
          max-width: 500px;
      }
  }
  
  /*Existing Customer Acorn Club*/
  .existing-customer-acorn-club-container {
    max-width: 1000px;
    width: 90vw;
    display: grid;
    gap: 0 50px;
    padding: 75px 0 0 60px;
  }
  .existing-customer-acorn-club-title-container {
    display: grid;
    align-items: center;
    max-width: 500px;
  }
  .existing-customer-acorn-club-title,
  .existing-customer-acorn-club-title-svg {
    grid-column: 1;
    grid-row: 1;
  }
  .existing-customer-acorn-club-title-svg {
    margin: 0 0 50px -55px;
    z-index: -1;
    width: 115px;
  }
  .existing-customer-acorn-club-para {
    max-width: 600px;
  }
  .existing-customer-acorn-club-phone {
    display: block;
    width: min(100%, 250px);
    height: auto;
    grid-row: 1 / span 3;
    grid-column: 2;
    justify-self: flex-end;
    align-self: center;
  }
  .existing-customer-acorn-club-btn-container {
    width: 100%;
    height: fit-content;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 35px;
    align-self: center;
    padding: 20px 0 0 0;
  }
  
  @media screen and (max-width: 1050px) {
    .existing-customer-acorn-club-container {
      padding: 75px 0 0 50px;
    }
  }
  
  @media screen and (max-width: 999px) {
    .existing-customer-acorn-club-title-svg.desktop {
      display: none;
    }
    .existing-customer-acorn-club-title-svg.mobile {
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      width: 90px;
      height: auto;
      transform: translate(15%, -15%);
    }
    .existing-customer-acorn-club-title {
      display: grid;
      place-items: center;
    }
    .existing-customer-acorn-club-title-span {
      position: relative;
      width: fit-content;
    }
    .existing-customer-acorn-club-container {
      gap: 25px;
      padding: 75px 0 0 0;
    }
    .existing-customer-acorn-club-title-container {
      width: fit-content;
      justify-self: center;
      text-align: center;
    }
    .existing-customer-acorn-club-phone {
      grid-row: 2;
      grid-column: 1;
      justify-self: center;
      width: min(45vw, 200px);
    }
    .existing-customer-acorn-club-para,
    .existing-customer-acorn-club-btn-container {
      justify-self: center;
    }
    .existing-customer-acorn-club-btn-container {
      padding: 0;
      gap: 50px;
      justify-content: center;
      flex-wrap: wrap;
    }
  }
  
  @media screen and (max-width: 650px) {
    .existing-customer-acorn-club-btn-container {
      flex-direction: column;
      align-items: center;
    }
  }
  
  @media screen and (max-width: 475px) {
    .existing-customer-acorn-club-title {
      gap: 3px;
    }
    .existing-customer-acorn-club-title-svg.mobile {
      width: 72px;
      transform: translate(26%, -30%);
    }
  
    /*Existing Customer Contact Cards*/
    .existing-customer.contact-cards {
      padding: 160px 0 115px;
    }
  }
  
  /*Other Services Section*/
  .existing-customer-other-services-grid-container {
      max-width: 1375px;
  }
  .existing-customer-other-services-grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: 1fr 1rem auto 1rem auto;
    grid-template-rows: 1fr auto auto;
    gap: 1rem;
  }
  .other-services-header,
  .other-services-p,
  .other-services-btn {
    -ms-grid-column: 1;
    grid-column: 1;
  }
  .other-services-header {
    -ms-grid-row: 1;
    grid-row: 1;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    align-self: flex-end;
  }
  .other-services-icon {
    width: clamp(300px, 35vw, 475px);
    height: auto;
    -ms-grid-row: 1;
    -ms-grid-row-span: 3;
    grid-row: 1 / span 3;
    -ms-grid-column: 2;
    grid-column: 2;
    -ms-grid-row-align: center;
    align-self: center;
  }
  .other-services-p {
    -ms-grid-row: 2;
    grid-row: 2;
    max-width: 800px;
  }
  .other-services-btn {
    -ms-grid-row: 3;
    grid-row: 3;
    padding: 1rem 0 0;
  }
  @media (min-width: 701px) {
      .other-services-icon {
          justify-self: flex-end;
      }
  }
  @media (max-width: 1100px) and (min-width: 701px) {
    .other-services-icon {
      grid-row: 1 / span 2;
    }
    .other-services-btn {
      grid-column: 1 / span 2;
    }
  }
  @media screen and (max-width: 700px) {
    /*Other Services Section*/
    .existing-customer-other-services-grid {
      -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
    }
    .other-services-icon {
      -ms-grid-column: 1;
      grid-column: 1;
      -ms-grid-row: 2;
      grid-row: 2;
      width: min(375px, 90%);
      padding: 1rem 0;
    }
    .other-services-p {
      -ms-grid-row: 3;
      grid-row: 3;
    }
    .other-services-btn {
      -ms-grid-row: 4;
      grid-row: 4;
      padding: 0;
    }
  }
  
  /*Brochure Page*/
  @media (max-width: 550px) {
    .brochure-sub-content-container {
      text-align: left;
    }
  }
  
  /*Complaints Page*/
  .complaints-hours-img-container {
    max-width: 525px;
    width: 50%;
  }
  @media (min-width: 425px) {
    .contact-complaints-hours-p {
      display: grid;
    }
  }
  .contact-complaints-ac-section {
    padding: 0 0 clamp(100px, calc(6.25rem + ((1vw - 7.68px) * 37.8788)), 150px);
  }
  @media screen and (max-width: 700px) {
    .complaints-hours-container {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
    }
    .complaints-hours-content {
      padding: 0 0 15px;
    }
    .complaints-hours-img-container {
      width: 100%;
    }
  }
  
  /*Thank You Form Error Page*/
  .or-alt-container::before {
    content: "";
    position: absolute;
    height: 2px;
    background-color: rgba(131, 26, 61, 0.2);
    top: 50%;
    left: 0;
    right: 0;
    z-index: -1;
  }
  .or-alt-text-bg {
    width: fit-content;
  }
  .or-alt-text {
    padding: 0 10px;
    background: #ffffff;
  }
  
  /*Award Winning Stairlift Cards*/
  .award-winning-stairlift-section {
    width: 100vw;
  }
  .award-winning-stairlift-wrapper {
    display: grid;
    width: 100%;
    overflow-x: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .award-winning-stairlift-wrapper::-webkit-scrollbar {
    display: none;
  }
  .award-winning-stairlift-container {
    display: flex;
    width: fit-content;
    gap: 30px;
    justify-self: center;
  }
  .award-winning-stairlift-card {
    display: grid;
    grid-template-rows: 1fr 1fr;
    width: 265px;
    border: 1.5px solid #e6d1d8;
  }
  .award-winning-stairlift-card-img {
    display: block;
    height: auto;
    width: 100%;
  }
  .award-winning-stairlift-card-content-title {
    padding-bottom: 5px;
  }
  .award-winning-stairlift-card-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 5px;
    padding: 20px;
  }
  .award-winning-stairlift-card-link {
    font-size: 22px;
  }
  @media screen and (max-width: 900px) {
    .award-winning-stairlift-container {
      padding: 0 40px;
    }
  }
  @media screen and (max-width: 475px) {
    .award-winning-stairlift-container {
      padding: 0 max(7.5vw, 25px);
    }
    .award-winning-stairlift-card {
      grid-template-rows: 1fr auto;
    }
    .award-winning-stairlift-card-link {
      font-size: 20px;
    }
  }
  
  /*404 ERROR PAGE*/
  .error-header-container {
    display: flex;
    justify-content: space-between;
    gap: 5vw;
    max-width: 1020px;
  }
  .error-header-title {
    font-size: clamp(90px, calc(5.625rem + ((1vw - 10px) * 1.087)), 100px);
    line-height: 1;
  }
  .error-header-content {
    max-width: 510px;
  }
  .error-header-img {
    display: block;
    width: min(30vw, 400px);
    height: auto;
  }
  
  @media screen and (max-width: 1000px) {
    .error-header-title {
      font-size: clamp(60px, calc(3.75rem + ((1vw - 7.44px) * 11.7188)), 90px);
    }
  }
  
  @media screen and (max-width: 850px) {
    /*Header Section*/
    .error-header-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .error-header-img {
      order: -1;
    }
  
    /*Error Button Container*/
    .error-btn-container {
      padding: 0 0 2rem 0;
      max-width: 550px;
    }
  }
  
  @media screen and (max-width: 500px) {
    .error-header-title {
      font-size: 50px;
    }
  }
  
  /*LOCATIONS PAGE*/
  .locations-grid {
    max-width: 1550px;
    gap: 20px;
  }
  .location-card {
    padding: 1.5rem 1rem 2.5rem;
  }
  .location-card-contact {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 5px;
    padding: 1.5rem 0 0;
  }
  
  @media screen and (max-width: 1300px) {
    .locations-grid {
      -ms-grid-columns: 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr;
      -ms-grid-rows: 1fr 1fr 1fr;
      grid-template-rows: 1fr 1fr 1fr;
    }
    .locations-grid > *:nth-child(1) {
      -ms-grid-row: 1;
      -ms-grid-column: 1;
    }
    .locations-grid > *:nth-child(2) {
      -ms-grid-row: 1;
      -ms-grid-column: 2;
    }
    .locations-grid > *:nth-child(3) {
      -ms-grid-row: 1;
      -ms-grid-column: 3;
    }
    .locations-grid > *:nth-child(4) {
      -ms-grid-row: 2;
      -ms-grid-column: 1;
    }
    .locations-grid > *:nth-child(5) {
      -ms-grid-row: 2;
      -ms-grid-column: 2;
    }
    .locations-grid > *:nth-child(6) {
      -ms-grid-row: 2;
      -ms-grid-column: 3;
    }
    .locations-grid > *:nth-child(7) {
      -ms-grid-row: 3;
      -ms-grid-column: 1;
    }
    .locations-grid > *:nth-child(8) {
      -ms-grid-row: 3;
      -ms-grid-column: 2;
    }
    .locations-grid > *:nth-child(9) {
      -ms-grid-row: 3;
      -ms-grid-column: 3;
    }
  }
  @media screen and (max-width: 900px) {
    .locations-grid {
      -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
      -ms-grid-rows: 1fr 1fr 1fr 1fr;
      grid-template-rows: 1fr 1fr 1fr 1fr;
    }
    .locations-grid > *:nth-child(1) {
      -ms-grid-row: 1;
      -ms-grid-column: 1;
    }
    .locations-grid > *:nth-child(2) {
      -ms-grid-row: 1;
      -ms-grid-column: 2;
    }
    .locations-grid > *:nth-child(3) {
      -ms-grid-row: 2;
      -ms-grid-column: 1;
    }
    .locations-grid > *:nth-child(4) {
      -ms-grid-row: 2;
      -ms-grid-column: 2;
    }
    .locations-grid > *:nth-child(5) {
      -ms-grid-row: 3;
      -ms-grid-column: 1;
    }
    .locations-grid > *:nth-child(6) {
      -ms-grid-row: 3;
      -ms-grid-column: 2;
    }
    .locations-grid > *:nth-child(7) {
      -ms-grid-row: 4;
      -ms-grid-column: 1;
    }
    .locations-grid > *:nth-child(8) {
      -ms-grid-row: 4;
      -ms-grid-column: 2;
    }
    .location-card {
      padding: 1rem;
    }
  }
  @media screen and (max-width: 600px) {
    .locations-grid {
      -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
      -ms-grid-rows: (1fr) [6];
      grid-template-rows: repeat(6, 1fr);
      width: 85%;
      max-width: 350px;
      margin: 0 auto;
    }
    .locations-grid > *:nth-child(1) {
      -ms-grid-row: 1;
      -ms-grid-column: 1;
    }
    .locations-grid > *:nth-child(2) {
      -ms-grid-row: 2;
      -ms-grid-column: 1;
    }
    .locations-grid > *:nth-child(3) {
      -ms-grid-row: 3;
      -ms-grid-column: 1;
    }
    .locations-grid > *:nth-child(4) {
      -ms-grid-row: 4;
      -ms-grid-column: 1;
    }
    .locations-grid > *:nth-child(5) {
      -ms-grid-row: 5;
      -ms-grid-column: 1;
    }
    .locations-grid > *:nth-child(6) {
      -ms-grid-row: 6;
      -ms-grid-column: 1;
    }
  }
  
  /*Inner Location Pages*/
  .inner-location-banner .page-header {
    object-position: 15% 0;
  }
  @media screen and (max-width: 500px) {
    .inner-location-banner .page-header {
      object-position: 0;
    }
    .inner-location-banner .page-header-title.left {
      font-size: 30px;
      min-width: 200px;
    }
  }
  
  
  
  .blog-inner-post a:link {
      color:#8f023d;
        font-weight: 800;
  }
  
  .blog-inner-post a:visited {
      color:#8f023d;
        font-weight: 800;
  }
  
  .blog-inner-post a:hover {
      color:#444;
        font-weight: 800;
  }
  
  /*PROMO STYLING*/
  
  .promo-alignment {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100vw;
  }
  
  /*IT Promo Banner NEW*/
  @media (hover: hover) and (pointer: fine) {
      .promo-banner:hover {
          opacity: inherit;
      }
  }
  /*Promo Fonts*/
  .promo-banner-ribbon-text,
  .promo-banner-main-text,
  .promo-banner-main-text-large {
      font-family: montserrat, sans-serif;
  }
  .promo-banner-main-text.large {
      font-weight: 700;
      font-size: clamp(55px, calc(3.4375rem + ((1vw - 14.4px) * 3.125)), 70px);
  }
  .promo-banner-ribbon-text {
      font-weight: 700;
      font-size: clamp(24px, calc(1.5rem + ((1vw - 14.4px) * 0.4167)), 26px);
  }
  .promo-banner-main-text.regular {
      font-size: clamp(35px, calc(2.1875rem + ((1vw - 14.4px) * 2.0833)), 45px);
  }
  /*Promo Structure*/
  .promo-banner {
      display: block;
      width: 100vw;
      max-width: 1920px;
      z-index: 2;
      position: relative;
  }
  .promo-banner-container {
      width: 100%;
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      background: linear-gradient(144.71deg, #FA4B29 -8.15%, #BD0E00 82.16%);
  }
  /*Ribbons*/
  .promo-banner-ribbon {
      height: 100%;
      display: flex;
      align-items: center;
      max-width: 550px;
  }
  .promo-banner-ribbon.left {
      background: linear-gradient(346.41deg, #FFEA63 38.18%, #FFCC2C 53.76%, #FFB907 65.79%);
      clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
      padding: 0 15% 0 0;
      justify-content: flex-end;
  }
  .promo-banner-ribbon.right {
      background: linear-gradient(15deg, #FFEA63 38.18%, #FFCC2C 53.76%, #FFB907 65.79%);
      clip-path: polygon(0 0, 100% 0, 100% 100%, 15% 100%);
      padding: 0 0 0 15%;
      justify-content: flex-start;
  }
  /*Main*/
  .promo-banner-main {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      text-align: center;
      padding: 2px clamp(1px, calc(0.0625rem + ((1vw - 14.4px) * 18.5417)), 90px)
  }
  .promo-banner-checkmark {
      display: block;
      width: clamp(65px, calc(4.0625rem + ((1vw - 14.4px) * 2.5)), 77px);
      height: auto;
  }
  .promo-banner-main-text-container {
      display: inline-block;
  }
  .promo-banner-main-text {
      vertical-align: middle;
  }
  
  @media (max-width: 1439px) {
      .promo-banner-main-text.large {
          font-size: clamp(45px, calc(2.8125rem + ((1vw - 10.5px) * 6.6667)), 55px);
      }
      .promo-banner-container {
          grid-template-columns: 1fr 1fr;
      }
      .promo-banner-ribbon {
          max-width: none;
      }
      .promo-banner-ribbon.left {
          display: none;
      }
      .promo-banner-ribbon.right {
          justify-content: center;
          padding: 0 0 0 10%;
      }
      .promo-banner-main {
          gap: 5px;
      }
  }
  
  @media (max-width: 1000px) {
      .promo-banner-ribbon-text {
          font-size: clamp(16px, calc(1rem + ((1vw - 6.5px) * 2.2857)), 24px);
      }
      .promo-banner-main-text.large {
          font-size: clamp(34px, calc(2.125rem + ((1vw - 6.5px) * 3.1429)), 45px);
      }
      .promo-banner-main-text.regular {
          font-size: clamp(22px, calc(1.375rem + ((1vw - 6.5px) * 3.7143)), 35px);
      }
      .promo-banner-container {
          grid-template-columns: 1.1fr 1fr;
          min-height: 50px;
      }
      .promo-banner-checkmark {
          width: clamp(35px, calc(2.1875rem + ((1vw - 6.5px) * 8.5714)), 65px);
      }
  }
  
  @media (max-width: 768px) {
      .promo-banner-ribbon.right {
          clip-path: polygon(0 0, 100% 0, 100% 100%, 10% 100%);
          padding: 0 0 0 5%;
      }
  }
  
  @media (max-width: 624px) {
      .promo-banner-container {
          grid-template-columns: 1fr;
          grid-template-rows: 50px 30px;
      }
      .promo-banner-ribbon.right {
          clip-path: none;
          padding: 0;
      }
  }
  
  .text-shadow {
      text-shadow: 0.5px 1px black!important;
      color: white;
  }
  
  /*Bootstrap classes*/
  .img-fluid {
    max-width: 100%;
    height: auto;
  }
  
  /*Bootstrap containers*/
  .container,
  .container-fluid,
  .container-xxl,
  .container-xl,
  .container-lg,
  .container-md,
  .container-sm {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    width: 100%;
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    margin-right: auto;
    margin-left: auto;
  }
  
  
  @media (min-width: 576px) {
    .container-sm, .container {
      max-width: 540px;
    }
  }
  @media (min-width: 768px) {
    .container-md, .container-sm, .container {
      max-width: 720px;
    }
  }
  @media (min-width: 992px) {
    .container-lg, .container-md, .container-sm, .container {
      max-width: 960px;
    }
  }
  @media (min-width: 1200px) {
    .container-xl, .container-lg, .container-md, .container-sm, .container {
      max-width: 1140px;
    }
  }
  @media (min-width: 1400px) {
    .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
      max-width: 1320px;
    }
  }
  
  /*Boostrap rows and cols*/
  
  .row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-right: calc(-0.5 * var(--bs-gutter-x));
    margin-left: calc(-0.5 * var(--bs-gutter-x));
  }
  .row > * {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    margin-top: var(--bs-gutter-y);
  }
  
  .col {
    flex: 1 0 0%;
  }
  
  .row-cols-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  
  .row-cols-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  
  .row-cols-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  
  .row-cols-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  
  .row-cols-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  
  .row-cols-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  
  .row-cols-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  
  .col-auto {
    flex: 0 0 auto;
    width: auto;
  }
  
  .col-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  
  .col-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  
  .col-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  
  .col-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  
  .col-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  
  .col-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  
  .col-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  
  .col-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  
  .col-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  
  .col-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  
  .col-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  
  .col-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  }
  
  /*Bootstrap row cols media queries*/
  
  @media (min-width: 576px) {
    .col-sm {
      flex: 1 0 0%;
    }
    .row-cols-sm-auto > * {
      flex: 0 0 auto;
      width: auto;
    }
    .row-cols-sm-1 > * {
      flex: 0 0 auto;
      width: 100%;
    }
    .row-cols-sm-2 > * {
      flex: 0 0 auto;
      width: 50%;
    }
    .row-cols-sm-3 > * {
      flex: 0 0 auto;
      width: 33.3333333333%;
    }
    .row-cols-sm-4 > * {
      flex: 0 0 auto;
      width: 25%;
    }
    .row-cols-sm-5 > * {
      flex: 0 0 auto;
      width: 20%;
    }
    .row-cols-sm-6 > * {
      flex: 0 0 auto;
      width: 16.6666666667%;
    }
    .col-sm-auto {
      flex: 0 0 auto;
      width: auto;
    }
    .col-sm-1 {
      flex: 0 0 auto;
      width: 8.33333333%;
    }
    .col-sm-2 {
      flex: 0 0 auto;
      width: 16.66666667%;
    }
    .col-sm-3 {
      flex: 0 0 auto;
      width: 25%;
    }
    .col-sm-4 {
      flex: 0 0 auto;
      width: 33.33333333%;
    }
    .col-sm-5 {
      flex: 0 0 auto;
      width: 41.66666667%;
    }
    .col-sm-6 {
      flex: 0 0 auto;
      width: 50%;
    }
    .col-sm-7 {
      flex: 0 0 auto;
      width: 58.33333333%;
    }
    .col-sm-8 {
      flex: 0 0 auto;
      width: 66.66666667%;
    }
    .col-sm-9 {
      flex: 0 0 auto;
      width: 75%;
    }
    .col-sm-10 {
      flex: 0 0 auto;
      width: 83.33333333%;
    }
    .col-sm-11 {
      flex: 0 0 auto;
      width: 91.66666667%;
    }
    .col-sm-12 {
      flex: 0 0 auto;
      width: 100%;
    }
  }
  
  @media (min-width: 768px) {
    .col-md {
      flex: 1 0 0%;
    }
    .row-cols-md-auto > * {
      flex: 0 0 auto;
      width: auto;
    }
    .row-cols-md-1 > * {
      flex: 0 0 auto;
      width: 100%;
    }
    .row-cols-md-2 > * {
      flex: 0 0 auto;
      width: 50%;
    }
    .row-cols-md-3 > * {
      flex: 0 0 auto;
      width: 33.3333333333%;
    }
    .row-cols-md-4 > * {
      flex: 0 0 auto;
      width: 25%;
    }
    .row-cols-md-5 > * {
      flex: 0 0 auto;
      width: 20%;
    }
    .row-cols-md-6 > * {
      flex: 0 0 auto;
      width: 16.6666666667%;
    }
    .col-md-auto {
      flex: 0 0 auto;
      width: auto;
    }
    .col-md-1 {
      flex: 0 0 auto;
      width: 8.33333333%;
    }
    .col-md-2 {
      flex: 0 0 auto;
      width: 16.66666667%;
    }
    .col-md-3 {
      flex: 0 0 auto;
      width: 25%;
    }
    .col-md-4 {
      flex: 0 0 auto;
      width: 33.33333333%;
    }
    .col-md-5 {
      flex: 0 0 auto;
      width: 41.66666667%;
    }
    .col-md-6 {
      flex: 0 0 auto;
      width: 50%;
    }
    .col-md-7 {
      flex: 0 0 auto;
      width: 58.33333333%;
    }
    .col-md-8 {
      flex: 0 0 auto;
      width: 66.66666667%;
    }
    .col-md-9 {
      flex: 0 0 auto;
      width: 75%;
    }
    .col-md-10 {
      flex: 0 0 auto;
      width: 83.33333333%;
    }
    .col-md-11 {
      flex: 0 0 auto;
      width: 91.66666667%;
    }
    .col-md-12 {
      flex: 0 0 auto;
      width: 100%;
    }
  }
  
  @media (min-width: 992px) {
    .col-lg {
      flex: 1 0 0%;
    }
    .row-cols-lg-auto > * {
      flex: 0 0 auto;
      width: auto;
    }
    .row-cols-lg-1 > * {
      flex: 0 0 auto;
      width: 100%;
    }
    .row-cols-lg-2 > * {
      flex: 0 0 auto;
      width: 50%;
    }
    .row-cols-lg-3 > * {
      flex: 0 0 auto;
      width: 33.3333333333%;
    }
    .row-cols-lg-4 > * {
      flex: 0 0 auto;
      width: 25%;
    }
    .row-cols-lg-5 > * {
      flex: 0 0 auto;
      width: 20%;
    }
    .row-cols-lg-6 > * {
      flex: 0 0 auto;
      width: 16.6666666667%;
    }
    .col-lg-auto {
      flex: 0 0 auto;
      width: auto;
    }
    .col-lg-1 {
      flex: 0 0 auto;
      width: 8.33333333%;
    }
    .col-lg-2 {
      flex: 0 0 auto;
      width: 16.66666667%;
    }
    .col-lg-3 {
      flex: 0 0 auto;
      width: 25%;
    }
    .col-lg-4 {
      flex: 0 0 auto;
      width: 33.33333333%;
    }
    .col-lg-5 {
      flex: 0 0 auto;
      width: 41.66666667%;
    }
    .col-lg-6 {
      flex: 0 0 auto;
      width: 50%;
    }
    .col-lg-7 {
      flex: 0 0 auto;
      width: 58.33333333%;
    }
    .col-lg-8 {
      flex: 0 0 auto;
      width: 66.66666667%;
    }
    .col-lg-9 {
      flex: 0 0 auto;
      width: 75%;
    }
    .col-lg-10 {
      flex: 0 0 auto;
      width: 83.33333333%;
    }
    .col-lg-11 {
      flex: 0 0 auto;
      width: 91.66666667%;
    }
    .col-lg-12 {
      flex: 0 0 auto;
      width: 100%;
    }
  }
  
  @media (min-width: 1200px) {
    .col-xl {
      flex: 1 0 0%;
    }
    .row-cols-xl-auto > * {
      flex: 0 0 auto;
      width: auto;
    }
    .row-cols-xl-1 > * {
      flex: 0 0 auto;
      width: 100%;
    }
    .row-cols-xl-2 > * {
      flex: 0 0 auto;
      width: 50%;
    }
    .row-cols-xl-3 > * {
      flex: 0 0 auto;
      width: 33.3333333333%;
    }
    .row-cols-xl-4 > * {
      flex: 0 0 auto;
      width: 25%;
    }
    .row-cols-xl-5 > * {
      flex: 0 0 auto;
      width: 20%;
    }
    .row-cols-xl-6 > * {
      flex: 0 0 auto;
      width: 16.6666666667%;
    }
    .col-xl-auto {
      flex: 0 0 auto;
      width: auto;
    }
    .col-xl-1 {
      flex: 0 0 auto;
      width: 8.33333333%;
    }
    .col-xl-2 {
      flex: 0 0 auto;
      width: 16.66666667%;
    }
    .col-xl-3 {
      flex: 0 0 auto;
      width: 25%;
    }
    .col-xl-4 {
      flex: 0 0 auto;
      width: 33.33333333%;
    }
    .col-xl-5 {
      flex: 0 0 auto;
      width: 41.66666667%;
    }
    .col-xl-6 {
      flex: 0 0 auto;
      width: 50%;
    }
    .col-xl-7 {
      flex: 0 0 auto;
      width: 58.33333333%;
    }
    .col-xl-8 {
      flex: 0 0 auto;
      width: 66.66666667%;
    }
    .col-xl-9 {
      flex: 0 0 auto;
      width: 75%;
    }
    .col-xl-10 {
      flex: 0 0 auto;
      width: 83.33333333%;
    }
    .col-xl-11 {
      flex: 0 0 auto;
      width: 91.66666667%;
    }
    .col-xl-12 {
      flex: 0 0 auto;
      width: 100%;
    }
  }
  
  @media (min-width: 1400px) {
    .col-xxl {
      flex: 1 0 0%;
    }
    .row-cols-xxl-auto > * {
      flex: 0 0 auto;
      width: auto;
    }
    .row-cols-xxl-1 > * {
      flex: 0 0 auto;
      width: 100%;
    }
    .row-cols-xxl-2 > * {
      flex: 0 0 auto;
      width: 50%;
    }
    .row-cols-xxl-3 > * {
      flex: 0 0 auto;
      width: 33.3333333333%;
    }
    .row-cols-xxl-4 > * {
      flex: 0 0 auto;
      width: 25%;
    }
    .row-cols-xxl-5 > * {
      flex: 0 0 auto;
      width: 20%;
    }
    .row-cols-xxl-6 > * {
      flex: 0 0 auto;
      width: 16.6666666667%;
    }
    .col-xxl-auto {
      flex: 0 0 auto;
      width: auto;
    }
    .col-xxl-1 {
      flex: 0 0 auto;
      width: 8.33333333%;
    }
    .col-xxl-2 {
      flex: 0 0 auto;
      width: 16.66666667%;
    }
    .col-xxl-3 {
      flex: 0 0 auto;
      width: 25%;
    }
    .col-xxl-4 {
      flex: 0 0 auto;
      width: 33.33333333%;
    }
    .col-xxl-5 {
      flex: 0 0 auto;
      width: 41.66666667%;
    }
    .col-xxl-6 {
      flex: 0 0 auto;
      width: 50%;
    }
    .col-xxl-7 {
      flex: 0 0 auto;
      width: 58.33333333%;
    }
    .col-xxl-8 {
      flex: 0 0 auto;
      width: 66.66666667%;
    }
    .col-xxl-9 {
      flex: 0 0 auto;
      width: 75%;
    }
    .col-xxl-10 {
      flex: 0 0 auto;
      width: 83.33333333%;
    }
    .col-xxl-11 {
      flex: 0 0 auto;
      width: 91.66666667%;
    }
    .col-xxl-12 {
      flex: 0 0 auto;
      width: 100%;
    }
  }
  
  