:root {
    /* Add these styles to your global stylesheet, which is used across all site pages. You only need to do this once. All elements in the library derive their variables and base styles from this central sheet, simplifying site-wide edits. For instance, if you want to modify how your h2's appear across the site, you just update it once in the global styles, and the changes apply everywhere. */
    --primary: #b70000;
    --primaryLight: #ffba43;
    --secondary: #ffba43;
    --secondaryLight: #ffba43;
    --headerColor: #1a1a1a;
    --bodyTextColor: #4e4b66;
    --bodyTextColorWhite: #fafbfc;
    /* 13px - 16px */
    --topperFontSize: clamp(0.8125rem, 1.6vw, 1rem);
    /* 31px - 49px */
    --headerFontSize: clamp(1.9375rem, 3.9vw, 3.0625rem);
    --bodyFontSize: 1rem;
    /* 60px - 100px top and bottom */
    --sectionPadding: clamp(3.75rem, 7.82vw, 6.25rem) 1rem;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Tenor Sans", sans-serif;
    font-weight: 400;
    font-style: normal;
}

picture {
  pointer-events: none;
}

*, *:before, *:after {
    /* prevents padding from affecting height and width */
    box-sizing: border-box;
}
.cs-topper {
    font-size: var(--topperFontSize);
    line-height: 1.2em;
    text-transform: uppercase;
    text-align: inherit;
    letter-spacing: .1em;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
    display: block;
}

.cs-title {
    font-size: var(--headerFontSize);
    font-weight: 900;
    line-height: 1.2em;
    text-align: inherit;
    max-width: 43.75rem;
    margin: 0 0 1rem 0;
    color: var(--headerColor);
    position: relative;
}

.cs-text {
    font-size: var(--bodyFontSize);
    line-height: 1.5em;
    text-align: inherit;
    width: 100%;
    max-width: 40.625rem;
    margin: 0;
    color: var(--bodyTextColor);
}

/*-- -------------------------- -->
<---      Dark Mode Toggle      -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    body.dark-mode #dark-mode-toggle .cs-sun {
      transform: translate(-50%, -50%);
      opacity: 1;
    }
    body.dark-mode #dark-mode-toggle .cs-moon {
      transform: translate(-50%, -150%);
      opacity: 0;
      fill: #fff;
    }
    #dark-mode-toggle {
      display: block;
      position: absolute;
      top: 0rem;
      right: 1rem;
      width: 3rem;
      height: 3rem;
      background: transparent;
      border: none;
      overflow: hidden;
      padding: 0;
      z-index: 1000;
      transition: top 0.3s, right 0.3s;
    }
    #dark-mode-toggle img,
    #dark-mode-toggle svg {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 1.25rem;
      height: 1.25rem;
      pointer-events: none;
    }
    #dark-mode-toggle .cs-moon {
      z-index: 2;
      transition: transform 0.3s, opacity 0.3s;
    }
    #dark-mode-toggle .cs-sun {
      z-index: 1;
      transform: translate(-50%, 100%);
      opacity: 0;
      transition: transform 0.3s, opacity 0.3s;
    }
  }
  /* Tablet - 650px - 1024px */
  @media only screen and (min-width: 40.625rem) and (max-width: 1299.5px) {
    #dark-mode-toggle {
      top: auto;
      right: auto;
      position: relative;
      order: 3;
    }
  }
  /* Desktop - 1024px */
  @media only screen and (min-width: 1024px) {
    #dark-mode-toggle {
      margin: 0;
      position: relative;
      transform: none;
      bottom: auto;
      right: auto;
    }
    #dark-mode-toggle:hover {
      cursor: pointer;
    }
  }
  
  /*-- -------------------------- -->
  <---     Mobile Navigation      -->
  <--- -------------------------- -*/
  
  /* Mobile - 1023px */
  @media only screen and (max-width: 1299.5px) {
    body.cs-open {
      overflow: hidden;
    }
    #cs-navigation {
      width: 100%;
      padding: 0.75rem 1rem 0 1rem;
      /* prevents padding from affecting height and width */
      box-sizing: border-box;
      background-color: #fff;
      box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
      position: fixed;
      z-index: 100;
      transition: transform 0.3s;
    }
    #cs-navigation.cs-active .cs-link {
      color: var(--bodyTextColorWhite);
    }
    #cs-navigation.cs-active .cs-ul-wrapper {
      opacity: 1;
      transform: scaleY(1);
      transition-delay: 0.1s;
    }
    #cs-navigation.cs-active .cs-li {
      transform: translateY(0);
      opacity: 1;
    }
    #cs-navigation.scroll {
      transform: translateY(-3rem);
    }
    #cs-navigation.scroll #dark-mode-toggle {
      top: 4.25rem;
      right: 4.875rem;
    }
    #cs-navigation .cs-location {
      margin: 0;
      padding: 0;
      position: relative;
      transition: height 0.3s, padding-bottom 0.3s, opacity 0.3s;
      z-index: -3;
    }
    #cs-navigation .cs-top-social {
      display: none;
    }
    #cs-navigation .cs-top-bar {
      padding-bottom: 0.75rem;
      position: relative;
      z-index: 1;
    }
    #cs-navigation .cs-top-bar:before {
      /* grey line */
      content: '';
      width: 100vw;
      height: 1px;
      background: #EFF1F0;
      opacity: 1;
      position: absolute;
      display: block;
      bottom: 0;
      left: 50%;
      z-index: -2;
      transform: translateX(-50%);
      transition: opacity 0.3s;
    }
    #cs-navigation .cs-bottom-bar {
      height: auto;
      padding: 1.25rem 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    #cs-navigation .cs-logo {
      height: 2.5rem;
      width: auto;
      display: block;
    }
    #cs-navigation .cs-logo img {
      height: 100%;
      width: auto;
    }
    #cs-navigation .cs-logo-wrapper {
      width: auto;
      height: 100%;
      position: relative;
      z-index: 1;
      perspective: 700px;
      transform-style: preserve-3d;
    }
    #cs-navigation .cs-default {
      -webkit-backface-visibility: hidden;
      /* Safari */
      backface-visibility: hidden;
      transition: opacity 0.3s, transform 0.6s;
    }
    #cs-navigation .cs-dark {
      position: absolute;
      top: 0;
      left: 0;
      z-index: -1;
      opacity: 0;
      -webkit-backface-visibility: hidden;
      /* Safari */
      backface-visibility: hidden;
      transform: rotateX(180deg);
      transition: opacity 0.3s, transform 0.6s;
    }
    #cs-navigation .cs-desktop {
      display: none;
    }
    #cs-navigation .cs-item {
      font-size: 1rem;
      line-height: 1.5rem;
      list-style: none;
      margin: 0;
      color: #585B5D;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.25rem;
    }
    #cs-navigation .cs-remove {
      display: none;
    }
    #cs-navigation .cs-icon {
      width: 1.25rem;
      height: auto;
      display: block;
    }
    #cs-navigation .cs-header {
      display: none;
    }
    #cs-navigation .cs-link {
      font-size: 0.875rem;
      line-height: 1.5em;
      text-align: inherit;
      text-decoration: none;
      margin: 0;
      color: var(--bodyTextColor);
      display: block;
      transition: color 0.3s;
    }
    #cs-navigation .cs-toggle {
      width: 3rem;
      height: 3rem;
      margin: 0;
      background-color: #F3F3F3;
      border: none;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    #cs-navigation .cs-active .cs-line1 {
      top: 50%;
      transform: translate(-50%, -50%) rotate(225deg);
    }
    #cs-navigation .cs-active .cs-line2 {
      top: 50%;
      transform-origin: center;
      transform: translate(-50%, -50%) translateY(0) rotate(-225deg);
    }
    #cs-navigation .cs-active .cs-line3 {
      bottom: 100%;
      opacity: 0;
    }
    #cs-navigation .cs-box {
      width: 1.25rem;
      height: 0.75rem;
      position: relative;
    }
    #cs-navigation .cs-line {
      width: 100%;
      height: 2px;
      border-radius: 2px;
      background-color: #585B5D;
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
    }
    #cs-navigation .cs-line1 {
      top: 0;
      transform-origin: center;
      transition: transform 0.5s, top 0.3S, left 0.3S;
      animation-duration: 0.7s;
      animation-timing-function: ease;
      animation-fill-mode: forwards;
      animation-direction: normal;
    }
    #cs-navigation .cs-line2 {
      top: 50%;
      transform: translateX(-50%) translateY(-50%);
      transition: top 0.3s, left 0.3s, transform 0.5s;
      animation-duration: 0.7s;
      animation-timing-function: ease;
      animation-fill-mode: forwards;
      animation-direction: normal;
    }
    #cs-navigation .cs-line3 {
      width: 0.75rem;
      bottom: 0;
      left: 0;
      transform: none;
      transition: bottom 0.3s, opacity 0.3s;
    }
    #cs-navigation .cs-contact-wrapper,
    #cs-navigation .cs-tablet,
    #cs-navigation .cs-button-border {
      display: none;
    }
  }
  /* Tablet - 650px - 1024px */
  @media only screen and (min-width: 40.625rem) and (max-width: 1299.5px) {
    #cs-navigation .cs-location {
      display: flex;
      justify-content: flex-end;
      flex-direction: row;
    }
    #cs-navigation .cs-top-bar {
      padding-bottom: 0.75rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    #cs-navigation .cs-logo {
      margin-right: auto;
      order: 1;
    }
    #cs-navigation .cs-item {
      position: relative;
    }
    #cs-navigation .cs-item:nth-of-type(2):after {
      display: none;
    }
    #cs-navigation .cs-item:after {
      /* divider line */
      content: '';
      width: 1px;
      height: 100%;
      margin: 0 1rem;
      background: #CFD0D1;
      opacity: 1;
      position: relative;
      display: block;
    }
    #cs-navigation .cs-top-social {
      height: 2rem;
      visibility: visible;
      opacity: 1;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 0.5rem;
      transition: opacity 0.3s, visibility 0.3s, height 0.3s;
    }
    #cs-navigation .cs-social-link {
      text-decoration: none;
      width: 2rem;
      height: 2rem;
      background-color: #f7f7f7;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    #cs-navigation .cs-social-icon {
      width: 0.75rem;
      height: auto;
      opacity: 0.6;
      display: block;
    }
    #cs-navigation .cs-bottom-bar {
      gap: 1rem;
    }
    #cs-navigation .cs-li-link {
      font-size: 1.5rem;
    }
    #cs-navigation .cs-nav-button {
      text-decoration: none;
      margin-right: 2rem;
      display: flex;
      justify-content: flex-start;
      align-items: center;
      gap: 1rem;
      order: 2;
      position: relative;
      perspective: 200px;
      transform-style: preserve-3d;
    }
    #cs-navigation .cs-nav-button:hover .cs-wrapper {
      transform: rotateY(180deg);
    }
    #cs-navigation .cs-nav-button .cs-wrapper {
      width: 2.5rem;
      height: 2.5rem;
      display: flex;
      justify-content: center;
      align-items: center;
      /* prevents flexbox from squishing it */
      flex: none;
      position: relative;
      z-index: 1;
      transition: transform 0.6s;
    }
    #cs-navigation .cs-nav-button .cs-wrapper:before {
      /* backgorund color in pseudo so we can use the primary color variable and use opacity */
      content: "";
      width: 100%;
      height: 100%;
      background-color: #F3F3F3;
      position: absolute;
      display: block;
      top: 0;
      left: 0;
      z-index: -1;
    }
    #cs-navigation .cs-nav-button .cs-icon {
      width: 1.5rem;
      height: auto;
      display: block;
      transition: transform 0.3s;
    }
    #cs-navigation .cs-nav-button .cs-info {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
    }
    #cs-navigation .cs-nav-button .cs-header {
      font-size: 0.875rem;
      line-height: 1.5em;
      margin: 0;
      color: #585B5D;
      display: block;
    }
    #cs-navigation .cs-nav-button .cs-link-content {
      font-size: 1rem;
      line-height: 1.5em;
      font-weight: 700;
      margin: 0;
      color: var(--headerColor);
      display: block;
    }
    #cs-navigation .cs-nav {
      order: 4;
    }
  }
  /* Inbetween - 1024px */
  @media only screen and (min-width: 1024px) {
    #cs-navigation .cs-bottom-bar {
      justify-content: flex-start;
      padding: 0;
    }
    #cs-navigation .cs-remove {
      display: flex;
    }
    #cs-navigation .cs-toggle {
      display: none;
    }
    #cs-navigation .cs-nav {
      order: 2;
    }
    #cs-navigation .cs-ul {
      width: 100%;
      margin: 0;
      padding: 0;
      display: flex;
      justify-content: flex-start;
      align-items: center;
      /* 20px - 36px */
      gap: clamp(1.25rem, 2.6vw, 2.25rem);
    }
    #cs-navigation .cs-li {
      list-style: none;
      /* 24px - 28px */
      padding: clamp(1.5rem, 2.1vw, 1.75rem) 0;
      /* prevent flexbox from squishing it */
      flex: none;
    }
    #cs-navigation .cs-li:last-of-type {
      /* pushes the button to the far roght */
      margin-left: auto;
      padding: 0;
    }
    #cs-navigation .cs-li-link {
      font-size: 1rem;
      line-height: 1.5em;
      text-transform: uppercase;
      text-decoration: none;
      margin: 0;
      color: var(--headerColor);
      display: block;
      position: relative;
      transition: color 0.3s;
    }
    #cs-navigation .cs-li-link.cs-active,
    #cs-navigation .cs-li-link:hover {
      color: var(--primary);
    }
    #cs-navigation .cs-nav-button {
      display: none;
    }
  }
  
  /*-- -------------------------- -->
  <---   Mobile Navigation Menu   -->
  <--- -------------------------- -*/
  
  /* Small Desktop - 1024px */
  @media only screen and (max-width: 1023.5px) {
    #cs-navigation .cs-ul-wrapper {
      width: 100%;
      opacity: 0;
      background-color: #fff;
      box-shadow: inset rgba(0, 0, 0, 0.2) 0px 8px 24px;
      overflow: hidden;
      position: absolute;
      top: 100%;
      left: 0;
      z-index: -1;
      transform: scaleY(0);
      transform-origin: top;
      transition: transform 0.4s, opacity 0.3s;
    }
    #cs-navigation .cs-ul {
      margin: 0;
      padding: 3rem 0 3rem 0;
      width: 100%;
      height: auto;
      max-height: 65vh;
      overflow: scroll;
      display: flex;
      justify-content: flex-start;
      flex-direction: column;
      align-items: center;
      gap: 1.25rem;
    }
    #cs-navigation .cs-li {
      text-align: center;
      list-style: none;
      width: 100%;
      margin-right: 0;
      /* transition from these values */
      transform: translateY(-4.375rem);
      opacity: 0;
      transition: transform 0.6s, opacity 0.9s;
    }
    #cs-navigation .cs-li:nth-of-type(1) {
      transition-delay: 0.05s;
    }
    #cs-navigation .cs-li:nth-of-type(2) {
      transition-delay: 0.1s;
    }
    #cs-navigation .cs-li:nth-of-type(3) {
      transition-delay: 0.15s;
    }
    #cs-navigation .cs-li:nth-of-type(4) {
      transition-delay: 0.2s;
    }
    #cs-navigation .cs-li:nth-of-type(5) {
      transition-delay: 0.25s;
    }
    #cs-navigation .cs-li:nth-of-type(6) {
      transition-delay: 0.3s;
    }
    #cs-navigation .cs-li:nth-of-type(7) {
      transition-delay: 0.35s;
    }
    #cs-navigation .cs-li:nth-of-type(8) {
      transition-delay: 0.4s;
    }
    #cs-navigation .cs-li:nth-of-type(9) {
      transition-delay: 0.45s;
    }
    #cs-navigation .cs-li-link {
      /* 16px - 24px */
      font-size: clamp(1rem, 2.5vw, 1.5rem);
      text-transform: uppercase;
      line-height: 1.2em;
      text-decoration: none;
      margin: 0;
      color: var(--headerColor);
      display: inline-block;
      position: relative;
    }
    #cs-navigation .cs-li-link.cs-active {
      color: var(--primary);
    }
  }
  
  /*-- -------------------------- -->
  <---     Navigation Dropdown    -->
  <--- -------------------------- -*/
  
  /* Mobile - 1023px */
  @media only screen and (max-width: 1023.5px) {
    #cs-navigation .cs-li {
      text-align: center;
      width: 100%;
      display: block;
    }
    #cs-navigation .cs-dropdown {
      position: relative;
      color: var(--bodyTextColorWhite);
    }
    #cs-navigation .cs-dropdown.cs-active .cs-drop-ul {
      height: auto;
      opacity: 1;
      visibility: visible;
      margin: 0.75rem auto 0 auto;
      padding: 1.25rem 0;
    }
    #cs-navigation .cs-dropdown.cs-active .cs-drop-link {
      opacity: 1;
    }
    #cs-navigation .cs-dropdown .cs-li-link {
      position: relative;
      transition: opacity 0.3s;
    }
    #cs-navigation .cs-drop-icon {
      width: 1.5rem;
      height: auto;
      position: absolute;
      top: 50%;
      right: -1.25rem;
      transform: translateY(-50%);
    }
    #cs-navigation .cs-drop-ul {
      width: 70%;
      height: 0;
      margin: 0 auto;
      padding: 0;
      background-color: var(--primary);
      overflow: hidden;
      opacity: 0;
      visibility: hidden;
      display: flex;
      justify-content: flex-start;
      flex-direction: column;
      align-items: center;
      gap: 0.75rem;
      transition: padding 0.3s, margin 0.3s, height 0.3s, opacity 0.3s, visibility 0.3s;
    }
    #cs-navigation .cs-drop-li {
      list-style: none;
    }
    #cs-navigation .cs-li-link.cs-drop-link {
      /* 14px - 16px */
      font-size: clamp(0.875rem, 2vw, 1.25rem);
      text-transform: uppercase;
      color: #fff;
    }
  }
  /* Desktop - 1024px */
  @media only screen and (min-width: 1024px) {
    #cs-navigation .cs-dropdown {
      position: relative;
    }
    #cs-navigation .cs-dropdown:hover {
      cursor: pointer;
    }
    #cs-navigation .cs-dropdown:hover .cs-drop-ul {
      transform: scaleY(1);
      opacity: 1;
      visibility: visible;
    }
    #cs-navigation .cs-dropdown:hover .cs-drop-li {
      opacity: 1;
      transform: translateY(0);
    }
    #cs-navigation .cs-drop-icon {
      width: 1.5rem;
      height: auto;
      display: inline-block;
    }
    #cs-navigation .cs-drop-ul {
      min-width: 12.5rem;
      margin: 0;
      padding: 0;
      background-color: #fff;
      overflow: hidden;
      opacity: 0;
      visibility: hidden;
      box-shadow: rgba(149, 157, 165, 0.2) 0px 10px 16px;
      border-bottom: 5px solid var(--primary);
      /* if you have 8 or more links in your dropdown nav, uncomment the columns property to make the list into 2 even columns. Change it to 3 or 4 if you need extra columns. Then remove the transition delays on the cs-drop-li so they don't have weird scattered animations */
      position: absolute;
      top: 100%;
      z-index: -100;
      transform: scaleY(0);
      transform-origin: top;
      transition: transform 0.3s, visibility 0.3s, opacity 0.3s;
    }
    #cs-navigation .cs-drop-li {
      list-style: none;
      font-size: 1rem;
      text-decoration: none;
      opacity: 0;
      width: 100%;
      height: auto;
      color: var(--bodyTextColor);
      display: block;
      transform: translateY(-10/16rem);
      transition: opacity 0.6s, transform 0.6s;
    }
    #cs-navigation .cs-drop-li:nth-of-type(2) {
      transition-delay: 0.15s;
    }
    #cs-navigation .cs-drop-li:nth-of-type(3) {
      transition-delay: 0.3s;
    }
    #cs-navigation .cs-drop-li:nth-of-type(4) {
      transition-delay: 0.45s;
    }
    #cs-navigation .cs-drop-li:nth-of-type(5) {
      transition-delay: 0.6s;
    }
    #cs-navigation .cs-drop-li:nth-of-type(6) {
      transition-delay: 0.75s;
    }
    #cs-navigation .cs-li-link {
      display: flex;
      align-items: center;
    }
    #cs-navigation .cs-li-link.cs-drop-link {
      font-size: 1rem;
      white-space: nowrap;
      line-height: 1.5em;
      text-decoration: none;
      padding: 0.75rem;
      /* prevents padding from affecting height and width */
      box-sizing: border-box;
      color: var(--bodyTextColor);
      display: block;
      transition: color 0.3s, background-color 0.3s;
    }
    #cs-navigation .cs-li-link.cs-drop-link:hover {
      background-color: #f7f7f7;
    }
    #cs-navigation .cs-li-link.cs-drop-link:before {
      display: none;
    }
  }
  
  /*-- -------------------------- -->
  <---     Desktop Navigation     -->
  <--- -------------------------- -*/
  
  /* Small Desktop - 1024px */
  @media only screen and (min-width: 1300px) {
    #cs-navigation {
      /* 136px tall */
      --headerHeight: 8.5rem;
      width: 100%;
      padding: 0;
      /* prevents padding from affecting height and width */
      box-sizing: border-box;
      background-color: #fff;
      box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
      display: flex;
      position: fixed;
      z-index: 10000;
      transition: height 0.3s, background-color 0.3s;
    }
    #cs-navigation.scroll .cs-top-bar {
      height: 0;
      opacity: 0;
      overflow: hidden;
    }
    #cs-navigation.scroll .cs-top-bar:before {
      width: 0;
    }
    #cs-navigation.scroll .cs-middle {
      height: 5rem;
    }
    #cs-navigation.scroll .cs-logo,
    #cs-navigation.scroll .cs-contact-wrapper {
      height: 5rem;
    }
    #cs-navigation.scroll .cs-logo img {
      max-height: 5rem;
    }
    #cs-navigation.scroll .cs-toggle {
      margin-top: 0;
    }
    #cs-navigation .cs-toggle {
      display: none;
    }
    #cs-navigation .cs-logo {
      width: 20%;
      max-width: 21.25rem;
      height: var(--headerHeight);
      border-right: 1px solid #E7E7E8;
      padding: 1rem;
      /* prevents padding from affecting height and width */
      box-sizing: border-box;
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 100;
      transition: height 0.3s;
    }
    #cs-navigation .cs-logo img {
      width: 80%;
      max-width: 16.25rem;
      height: auto;
      max-height: 7.5rem;
      box-sizing: border-box;
      /* ensures the image never overflows the container. It stays contained within it's width and height and expands to fill it then stops once it reaches an edge */
      object-fit: contain;
      transition: max-height 0.3s, opacity 0.3s, transform 0.6s;
    }
    #cs-navigation .cs-logo-wrapper {
      width: auto;
      height: auto;
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative;
      z-index: 1;
      perspective: 700px;
      transform-style: preserve-3d;
    }
    #cs-navigation .cs-default {
      -webkit-backface-visibility: hidden;
      /* Safari */
      backface-visibility: hidden;
    }
    #cs-navigation .cs-dark {
      position: absolute;
      top: 0;
      left: 50%;
      z-index: -1;
      opacity: 0;
      -webkit-backface-visibility: hidden;
      /* Safari */
      backface-visibility: hidden;
      transform: rotateX(180deg) translateX(-50%);
    }
    #cs-navigation .cs-mobile {
      display: none;
    }
    #cs-navigation .cs-top-bar {
      width: 100%;
      height: 3.5rem;
      margin: 0;
      padding: 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: relative;
      transition: height 0.3s, opacity 0.3s, transform 0.3s;
    }
    #cs-navigation .cs-top-bar:before {
      /* grey line */
      content: '';
      height: 1px;
      background: #E7E7E8;
      opacity: 1;
      position: absolute;
      display: block;
      bottom: 0;
      left: -2.5rem;
      right: -2.5rem;
      z-index: -2;
      transition: width 0.3s;
    }
    #cs-navigation .cs-top-social {
      height: 2rem;
      visibility: visible;
      opacity: 1;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 0.5rem;
      transition: opacity 0.3s, visibility 0.3s, height 0.3s;
    }
    #cs-navigation .cs-social-link {
      text-decoration: none;
      width: 2rem;
      height: 2rem;
      background-color: #f7f7f7;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      transition: background-color 0.3s;
    }
    #cs-navigation .cs-social-link:hover {
      background-color: var(--primary);
    }
    #cs-navigation .cs-social-icon {
      width: 0.75rem;
      height: auto;
      opacity: 0.6;
      display: block;
    }
    #cs-navigation .cs-location {
      display: flex;
      flex-direction: row;
    }
    #cs-navigation .cs-item {
      list-style: none;
      margin: 0;
      display: flex;
      align-items: center;
      flex: none;
      justify-content: flex-start;
      gap: 0.25rem;
      position: relative;
    }
    #cs-navigation .cs-item:last-of-type:after {
      display: none;
    }
    #cs-navigation .cs-item:hover .cs-picture {
      transform: scale(1.1);
    }
    #cs-navigation .cs-item:after {
      /* divider line */
      content: '';
      width: 1px;
      height: 100%;
      /* 24px - 44px */
      margin: 0 1.5rem;
      background: #EFF1F0;
      opacity: 1;
      position: relative;
      display: block;
    }
    #cs-navigation .cs-link {
      font-size: 0.875rem;
      line-height: 1.5em;
      text-align: inherit;
      text-decoration: none;
      margin: 0;
      color: var(--bodyTextColor);
      display: block;
      transition: color 0.3s;
    }
    #cs-navigation .cs-link:hover {
      text-decoration: underline;
    }
    #cs-navigation .cs-middle {
      width: 100%;
      height: var(--headerHeight);
      padding: 0 2.5rem 0 2.5rem;
      transition: height 0.3s;
    }
    #cs-navigation .cs-nav {
      order: -1;
    }
    #cs-navigation .cs-bottom-bar {
      width: 100%;
      /* prevents padding from affecting height and width */
      box-sizing: border-box;
      display: flex;
      justify-content: flex-end;
      align-items: center;
      gap: 2rem;
    }
    #cs-navigation .cs-desktop-button {
      text-decoration: none;
      display: flex;
      justify-content: flex-start;
      align-items: center;
      gap: 1rem;
      order: 2;
      position: relative;
      perspective: 200px;
      transform-style: preserve-3d;
    }
    #cs-navigation .cs-desktop-button:hover .cs-wrapper {
      transform: rotateY(360deg);
    }
    #cs-navigation .cs-wrapper {
      width: 3.5rem;
      height: 3.5rem;
      display: flex;
      justify-content: center;
      align-items: center;
      /* prevents flexbox from squishing it */
      flex: none;
      position: relative;
      z-index: 1;
      transition: transform 0.6s;
    }
    #cs-navigation .cs-wrapper:before {
      /* backgorund color in pseudo so we can use the primary color variable and use opacity */
      content: "";
      width: 100%;
      height: 100%;
      background-color: #F3F3F3;
      position: absolute;
      display: block;
      top: 0;
      left: 0;
      z-index: -1;
    }
    #cs-navigation .cs-button-icon {
      width: 1.25rem;
      height: auto;
      display: block;
      transition: transform 0.3s;
    }
    #cs-navigation .cs-info {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
    }
    #cs-navigation .cs-header {
      font-size: 0.875rem;
      line-height: 1.5em;
      margin: 0;
      color: #585B5D;
      display: block;
    }
    #cs-navigation .cs-link-content {
      font-size: 1rem;
      line-height: 1.5em;
      font-weight: 700;
      margin: 0;
      color: var(--headerColor);
      display: block;
    }
    #cs-navigation .cs-nav-button,
    #cs-navigation .cs-button-border {
      display: none;
    }
    #cs-navigation .cs-contact-wrapper {
      width: 18%;
      max-width: 18.375rem;
      height: var(--headerHeight);
      border-left: 1px solid #E7E7E8;
      display: flex;
      justify-content: center;
      align-items: center;
      flex: none;
      transition: height 0.3s;
    }
  }
  /* Small Desktop - 1500px */
  @media only screen and (min-width: 1500px) {
    #cs-navigation .cs-nav {
      margin-right: auto;
    }
    #cs-navigation .cs-button-border {
      font-size: 1rem;
      line-height: 2.875rem;
      text-decoration: none;
      text-transform: uppercase;
      padding: 0 1.75rem;
      color: var(--headerColor);
      border: 1px solid var(--headerColor);
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 0.625rem;
      transition: color 0.3s, background-color 0.3s;
    }
    #cs-navigation .cs-button-border:hover {
      background-color: var(--headerColor);
      color: #fff;
    }
    #cs-navigation .cs-button-border:hover .cs-icon {
      filter: grayscale(1) brightness(1000%);
    }
    #cs-navigation .cs-button-border .cs-icon {
      width: 1.25rem;
    }
  }

/*-- -------------------------- -->
<---           Hero             -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #hero-2149 {
      /* 300px - 400px on top - leaving extra space for the navigation */
      /* 60px - 100px on bottom */
      padding: clamp(18.75rem, 54vw, 25rem) 1rem clamp(3.75rem, 7.5vw, 6.25rem) 1rem;
      /* prevents the topper line from causing an overflow */
      overflow: hidden;
      position: relative;
      z-index: 1;
    }
    #hero-2149 .cs-container {
      width: 100%;
      max-width: 80rem;
      margin: auto;
      margin-top: 20rem;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    #hero-2149 .cs-content {
      text-align: center;
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    #hero-2149 .cs-title {
      /* 39px - 61px */
      font-size: clamp(2.4375rem, 5vw, 3.8125rem);
      max-width: 30ch;
    }
    #hero-2149 .cs-title,
    #hero-2149 .cs-text {
      color: var(--bodyTextColorWhite);
    }
    #hero-2149 .cs-text {
      /* 16px - 20px */
      font-size: clamp(1rem, 2vw, 1.25rem);
      max-width: 55ch;
      margin-bottom: 2rem;
      opacity: 0.8;
    }
    #hero-2149 .cs-button-solid {
      font-size: 1rem;
      font-weight: 700;
      /* 46px - 56px */
      line-height: clamp(2.875rem, 5.5vw, 3.5rem);
      text-align: center;
      text-decoration: none;
      min-width: 12.5rem;
      margin: 0;
      /* prevents padding from adding to the width */
      box-sizing: border-box;
      /* 32px - 48px */
      padding: 0 clamp(2rem, 4vw, 3rem);
      background-color: var(--primary);
      color: var(--bodyTextColorWhite);
      display: inline-block;
      position: relative;
      z-index: 1;
      transition: color 0.3s;
    }
    #hero-2149 .cs-button-solid:before {
      content: "";
      width: 0%;
      height: 100%;
      background: #ffffff;
      opacity: 1;
      position: absolute;
      top: 0;
      left: 0;
      z-index: -1;
      transition: width 0.3s;
    }
    #hero-2149 .cs-button-solid:hover {
      color: var(--headerColor);
    }
    #hero-2149 .cs-button-solid:hover:before {
      width: 100%;
    }
    #hero-2149 .cs-background {
      width: 100%;
      height: 100%;
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      z-index: -2;
    }
    #hero-2149 .cs-background:before {
      /* Overlay */
      content: "";
      width: 100%;
      height: 100%;
      /* prevents the cursor from interacting with it */
      pointer-events: none;
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      z-index: 1;
    }
    #hero-2149 .cs-background img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      position: absolute;
      top: 0;
      left: 0;
    }
  }

.carousel-caption {
    /* background: rgba(0, 0, 0, 0.5); Adjust the opacity as needed */
    margin: 0 15%;
  }

.carousel-caption h1 {
    font-weight: lighter;
  }

#couple-hero-carousel {
    position: absolute;
    top: 25%;
    left: 25%;
    right: 40%;
}

#cheer-hero-carousel {
    position: absolute;
    top: 25%;
    left: 5%;
    right: 55%;
}

#nurse-hero-carousel {
    position: absolute;
    top: 65%;
    left: 5%;
    right: 50%;
}

@media only screen and (min-width: 0rem) {
  .carousel-caption {
    /* background: rgba(0, 0, 0, 0.5); Adjust the opacity as needed */
    margin: 0 5%;
  }
}

@media only screen and (min-width: 864px) {
  .carousel-caption {
    /* background: rgba(0, 0, 0, 0.5); Adjust the opacity as needed */
    margin: 0 7%;
  }
}

@media only screen and (min-width: 1936px) {
  .carousel-caption {
    /* background: rgba(0, 0, 0, 0.5); Adjust the opacity as needed */
    margin: 0 15%;
  }
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(100%); /* white → black */
}

/* ---------------------------------- */
/*           Gallery                  */
/* ---------------------------------- */

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #gallery-2235 {
    padding: var(--sectionPadding);
    background-color: #fbf5f1;
  }
  #gallery-2235 .cs-container {
    width: 100%;
    max-width: 120rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
  }
  #gallery-2235 .cs-content {
    /* set text align to left if content needs to be left aligned */
    text-align: left;
    width: 100%;
    max-width: 80rem;
    display: flex;
    flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    align-items: flex-start;
  }
  #gallery-2235 .cs-flex-group {
    display: flex;
    flex-direction: column;
    /* prevents flexbox from squishing it */
    flex: none;
  }
  #gallery-2235 .cs-topper {
    color: var(--secondary);
  }
  #gallery-2235 .cs-text {
    max-width: none;
  }
  #gallery-2235 .cs-wrapper {
    width: 100%;
    overflow: hidden;
  }
  #gallery-2235 .cs-slideshow {
    position: relative;
    transform-style: preserve-3d;
  }
  #gallery-2235 .cs-slide {
    width: 100%;
    /* 340px - 840px */
    height: clamp(21.25rem, 60vw, 52.5rem);
    margin: auto;
    opacity: 0;
    display: block;
    position: absolute;
    top: 0;
    z-index: 100;
    transition: transform 0.3s, opacity 0.3s, z-index 0.3s;
    /* classes applied by the JS file */
  }
  #gallery-2235 .cs-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  #gallery-2235 .cs-slide.initial,
  #gallery-2235 .cs-slide.active {
    opacity: 1;
    position: relative;
    z-index: 900;
  }
  #gallery-2235 .cs-slide.prev,
  #gallery-2235 .cs-slide.next {
    z-index: 800;
  }
  #gallery-2235 .cs-slide.prev {
    transform: translateX(-100%);
  }
  #gallery-2235 .cs-slide.next {
    transform: translateX(100%);
  }
  #gallery-2235 .cs-slideshow-button {
    /* 36px - 80px */
    width: clamp(2.25rem, 6vw, 5rem);
    /* 36px - 80px */
    height: clamp(2.25rem, 6vw, 5rem);
    cursor: pointer;
    border: 1px solid #fff;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    z-index: 1000;
    transform: translateY(-50%);
  }
  #gallery-2235 .cs-slideshow-button::before {
    content: "";
    /* 20px - 64px */
    width: clamp(1.25rem, 5vw, 4rem);
    /* 20px - 64px */
    height: clamp(1.25rem, 5vw, 4rem);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  #gallery-2235 .cs-slideshow-button.cs-slideshow-prev {
    left: 1rem;
  }
  #gallery-2235 .cs-slideshow-button.cs-slideshow-prev::before {
    background-image: url("https://csimg.nyc3.cdn.digitaloceanspaces.com/Images/Icons/slideshow-left.svg");
  }
  #gallery-2235 .cs-slideshow-button.cs-slideshow-next {
    right: 1rem;
  }
  #gallery-2235 .cs-slideshow-button.cs-slideshow-next::before {
    background-image: url("https://csimg.nyc3.cdn.digitaloceanspaces.com/Images/Icons/slideshow-right.svg");
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #gallery-2235 .cs-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    gap: 2.5rem;
  }
  #gallery-2235 .cs-title {
    margin-bottom: 0;
  }
  #gallery-2235 .cs-flex-group {
    width: 55%;
  }
}
                                

/*-- -------------------------- -->
<---          Services          -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #services-2220 {
      padding: var(--sectionPadding);
      background-color: #fdfaf8;
      position: relative;
      z-index: 1;
    }
    #services-2220 .cs-container {
      width: 100%;
      /* changes to 1840px at tablet */
      max-width: 44rem;
      margin: auto;
    }
    #services-2220 .cs-title {
      text-transform: uppercase;
    }
    #services-2220 .cs-card-group {
      width: 100%;
      /* changes to 100% at tablet */
      max-width: 31.25rem;
      margin: 0 auto;
      padding: 0;
      /* changes to flexbox at large desktop */
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      /* 16px - 20px */
      gap: clamp(1rem, 1.5vw, 1.25rem);
    }
    #services-2220 .cs-item {
      text-align: left;
      list-style: none;
      width: 100%;
      /* 240px - 300px */
      min-height: clamp(15rem, 30vw, 18.75rem);
      margin: 0;
      /* prevents padding and border from affecting height and width */
      box-sizing: border-box;
      padding: 0;
      /* clips the image corners */
      overflow: hidden;
      display: flex;
      flex-direction: column;
      grid-column: span 12;
      grid-row: span 1;
      position: relative;
    }
    #services-2220 .cs-item:hover .cs-h3,
    #services-2220 .cs-item:focus-within .cs-h3 {
      transform: translateY(-0.75rem);
    }
    #services-2220 .cs-item:hover .cs-background:before,
    #services-2220 .cs-item:focus-within .cs-background:before {
      height: 180%;
    }
    #services-2220 .cs-item:hover .cs-background img,
    #services-2220 .cs-item:focus-within .cs-background img {
      opacity: 0.5;
      transform: scale(1.1);
    }
    #services-2220 .cs-link {
      text-decoration: none;
      height: 100%;
      /* 16px - 24px */
      padding: clamp(1rem, 1.25vw, 1.5rem);
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      align-items: flex-start;
    }
    #services-2220 .cs-h3 {
      /* 20px - 25px */
      font-size: clamp(1.25rem, 2.5vw, 1.5625rem);
      font-weight: 700;
      line-height: 1.2em;
      text-align: inherit;
      margin: 0;
      color: var(--bodyTextColorWhite);
      transition: transform 0.3s, color 0.3s;
    }
    #services-2220 .cs-content {
      text-align: center;
      min-height: 0;
      padding: 1.5rem;
      background-color: #fbf5f1;
      justify-content: center;
      align-items: center;
    }
    #services-2220 .cs-title {
      margin: 0 0 2rem;
    }
    #services-2220 .cs-button-solid {
      font-size: calc(16 / 16 * 1rem);
      font-weight: bold;
      line-height: calc(50 / 16 * 1em);
      text-align: center;
      text-transform: uppercase;
      text-decoration: none;
      width: max-content;
      padding: 0 calc(30 / 16 * 1rem);
      background-color: var(--primary);
      color: #000;
      display: inline-block;
      position: relative;
      z-index: 1;
      transition: color 0.3s;
      transition-delay: 0.1s;
    }
    #services-2220 .cs-button-solid:hover {
      color: #fff;
    }
    #services-2220 .cs-button-solid:hover:before {
      width: 100%;
    }
    #services-2220 .cs-button-solid:before {
      content: "";
      width: 0;
      height: 100%;
      background-color: #000;
      opacity: 1;
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      z-index: -1;
      transition: width 0.3s;
    }
    #services-2220 .cs-background {
      width: 100%;
      height: 100%;
      background-color: #000;
      object-fit: cover;
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      z-index: -1;
    }
    #services-2220 .cs-background:before {
      /* gradient overlay */
      content: "";
      width: 100%;
      height: 100%;
      background: linear-gradient(0deg, rgba(0, 0, 0, 0.72) 14.59%, rgba(0, 0, 0, 0) 43.18%);
      opacity: 1;
      display: block;
      position: absolute;
      bottom: 0;
      left: 0;
      transition: height 0.3s;
    }
    #services-2220 .cs-background img {
      width: 100%;
      height: 100%;
      /* Makes img tag act as a background image */
      object-fit: cover;
      position: absolute;
      z-index: -1;
      transition: transform 0.6s, opacity 0.3s;
    }
  }
  /* Tablet - 768px */
  @media only screen and (min-width: 48rem) {
    #services-2220 .cs-container {
      max-width: 115rem;
    }
    #services-2220 .cs-card-group {
      max-width: 100%;
      grid-template-rows: 1fr;
    }
    #services-2220 .cs-item {
      grid-column: span 4;
    }
    #services-2220 .cs-item.cs-content {
      grid-column: span 12;
    }
  }
  /* Desktop - 1500px */
  @media only screen and (min-width: 93.75rem) {
    #services-2220 .cs-card-group {
      min-height: 37.5rem;
      display: flex;
      flex-direction: row;
    }
    #services-2220 .cs-content {
      min-width: 22rem;
      padding: 9.75rem 0 12.5rem;
    }
  }

/*-- -------------------------- -->
<---       Side By Side         -->
<--- -------------------------- -*/

/* Mobile */
@media only screen and (min-width: 0rem) {
    #sbs-2276 {
      padding: var(--sectionPadding);
      overflow: hidden;
      position: relative;
      z-index: 1;
    }
    #sbs-2276 .cs-container {
      width: 100%;
      /* changes to 1280px at tablet */
      max-width: 36.5rem;
      margin: auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      /* 48px - 64px */
      gap: clamp(3rem, 6vw, 4rem);
    }
    #sbs-2276 .cs-content {
      /* set text align to left if content needs to be left aligned */
      text-align: left;
      width: 100%;
      display: flex;
      flex-direction: column;
      /* centers content horizontally, set to flex-start to left align */
      align-items: flex-start;
    }
    #sbs-2276 .cs-title {
      max-width: 25ch;
    }
    #sbs-2276 .cs-text:last-of-type {
      margin-bottom: 2rem;
    }
    #sbs-2276 .cs-signature {
      width: 10.625rem;
      height: auto;
      margin-bottom: 0.5rem;
      display: block;
    }
    #sbs-2276 .cs-name {
      font-size: 1.25rem;
      line-height: 1.2em;
      font-weight: 700;
      margin: 0 0 0.25rem;
      color: var(--headerColor);
      display: block;
    }
    #sbs-2276 .cs-desc {
      font-size: 1rem;
      line-height: 1.5em;
      margin: 0 0 2rem 0;
      color: var(--bodyTextColor);
      display: block;
    }
    #sbs-2276 .cs-button-solid {
      font-size: 1rem;
      text-align: center;
      /* 46px - 56px */
      line-height: clamp(2.875rem, 5.5vw, 3.5rem);
      width: 11.25rem;
      text-decoration: none;
      font-weight: 700;
      /* clips corners of the before element */
      overflow: hidden;
      margin: 0;
      color: #fff;
      padding: 0;
      background-color: var(--primary);
      display: inline-block;
      position: relative;
      z-index: 1;
      transition: color 0.3s;
    }
    #sbs-2276 .cs-button-solid:before {
      content: "";
      position: absolute;
      display: block;
      height: 100%;
      width: 0%;
      background: #000;
      opacity: 1;
      top: 0;
      left: 0;
      z-index: -1;
      transition: width 0.3s;
    }
    #sbs-2276 .cs-button-solid:hover {
      color: #fff;
    }
    #sbs-2276 .cs-button-solid:hover:before {
      width: 100%;
    }
    #sbs-2276 .cs-wrapper {
      display: flex;
      flex-direction: column;
      gap: 3rem;
    }
    #sbs-2276 .cs-image-group {
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 2rem;
    }
    #sbs-2276 .cs-image-group a {
      display: none;
      flex: none;
    }
    #sbs-2276 .cs-picture {
      width: 100%;
      height: 90vw;
      max-height: 31.25rem;
      display: block;
      position: relative;
      z-index: 1;
    }
    #sbs-2276 .cs-picture img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      position: absolute;
      top: 0;
      left: 0;
    }
  }
  /* Tablet - 768px */
  @media only screen and (min-width: 48rem) {
    #sbs-2276 .cs-container {
      max-width: 80rem;
    }
    #sbs-2276 .cs-content {
      /* 32px - 64px */
      gap: clamp(2rem, 5vw, 4rem);
    }
    #sbs-2276 .cs-title {
      margin: 0;
    }
    #sbs-2276 .cs-wrapper {
      flex-direction: row;
      align-items: stretch;
    }
    #sbs-2276 .cs-flex {
      /* 12px to 40px */
      padding: clamp(0.75rem, 3vw, 2.5rem) 0;
      align-self: center;
    }
    #sbs-2276 .cs-picture1 {
      height: 25rem;
      max-height: initial;
    }
    #sbs-2276 .cs-picture2 {
      width: 47vw;
      max-width: 22.625rem;
      height: auto;
      max-height: 100%;
      order: -1;
    }
  }
  /* Small Desktop - 1024px */
  @media only screen and (min-width: 64rem) {
    #sbs-2276 .cs-container {
      flex-direction: row;
      align-items: stretch;
    }
    #sbs-2276 .cs-desc {
      margin: 0;
    }
    #sbs-2276 .cs-flex .cs-button-solid {
      display: none;
    }
    #sbs-2276 .cs-image-group {
      width: 50%;
      max-width: 25.8125rem;
    }
    #sbs-2276 .cs-image-group a {
      display: inline-block;
    }
    #sbs-2276 .cs-picture1 {
      height: 100%;
    }
  }
  /* Large Desktop - 1300px */
  @media only screen and (min-width: 75rem) {
    #sbs-2276 .cs-image-group {
      margin-bottom: 5.25rem;
    }
  }
                                  

/*-- -------------------------- -->
<---          Gallery           -->
<--- -------------------------- -*/

/* Mobile */
@media only screen and (min-width: 0rem) {
    #gallery-2234 {
      padding: var(--sectionPadding);
      background-color: #fbf5f1;
    }
    #gallery-2234 .cs-container {
      width: 100%;
      max-width: 120rem;
      margin: auto;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      /* 48px - 64px */
      gap: clamp(3rem, 6vw, 4rem);
    }
    #gallery-2234 .cs-content {
      width: 100%;
      max-width: 80rem;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 1rem;
    }
    #gallery-2234 .cs-title {
      margin: 0;
    }
    #gallery-2234 .cs-image-group {
      width: 100%;
      height: auto;
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      /* 132px - 280px */
      grid-auto-rows: clamp(8.25rem, 20vw, 17.5rem);
      /* 16px - 20px */
      gap: clamp(0.5rem, 1.5vw, 1.25rem);
    }
    #gallery-2234 .cs-picture {
      display: block;
      position: relative;
    }
    #gallery-2234 .cs-picture img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      position: absolute;
      top: 0;
      left: 0;
    }
    #gallery-2234 .cs-picture-1 {
      grid-column: span 6;
      grid-row: span 1;
    }
    #gallery-2234 .cs-picture-2 {
      grid-column: span 6;
      grid-row: span 1;
    }
    #gallery-2234 .cs-picture-3 {
      grid-column: span 6;
      grid-row: span 1;
    }
    #gallery-2234 .cs-picture-4 {
      grid-column: span 6;
      grid-row: span 1;
    }
    #gallery-2234 .cs-picture-5 {
      grid-column: span 6;
      grid-row: span 1;
    }
    #gallery-2234 .cs-picture-6 {
      grid-column: span 6;
      grid-row: span 1;
    }
    #gallery-2234 .cs-picture-7 {
      grid-column: span 12;
      grid-row: span 2;
    }
    #gallery-2234 .cs-picture-8 {
      grid-column: span 6;
      grid-row: span 1;
    }
    #gallery-2234 .cs-picture-9 {
      grid-column: span 6;
      grid-row: span 1;
    }
    #gallery-2234 .cs-picture-10 {
      grid-column: span 6;
      grid-row: span 1;
    }
    #gallery-2234 .cs-picture-11 {
      grid-column: span 6;
      grid-row: span 1;
    }
    #gallery-2234 .cs-picture-12 {
      grid-column: span 6;
      grid-row: span 1;
    }
    #gallery-2234 .cs-picture-13 {
      grid-column: span 6;
      grid-row: span 1;
    }
  }
  /* Tablet */
  @media only screen and (min-width: 48rem) {
    #gallery-2234 .cs-container {
      align-items: center;
    }
    #gallery-2234 .cs-content {
      flex-direction: row;
      justify-content: space-between;
      align-items: flex-end;
    }
    #gallery-2234 .cs-text {
      max-width: 28.1875rem;
    }
    #gallery-2234 .cs-flex {
      min-width: 45%;
    }
    #gallery-2234 .cs-picture-1 {
      grid-column: span 3;
      grid-row: span 1;
    }
    #gallery-2234 .cs-picture-2 {
      grid-column: span 3;
      grid-row: span 1;
    }
    #gallery-2234 .cs-picture-3 {
      grid-column: span 3;
      grid-row: span 1;
    }
    #gallery-2234 .cs-picture-4 {
      grid-column: span 3;
      grid-row: span 1;
    }
    #gallery-2234 .cs-picture-5 {
      grid-column: span 3;
      grid-row: span 1;
    }
    #gallery-2234 .cs-picture-6 {
      grid-column: span 6;
      grid-row: span 2;
    }
    #gallery-2234 .cs-picture-7 {
      grid-column: span 3;
      grid-row: span 1;
    }
    #gallery-2234 .cs-picture-8 {
      grid-column: span 3;
      grid-row: span 1;
    }
    #gallery-2234 .cs-picture-9 {
      grid-column: span 3;
      grid-row: span 1;
    }
    #gallery-2234 .cs-picture-10 {
      grid-column: span 3;
      grid-row: span 1;
    }
    #gallery-2234 .cs-picture-11 {
      grid-column: span 3;
      grid-row: span 1;
    }
    #gallery-2234 .cs-picture-12 {
      grid-column: span 3;
      grid-row: span 1;
    }
    #gallery-2234 .cs-picture-13 {
      grid-column: span 3;
      grid-row: span 1;
    }
  }
                                  

/*-- -------------------------- -->
<---           Logos            -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #logos-572 {
      /* 60px - 130px */
      padding: clamp(3.75rem, 8vw, 8.125rem) 1rem;
      background-color: var(--secondary);
  }
  #logos-572 .cs-container {
      width: 100%;
      max-width: 80rem;
      margin: auto;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      /* 48px - 64px */
      gap: clamp(3rem, 6vw, 4rem);
  }
  #logos-572 .cs-logo {
      width: auto;
      max-width: 90%;
      height: auto;
      margin: 0;
      display: block;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #logos-572 .cs-container {
      justify-content: space-between;
  }
  #logos-572 .cs-logo {
      width: 20%;
      /* the max width becomes whatever the actual width of the image is */
      max-width: max-content;
      height: auto;
      display: block;
  }
}

/*-- -------------------------- -->
<---          Client Galleries index           -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #gallery-47 {
      padding: var(--sectionPadding);
      position: relative;
  }
  #gallery-47 .cs-container {
      width: 100%;
      max-width: 80rem;
      margin: auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      /* 48px - 64px */
      gap: clamp(3rem, 6vw, 4rem);
  }
  #gallery-47 .cs-content {
      /* set text align to left if content needs to be left aligned */
      text-align: center;
      width: 100%;
      display: flex;
      flex-direction: column;
      /* centers content horizontally, set to flex-start to left align */
      align-items: center;
  }

  #gallery-47 .cs-image-group {
      width: 100%;
      margin: 0;
      padding: 0;
      display: grid;
      place-content: center;
      grid-template-columns: repeat(12, 1fr);
      /* 158px - 304px */
      grid-template-rows: 1fr;
      /* 8px - 20px */
      gap: clamp(0.5rem, 1.5vw, 1.25rem);
  }
  #gallery-47 .cs-item {
      list-style: none;
      width: 100%;
      margin: 0;
      aspect-ratio: 1;
      grid-column: span 6;
      display: block;
      position: relative;
      /* prevents image from overflowing the container on hover */
      overflow: hidden;
  }
  #gallery-47 .cs-item:hover .cs-picture img {
      transform: scale(1.1);
  }
  #gallery-47 .cs-picture {
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
      object-fit: cover;
  }
  #gallery-47 .cs-picture img {
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
      object-fit: cover;
      transition: transform 0.6s;
  }
  #gallery-47 .cs-item-1 {
      grid-column: 1 / span 12;
      grid-row: 1 / 2;
      aspect-ratio: 2.07594937;
  }
  #gallery-47 .cs-item-5 {
      grid-column: 7 / span 6;
      grid-row: 3 / span 2;
      aspect-ratio: initial;
  }
  #gallery-47 .cs-button-solid {
      font-size: 1rem;
      /* 46px - 56px */
      line-height: clamp(2.875rem, 5.5vw, 3.5rem);
      text-decoration: none;
      font-weight: 700;
      text-align: center;
      margin: 0;
      color: #fff;
      min-width: 9.375rem;
      padding: 0 1.5rem;
      background-color: var(--primary);
      border-radius: 0.25rem;
      display: inline-block;
      position: relative;
      z-index: 1;
      /* prevents padding from adding to the width */
      box-sizing: border-box;
  }
  #gallery-47 .cs-button-solid:before {
      content: "";
      position: absolute;
      height: 100%;
      width: 0%;
      background: #000;
      opacity: 1;
      top: 0;
      left: 0;
      z-index: -1;
      border-radius: 0.25rem;
      transition: width 0.3s;
  }
  #gallery-47 .cs-button-solid:hover:before {
      width: 100%;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #gallery-47 .cs-item {
      grid-column: span 3;
  }
  #gallery-47 .cs-item-1 {
      grid-column: 1 / span 6;
  }
  #gallery-47 .cs-item-2 {
      grid-column: 1 / span 3;
      grid-row: 2;
  }
  #gallery-47 .cs-item-3 {
      grid-column: 4 / span 3;
      grid-row: 2;
  }
  #gallery-47 .cs-item-5 {
      grid-column: 7 / span 3;
      grid-row: 2;
  }
  #gallery-47 .cs-item-6 {
      grid-column: 10 / span 3;
      grid-row: 1 / span 2;
      aspect-ratio: initial;
  }
}

/*-- -------------------------- -->
<---          Colombia Gallery   Index        -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #gallery-44 {
      padding: var(--sectionPadding);
      position: relative;
      /* Prevents overflow from the image going off screen */
      overflow: hidden;
  }
  #gallery-44 .cs-container {
      width: 100%;
      max-width: 69rem;
      margin: auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      /* 48px - 64px */
      gap: clamp(3rem, 6vw, 4rem);
  }
  #gallery-44 .cs-content {
      /* set text align to left if content needs to be left aligned */
      text-align: center;
      width: 100%;
      display: flex;
      flex-direction: column;
      /* centers content horizontally, set to flex-start to left align */
      align-items: center;
  }

  #gallery-44 .cs-image-group {
      padding: 0;
      margin: 0;
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      /* 16px - 20px */
      gap: clamp(1rem, 1.5vw, 1.25rem);
  }
  #gallery-44 .cs-item {
      width: 100%;
      height: 100%;
      aspect-ratio: 1;
      margin: 0;
      position: relative;
      display: block;
  }
  #gallery-44 .cs-item:hover .cs-hover-box {
      opacity: 1;
  }
  #gallery-44 .cs-item:hover .cs-icon {
      /* return to original position */
      transform: rotateY(0);
  }
  #gallery-44 .cs-item:hover .cs-h3 {
      opacity: 1;
      /* Return to original position */
      transform: translateY(0);
  }
  #gallery-44 .cs-item:hover .cs-hover-box-text {
      opacity: 1;
      /* Return to original position */
      transform: translateY(0);
  }
  #gallery-44 .cs-picture {
      margin: auto;
      width: 100%;
      height: 100%;
      display: block;
      position: relative;
  }
  #gallery-44 .cs-picture img {
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
      object-fit: cover;
  }
  #gallery-44 .cs-button-solid {
      font-size: 1rem;
      /* 46px - 56px */
      line-height: clamp(2.875rem, 5.5vw, 3.5rem);
      text-decoration: none;
      font-weight: 700;
      text-align: center;
      margin: 0;
      color: #fff;
      min-width: 9.375rem;
      padding: 0 1.5rem;
      background-color: var(--primary);
      border-radius: 0.25rem;
      display: inline-block;
      position: relative;
      z-index: 1;
      /* prevents padding from adding to the width */
      box-sizing: border-box;
  }
  #gallery-44 .cs-button-solid:before {
      content: "";
      position: absolute;
      height: 100%;
      width: 0%;
      background: #000;
      opacity: 1;
      top: 0;
      left: 0;
      z-index: -1;
      border-radius: 0.25rem;
      transition: width 0.3s;
  }
  #gallery-44 .cs-button-solid:hover:before {
      width: 100%;
  }
}
/* In Between - 600px */
@media only screen and (min-width: 37.5rem) {
  #gallery-44 .cs-image-group {
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      grid-template-rows: 1fr;
  }
  #gallery-44 .cs-item {
      grid-column: span 6;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #gallery-44 .cs-item {
      grid-column: span 4;
  }
}

                              

                              
                                  

/*-- -------------------------- -->
<---          Footer            -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #footer-1147 {
        padding: var(--sectionPadding);
        position: relative;
        z-index: 1;
    }
    #footer-1147 .cs-container {
        width: 100%;
        max-width: 80rem;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    #footer-1147 .cs-top {
        width: 100%;
        /* 32px - 40px */
        margin-bottom: clamp(2rem, 4vw, 2.5rem);
        padding-bottom: clamp(2rem, 4vw, 2.5rem);
        border-bottom: 1px solid #484848;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
    }
    #footer-1147 .cs-ul {
        margin: 0;
        padding: 0;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        row-gap: 0.5rem;
        /* 28px - 40px */
        column-gap: clamp(1.75rem, 4vw, 2.5rem);
    }
    #footer-1147 .cs-li {
        list-style: none;
    }
    #footer-1147 .cs-link {
        /* 14px - 16px */
        font-size: clamp(0.875rem, 1.5vw, 1rem);
        line-height: 1.5em;
        text-decoration: none;
        margin: 0;
        color: #bababa;
        display: block;
        transition: color 0.3s;
    }
    #footer-1147 .cs-link:hover {
        color: var(--secondary);
    }
    #footer-1147 .cs-logo {
        width: 10.5rem;
        height: auto;
        display: block;
    }
    #footer-1147 .cs-logo-img {
        width: 100%;
        height: auto;
        display: block;
    }
    #footer-1147 .cs-bottom {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    #footer-1147 .cs-social {
        margin: 0;
        padding: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0.5rem;
    }
    #footer-1147 .cs-social-li {
        list-style: none;
    }
    #footer-1147 .cs-social-link {
        width: 2rem;
        height: 2rem;
        background-color: #484848;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: background-color 0.3s;
    }
    #footer-1147 .cs-social-link:hover {
        background-color: var(--secondary);
    }
    #footer-1147 .cs-social-link:hover .cs-social-icon {
        filter: grayscale(1) brightness(0);
        opacity: 1;
    }
    #footer-1147 .cs-social-icon {
        width: 0.75rem;
        height: auto;
        display: block;
        opacity: 0.5;
    }
    #footer-1147 .cs-copyright {
        font-size: 1rem;
        line-height: 1.5em;
        margin: 0;
        color: #bababa;
        display: block;
    }
    #footer-1147 .cs-copyright-link {
        font-size: inherit;
        text-decoration: none;
        color: inherit;
        transition: color 0.3s;
    }
    #footer-1147 .cs-copyright-link:hover {
        color: var(--secondary);
    }
    #footer-1147 .cs-background {
        width: 100%;
        height: 100%;
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
    }
    #footer-1147 .cs-background:before {
        /* background color overlay */
        content: "";
        position: absolute;
        display: block;
        height: 100%;
        width: 100%;
        background: #1a1a1a;
        opacity: 0.96;
        top: 0;
        left: 0;
        z-index: 1;
    }
    #footer-1147 .cs-background img {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        /* Makes img tag act as a background image */
        object-fit: cover;
    }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #footer-1147 .cs-top {
        flex-direction: row;
        justify-content: space-between;
    }
    #footer-1147 .cs-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

/*-- -------------------------- -->
<---          Banner            -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #banner-1403 {
        padding: var(--sectionPadding);
        /* 190px - 268px */
        padding-top: clamp(11.875rem, 25vw, 16.75rem);
        padding-bottom: 6.25rem;
        /* clips the line from causing overflow issues for going off screen */
        overflow: hidden;
        position: relative;
        z-index: 1;
    }
    #banner-1403 .cs-container {
        text-align: center;
        width: 100%;
        max-width: 80rem;
        margin: auto;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        flex-direction: column;
        /* 8px - 12px */
        gap: clamp(0.5rem, 1vw, 0.75rem);
    }
    #banner-1403 .cs-int-title {
        /* 39px - 61px */
        font-size: clamp(2.4375rem, 6.4vw, 3.8125rem);
        font-weight: 900;
        line-height: 1.2em;
        text-align: inherit;
        margin: 0;
        color: var(--bodyTextColorWhite);
        position: relative;
    }
    #banner-1403 .cs-breadcrumbs {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    #banner-1403 .cs-link {
        font-size: 1rem;
        line-height: 1.2em;
        text-decoration: none;
        color: var(--bodyTextColorWhite);
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    #banner-1403 .cs-link:last-of-type {
        /* remove the chevron on the last list item */
    }
    #banner-1403 .cs-link:last-of-type::after {
        display: none;
    }
    #banner-1403 .cs-link:after {
        /* chevron */
        content: "";
        width: 0.4375rem;
        height: 0.75rem;
        margin: 0 1rem;
        background: url("https://csimg.nyc3.cdn.digitaloceanspaces.com/Icons/white-chev.svg");
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        position: relative;
        display: block;
    }
    #banner-1403 .cs-link.cs-active {
        color: var(--primary);
    }
    #banner-1403 .cs-background {
        width: 100%;
        height: 100%;
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
    }
    #banner-1403 .cs-background:before {
        /* gradient overlay */
        content: "";
        width: 100%;
        height: 100%;
        background: #000;
        opacity: 0.4;
        position: absolute;
        display: block;
        top: 0;
        left: 0;
        z-index: 1;
    }
    #banner-1403 .cs-background:after {
        /* gradient overlay */
        content: "";
        width: 100%;
        height: 40%;
        background: -webkit-gradient(
            linear,
            left top,
            left bottom,
            from(#000000),
            to(rgba(0, 0, 0, 0))
        );
        background: -o-linear-gradient(top, #000000 0%, rgba(0, 0, 0, 0) 100%);
        background: linear-gradient(
            to bottom,
            #000000 0%,
            rgba(0, 0, 0, 0) 100%
        );
        position: absolute;
        display: block;
        top: 0;
        left: 0;
        z-index: 2;
    }
    #banner-1403 .cs-background img {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        /* Makes img tag act as a background image */
        object-fit: cover;
    }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #banner-1403 .cs-background:before {
        width: 50%;
        height: 100%;
        background: -webkit-gradient(
            linear,
            left top,
            right top,
            from(#000000),
            to(rgba(0, 0, 0, 0))
        );
        background: -o-linear-gradient(left, #000000 0%, rgba(0, 0, 0, 0) 100%);
        background: linear-gradient(
            to right,
            #000000 0%,
            rgba(0, 0, 0, 0) 100%
        );
        opacity: 1;
    }
}

/*-- -------------------------- -->
<---          Contact           -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #contact-1403 {
        padding: var(--sectionPadding);
        padding-bottom: 0;
        background-color: #f7f7f7;
        position: relative;
        z-index: 10;
    }
    #contact-1403 .cs-container {
        width: 100%;
        /* changes to 1280px at tablet */
        max-width: 36.5rem;
        margin: auto;
        display: flex;
        justify-content: center;
        align-items: stretch;
        flex-direction: column;
        column-gap: auto;
        /* 48px - 64px */
        gap: clamp(2rem, 3vw, 3rem);
        position: relative;
    }
    #contact-1403 .cs-content {
        /* set text align to left if content needs to be left aligned */
        text-align: left;
        width: 100%;
        display: flex;
        flex-direction: column;
        /* centers content horizontally, set to flex-start to left align */
        align-items: flex-start;
    }

    #contact-1403 .cs-title {
        max-width: 23ch;
    }
    #contact-1403 .cs-text {
        margin-bottom: 1rem;
    }
    #contact-1403 .cs-text:last-of-type {
        margin-bottom: 2rem;
    }
    #contact-1403 .cs-ul {
        text-align: left;
        width: 100%;
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        position: relative;
    }
    #contact-1403 .cs-li {
        list-style: none;
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 1.25rem;
    }
    #contact-1403 .cs-li:hover .cs-icon-wrapper {
        transform: scale(1.1);
    }
    #contact-1403 .cs-header {
        font-size: 1.25rem;
        font-weight: 700;
        line-height: 1.2em;
        margin-bottom: 0.75rem;
        color: var(--headerColor);
        display: block;
    }
    #contact-1403 .cs-link {
        font-size: 1rem;
        line-height: 1.5em;
        text-decoration: none;
        color: #767676;
        display: block;
        position: relative;
    }
    #contact-1403 .cs-link:hover {
        text-decoration: underline;
    }
    #contact-1403 .cs-icon-wrapper {
        width: 3.75rem;
        height: 3.75rem;
        margin: 0;
        border-radius: 50%;
        border: 1px solid #bababa;
        display: flex;
        justify-content: center;
        align-items: center;
        /* prevents flexbox from squishing it */
        flex: none;
        transition: transform 0.3s;
    }
    #contact-1403 .cs-icon {
        width: 1.5rem;
        height: auto;
        display: block;
    }
    #contact-1403 .cs-form {
        width: 100%;
        max-width: 39.375rem;
        /* -30px to -100px */
        margin-bottom: calc(clamp(1.875rem, 7vw, 6.25rem) * -1);
        /* 24px - 48px top and bottom */
        /* 16px - 48px left and right */
        padding: clamp(1.5rem, 5.18vw, 3rem) clamp(1rem, 4vw, 3rem);
        /* prevents flexbox from affecting height and width */
        box-sizing: border-box;
        background-color: #fff;
        border-radius: 1rem;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        align-items: center;
        gap: 0.75rem;
    }
    #contact-1403 .cs-h3 {
        /* 20px - 39px */
        font-size: clamp(1.25rem, 3vw, 2.4375rem);
        line-height: 1.2em;
        font-weight: 700;
        margin: 0 0 0.25rem 0;
        color: var(--headerColor);
    }
    #contact-1403 .cs-label {
        /* 14px - 16px */
        font-size: clamp(0.875rem, 1.5vw, 1rem);
        width: 100%;
        color: var(--headerColor);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 0.25rem;
    }
    #contact-1403 .cs-input {
        font-size: 1rem;
        width: 100%;
        height: 3.5rem;
        padding: 0;
        padding-left: 1.5rem;
        color: var(--headerColor);
        background-color: #f7f7f7;
        border-radius: 0.5rem;
        border: none;
        /* prevents padding from adding to height and width */
        box-sizing: border-box;
    }
    #contact-1403 .cs-input::placeholder {
        color: #7d799c;
        opacity: 0.6;
    }
    #contact-1403 .cs-textarea {
        min-height: 7.5rem;
        padding-top: 1.5rem;
        margin-bottom: 0.75rem;
        font-family: inherit;
    }
    #contact-1403 .cs-button-solid {
        font-size: 1rem;
        line-height: 3.5rem;
        text-decoration: none;
        font-weight: 700;
        overflow: hidden;
        margin: 0;
        color: #fff;
        padding: 0 3rem;
        border-radius: 1.875rem;
        background-color: var(--primary);
        display: inline-block;
        position: relative;
        z-index: 1;
        transition: color 0.3s;
    }
    #contact-1403 .cs-button-solid:before {
        content: "";
        position: absolute;
        display: block;
        height: 100%;
        width: 0%;
        background: #1a1a1a;
        opacity: 1;
        top: 0;
        left: 0;
        z-index: -1;
        transition: width 0.3s;
    }
    #contact-1403 .cs-button-solid:hover {
        color: var(--primary);
    }
    #contact-1403 .cs-button-solid:hover:before {
        width: 100%;
    }
    #contact-1403 .cs-submit {
        width: 100%;
        min-width: 12.5rem;
        border: none;
    }
    #contact-1403 .cs-submit:hover {
        color: #fff;
        cursor: pointer;
    }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #contact-1403 .cs-container {
        max-width: 80rem;
        flex-direction: row;
        justify-content: space-between;
    }
    #contact-1403 .cs-content {
        width: 47%;
        /* prevents flexbox from squishing it */
        flex: none;
    }
    #contact-1403 .cs-submit {
        width: auto;
    }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
    #contact-1403 .cs-form {
        width: 46%;
        max-width: 36.125rem;
    }
    #contact-1403 .cs-submit {
        width: auto;
    }
}
/* Large Desktop - 1500px */
@media only screen and (min-width: 93.75rem) {
    #contact-1403 .cs-graphic {
        display: block;
    }
}

/*-- -------------------------- -->
<---    Google Maps Iframe      -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #map-1403 iframe {
        width: 100%;
        /* 400px - 560px */
        height: clamp(25rem, 42vw, 35rem);
    }
}

/*-- -------------------------- -->
<---          Reviews           -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #reviews-1403 {
        /* centers the button */
        text-align: center;
        padding: var(--sectionPadding);
        /* clips the orbs from causing overflow issues */
        overflow: hidden;
        position: relative;
        z-index: 1;
    }
    #reviews-1403 .cs-container {
        width: 100%;
        /* changes to 1024px at tablet */
        max-width: 36.5rem;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        /* 48px - 64px */
        gap: clamp(3rem, 6vw, 4rem);
    }
    #reviews-1403 .cs-content {
        /* set text align to left if content needs to be left aligned */
        text-align: center;
        width: 100%;
        display: flex;
        flex-direction: column;
        /* centers content horizontally, set to flex-start to left align */
        align-items: center;
    }
    #reviews-1403 .cs-topper {
        font-size: var(--topperFontSize);
        line-height: 1.2em;
        text-transform: uppercase;
        text-align: inherit;
        letter-spacing: 0.1em;
        font-weight: 700;
        color: var(--primary);
        margin-bottom: 0.25rem;
        display: block;
    }
    #reviews-1403 .cs-title {
        font-size: var(--headerFontSize);
        font-weight: 900;
        line-height: 1.2em;
        text-align: inherit;
        max-width: 43.75rem;
        margin: 0 0 1rem 0;
        color: var(--headerColor);
        position: relative;
    }
    #reviews-1403 .cs-title {
        max-width: 20ch;
        margin: 0;
    }
    #reviews-1403 .cs-card-group {
        width: 100%;
        padding: 0;
        margin: 0;
        display: grid;
        grid-template-columns: repeat(12, 1fr);
        /* 16px - 20px */
        gap: clamp(1rem, 2.5vw, 1.15rem);
    }
    #reviews-1403 .cs-item {
        list-style: none;
        text-align: left;
        /* 20px - 60px */
        padding: clamp(1rem, 4vw, 3.75rem);
        background-color: #fff;
        /* 12px - 24px */
        border-radius: clamp(0.75rem, 1.5vw, 1.25rem);
        /* prevents padding from adding to height and width */
        box-sizing: border-box;
        /* clips the pseudo box from overflowing */
        overflow: hidden;
        display: flex;
        grid-column: span 12;
        justify-content: center;
        align-items: flex-start;
        flex-direction: column;
        position: relative;
        z-index: 1;
    }
    #reviews-1403 .cs-item:before {
        /* background color */
        content: "";
        width: 100%;
        height: 100%;
        background: var(--primary);
        opacity: 0.05;
        position: absolute;
        display: block;
        top: 0;
        left: 0;
        z-index: -1;
        /* prevents the mouse from interacting it */
        pointer-events: none;
    }
    #reviews-1403 .cs-quote {
        /* 72px - 120px */
        width: clamp(4.5rem, 10vw, 7.5rem);
        height: auto;
        /* 32px - 64px */
        margin-bottom: clamp(2rem, 6vw, 4rem);
        display: block;
    }
    #reviews-1403 .cs-item-text {
        /* 16px - 25px */
        font-size: clamp(1rem, 2.6vw, 1.5625rem);
        line-height: 1.2em;
        font-weight: bold;
        margin: 0;
        /* 24px - 64px */
        margin-bottom: clamp(1.5rem, 6vw, 4rem);
        color: var(--bodyTextColor);
    }
    #reviews-1403 .cs-flex-group {
        /* in case one card has more text than the other, this pushes up against the review text so the name and title are always at the bottom. Only works if parent is a flexbox */
        margin-top: auto;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        /* 8px - 24px */
        gap: clamp(0.8rem, 1.5vw, 1rem);
    }
    #reviews-1403 .cs-profile {
        /* 40px - 52px */
        width: clamp(2.5rem, 5vw, 3.25rem);
        height: clamp(2.5rem, 5vw, 3.25rem);
        margin: 0;
        border-radius: 50%;
        box-sizing: border-box;
        border: 2px solid #fff;
        /* clips image corners to make circle */
        overflow: hidden;
        position: relative;
        display: block;
    }
    #reviews-1403 .cs-profile img {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        /* makes the image behave like a background image */
        object-fit: cover;
    }
    #reviews-1403 .cs-name {
        /* 16px - 25px */
        font-size: clamp(1rem, 2.5vw, 1.5625rem);
        line-height: 1.2em;
        font-weight: 700;
        margin: 0;
        color: var(--headerColor);
        display: block;
    }
    #reviews-1403 .cs-job {
        /* 14px - 16px */
        font-size: clamp(0.875rem, 1.5vw, 1rem);
        line-height: 1.5em;
        font-weight: 400;
        margin: 0;
        color: #746f95;
        display: block;
    }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #reviews-1403 .cs-container {
        max-width: 80rem;
    }
    #reviews-1403 .cs-item {
        grid-column: span 6;
    }
}

/*-- -------------------------- -->
<---          Gallery Page 1st gallery          -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #gallery-2250 {
      padding: var(--sectionPadding);
      background-color: #FDFAF8;
      /* clips the svg wave from overflowing */
      overflow: hidden;
      position: relative;
      z-index: 1;
    }
    #gallery-2250 .cs-container {
      width: 100%;
      /* changes to 1840px at tablet */
      max-width: 44rem;
      margin: auto;
      margin-top: 5rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      /* 48px - 64px */
      gap: clamp(3rem, 6vw, 4rem);
    }
    #gallery-2250 .cs-content {
      /* set text align to left if content needs to be left aligned */
      text-align: center;
      width: 100%;
      display: flex;
      flex-direction: column;
      /* centers content horizontally, set to flex-start to left align */
      align-items: center;
    }
    #gallery-2250 .cs-title {
      max-width: 40ch;
    }
    #gallery-2250 .cs-card-group {
      width: 100%;
      /* changes to 100% at tablet */
      max-width: 31.25rem;
      margin: 0;
      padding: 0;
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      /* 16px - 20px */
      gap: clamp(1rem, 1.5vw, 1.25rem);
    }
    #gallery-2250 .cs-item {
      text-align: left;
      list-style: none;
      width: 100%;
      height: 17.5rem;
      margin: 0;
      /* prevents padding and border from affecting height and width */
      box-sizing: border-box;
      padding: 0;
      /* clips the image corners */
      overflow: hidden;
      grid-column: span 12;
      grid-row: span 1;
      gap: 0.5rem;
      position: relative;
    }
    #gallery-2250 .cs-item:hover .cs-h3,
    #gallery-2250 .cs-item:focus-within .cs-h3 {
      transform: translateY(0);
    }
    #gallery-2250 .cs-item:hover .cs-fake-link,
    #gallery-2250 .cs-item:focus-within .cs-fake-link {
      height: auto;
      opacity: 1;
      transform: translateY(0);
    }
    #gallery-2250 .cs-item:hover .cs-background:before,
    #gallery-2250 .cs-item:focus-within .cs-background:before {
      height: 180%;
    }
    #gallery-2250 .cs-item:hover .cs-background img,
    #gallery-2250 .cs-item:focus-within .cs-background img {
      opacity: 0.5;
      transform: scale(1.1);
    }
    #gallery-2250 .cs-link {
      text-decoration: none;
      height: 100%;
      padding: 1rem;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      align-items: flex-start;
    }
    #gallery-2250 .cs-wrapper {
      width: 100%;
      overflow: hidden;
      color: var(--primary);
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 0.25rem;
    }
    #gallery-2250 .cs-header {
      /* 16px - 20px */
      font-size: clamp(1rem, 2vw, 1.25rem);
      font-weight: 700;
      line-height: 1.2em;
      text-align: inherit;
      margin: 0;
      color: var(--primary);
    }
    #gallery-2250 .cs-h3 {
      /* 20px - 25px */
      font-size: clamp(1.25rem, 2vw, 2.4375rem);
      font-weight: 700;
      line-height: 1.2em;
      text-align: inherit;
      text-decoration: none;
      width: 100%;
      margin: 0;
      padding-right: 3.75rem;
      color: var(--bodyTextColorWhite);
      display: flex;
      justify-content: space-between;
      position: relative;
    }
    #gallery-2250 .cs-icon {
      /* 40px - 64px */
      width: clamp(2.5rem, 4vw, 4rem);
      height: auto;
      display: block;
      position: absolute;
      bottom: 0rem;
      right: 0rem;
      transition: transform 0.3s;
    }
    #gallery-2250 .cs-background {
      width: 100%;
      height: 100%;
      object-fit: cover;
      background-color: #000;
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      z-index: -1;
    }
    #gallery-2250 .cs-background:before {
      /* gradient overlay */
      content: "";
      width: 100%;
      height: 100%;
      background: linear-gradient(0deg, rgba(0, 0, 0, 0.72) 14.59%, rgba(0, 0, 0, 0) 43.18%);
      opacity: 1;
      display: block;
      position: absolute;
      bottom: 0;
      left: 0;
      z-index: 10;
      transition: height 0.3s;
    }
    #gallery-2250 .cs-background img {
      width: 100%;
      height: 100%;
      /* Makes img tag act as a background image */
      object-fit: cover;
      position: absolute;
      z-index: -1;
      transition: transform 0.6s, opacity 0.3s;
    }
  }
  /* Tablet - 768px */
  @media only screen and (min-width: 48rem) {
    #gallery-2250 .cs-container {
      max-width: 115rem;
    }
    #gallery-2250 .cs-card-group {
      max-width: 100%;
      /* 60px - 100px, same amount as the top value to offset it */
      margin-bottom: clamp(3.75rem, 6vw, 6.25rem);
      grid-template-rows: 1fr;
    }
    #gallery-2250 .cs-item {
      /* 280px - 440px */
      min-height: clamp(17.5rem, 35vw, 27.5rem);
      grid-column: span 4;
    }
    #gallery-2250 .cs-item.cs-shift {
      position: relative;
      /* 60px - 100px */
      top: clamp(3.75rem, 6vw, 6.25rem);
    }
  }
  /* Tablet - 768px */
  @media only screen and (min-width: 48rem) {
    #gallery-2250 .cs-item:hover .cs-wrapper,
    #gallery-2250 .cs-item:focus-within .cs-wrapper {
      opacity: 1;
      transform: translateY(0);
    }
    #gallery-2250 .cs-item:hover .cs-background:before,
    #gallery-2250 .cs-item:focus-within .cs-background:before {
      height: 180%;
    }
    #gallery-2250 .cs-item:hover .cs-background img,
    #gallery-2250 .cs-item:focus-within .cs-background img {
      opacity: 0.5;
      transform: scale(1.1);
    }
    #gallery-2250 .cs-wrapper {
      opacity: 0;
      transform: translateY(5rem);
      transition: transform 0.3s, opacity 0.3s;
    }
  }

/*-- -------------------------- -->
<---          Gallery           -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #gallery-1182 {
        padding: var(--sectionPadding);
        padding-left: 0;
        padding-right: 0;
    }
    #gallery-1182 .cs-container {
        width: 100%;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        /* 48px - 64px */
        gap: clamp(3rem, 6vw, 4rem);
    }
    #gallery-1182 .cs-content {
        /* set text align to left if content needs to be left aligned */
        text-align: center;
        width: 100%;
        padding: 0 1rem;
        /* prevents padding and border from affecting height and width */
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        /* centers content horizontally, set to flex-start to left align */
        align-items: center;
    }

    #gallery-1182 .cs-title {
        margin: 0;
    }
    #gallery-1182 .cs-gallery {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(10, 1fr);
        /* 16px - 20px */
        gap: clamp(1rem, 2vw, 1.25rem);
    }
    #gallery-1182 .cs-picture {
        width: 100%;
        height: 67vw;
        /* makes it square */
        aspect-ratio: 1;
        display: block;
        grid-column: span 5;
        grid-row: span 1;
        position: relative;
    }
    #gallery-1182 .cs-picture img {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
}
/* Tablet - 650px */
@media only screen and (min-width: 40.625rem) {
    #gallery-1182 {
        flex-direction: row;
    }
    #gallery-1182 .cs-picture {
        grid-column: span 2;
        height: 23vw;
    }
}

/*-- -------------------------- -->
<---          Gallery           -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #gallery-1183 {
        padding: var(--sectionPadding);
        padding-left: 0;
        padding-right: 0;
    }
    #gallery-1183 .cs-container {
        width: 100%;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        /* 48px - 64px */
        gap: clamp(3rem, 6vw, 4rem);
    }
    #gallery-1183 .cs-content {
        /* set text align to left if content needs to be left aligned */
        text-align: center;
        width: 100%;
        padding: 0 1rem;
        /* prevents padding and border from affecting height and width */
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        /* centers content horizontally, set to flex-start to left align */
        align-items: center;
    }

    #gallery-1183 .cs-title {
        margin: 0;
    }
    #gallery-1183 .cs-gallery {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(10, 1fr);
        /* 16px - 20px */
        gap: clamp(1rem, 2vw, 1.25rem);
    }
    #gallery-1183 .cs-picture {
        width: 100%;
        height: 67vw;
        /* makes it square */
        aspect-ratio: 1;
        display: block;
        grid-column: span 5;
        grid-row: span 1;
        position: relative;
    }
    #gallery-1183 .cs-picture img {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
}
/* Tablet - 650px */
@media only screen and (min-width: 40.625rem) {
    #gallery-1183 {
        flex-direction: row;
    }
    #gallery-1183 .cs-picture {
        grid-column: span 2;
        height: 23vw;
    }
}

/*-- -------------------------- -->
<---          Gallery           -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #gallery-1184 {
        padding: var(--sectionPadding);
        padding-left: 0;
        padding-right: 0;
    }
    #gallery-1184 .cs-container {
        width: 100%;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        /* 48px - 64px */
        gap: clamp(3rem, 6vw, 4rem);
    }
    #gallery-1184 .cs-content {
        /* set text align to left if content needs to be left aligned */
        text-align: center;
        width: 100%;
        padding: 0 1rem;
        /* prevents padding and border from affecting height and width */
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        /* centers content horizontally, set to flex-start to left align */
        align-items: center;
    }

    #gallery-1184 .cs-title {
        margin: 0;
    }
    #gallery-1184 .cs-gallery {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(10, 1fr);
        /* 16px - 20px */
        gap: clamp(1rem, 2vw, 1.25rem);
    }
    #gallery-1184 .cs-picture {
        width: 100%;
        height: 67vw;
        /* makes it square */
        aspect-ratio: 1;
        display: block;
        grid-column: span 5;
        grid-row: span 1;
        position: relative;
    }
    #gallery-1184 .cs-picture img {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
}
/* Tablet - 650px */
@media only screen and (min-width: 40.625rem) {
    #gallery-1184 {
        flex-direction: row;
    }
    #gallery-1184 .cs-picture {
        grid-column: span 2;
        height: 23vw;
    }
}

/*-- -------------------------- -->
<---          Gallery           -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #gallery-1185 {
        padding: var(--sectionPadding);
        padding-left: 0;
        padding-right: 0;
    }
    #gallery-1185 .cs-container {
        width: 100%;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        /* 48px - 64px */
        gap: clamp(3rem, 6vw, 4rem);
    }
    #gallery-1185 .cs-content {
        /* set text align to left if content needs to be left aligned */
        text-align: center;
        width: 100%;
        padding: 0 1rem;
        /* prevents padding and border from affecting height and width */
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        /* centers content horizontally, set to flex-start to left align */
        align-items: center;
    }

    #gallery-1185 .cs-title {
        margin: 0;
    }
    #gallery-1185 .cs-gallery {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(10, 1fr);
        /* 16px - 20px */
        gap: clamp(1rem, 2vw, 1.25rem);
    }
    #gallery-1185 .cs-picture {
        width: 100%;
        height: 67vw;
        /* makes it square */
        aspect-ratio: 1;
        display: block;
        grid-column: span 5;
        grid-row: span 1;
        position: relative;
    }
    #gallery-1185 .cs-picture img {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
}
/* Tablet - 650px */
@media only screen and (min-width: 40.625rem) {
    #gallery-1185 {
        flex-direction: row;
    }
    #gallery-1185 .cs-picture {
        grid-column: span 2;
        height: 23vw;
    }
}

/*-- -------------------------- -->
<---          Gallery           -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #gallery-1186 {
        padding: var(--sectionPadding);
        padding-left: 0;
        padding-right: 0;
    }
    #gallery-1186 .cs-container {
        width: 100%;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        /* 48px - 64px */
        gap: clamp(3rem, 6vw, 4rem);
    }
    #gallery-1186 .cs-content {
        /* set text align to left if content needs to be left aligned */
        text-align: center;
        width: 100%;
        padding: 0 1rem;
        /* prevents padding and border from affecting height and width */
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        /* centers content horizontally, set to flex-start to left align */
        align-items: center;
    }

    #gallery-1186 .cs-title {
        margin: 0;
    }
    #gallery-1186 .cs-gallery {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(10, 1fr);
        /* 16px - 20px */
        gap: clamp(1rem, 2vw, 1.25rem);
    }
    #gallery-1186 .cs-picture {
        width: 100%;
        height: 67vw;
        /* makes it square */
        aspect-ratio: 1;
        display: block;
        grid-column: span 5;
        grid-row: span 1;
        position: relative;
    }
    #gallery-1186 .cs-picture img {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
}
/* Tablet - 650px */
@media only screen and (min-width: 40.625rem) {
    #gallery-1186 {
        flex-direction: row;
    }
    #gallery-1186 .cs-picture {
        grid-column: span 2;
        height: 23vw;
    }
}

/*-- -------------------------- -->
<---          Gallery           -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #gallery-1187 {
        padding: var(--sectionPadding);
        padding-left: 0;
        padding-right: 0;
    }
    #gallery-1187 .cs-container {
        width: 100%;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        /* 48px - 64px */
        gap: clamp(3rem, 6vw, 4rem);
    }
    #gallery-1187 .cs-content {
        /* set text align to left if content needs to be left aligned */
        text-align: center;
        width: 100%;
        padding: 0 1rem;
        /* prevents padding and border from affecting height and width */
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        /* centers content horizontally, set to flex-start to left align */
        align-items: center;
    }

    #gallery-1187 .cs-title {
        margin: 0;
    }
    #gallery-1187 .cs-gallery {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(10, 1fr);
        /* 16px - 20px */
        gap: clamp(1rem, 2vw, 1.25rem);
    }
    #gallery-1187 .cs-picture {
        width: 100%;
        height: 67vw;
        /* makes it square */
        aspect-ratio: 1;
        display: block;
        grid-column: span 5;
        grid-row: span 1;
        position: relative;
    }
    #gallery-1187 .cs-picture img {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
}
/* Tablet - 650px */
@media only screen and (min-width: 40.625rem) {
    #gallery-1187 {
        flex-direction: row;
    }
    #gallery-1187 .cs-picture {
        grid-column: span 2;
        height: 23vw;
    }
}

  /*-- -------------------------- -->
<---            Gallery Page CTA             -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #cta-403 {
      padding: var(--sectionPadding);
      position: relative;
    }
    #cta-403 .cs-background {
      width: 100%;
      height: 100%;
      background-blend-mode: multiply;
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      z-index: -1;
    }
    #cta-403 .cs-background:before {
      /* background color overlay */
      content: "";
      position: absolute;
      display: block;
      height: 100%;
      width: 100%;
      background: #1a1a1a;
      opacity: 0.8;
      top: 0;
      left: 0;
      z-index: 1;
    }
    #cta-403 .cs-background img {
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
      /* Makes img tag act as a background image */
      object-fit: cover;
      /* positions the image inside the parent */
      object-position: 0% 30%;
    }
    #cta-403 .cs-container {
      width: 100%;
      max-width: 80rem;
      margin: auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      /* 48px - 64px */
      gap: clamp(3rem, 6vw, 4rem);
    }
    #cta-403 .cs-content {
      /* set text align to left if content needs to be left aligned */
      text-align: center;
      width: 100%;
      max-width: 32.3125rem;
      display: flex;
      flex-direction: column;
      /* centers content horizontally, set to flex-start to left align */
      align-items: center;
    }
    #cta-403 .cs-title,
    #cta-403 .cs-text {
      color: var(--bodyTextColorWhite);
    }
    #cta-403 .cs-text {
      opacity: 0.8;
      margin-bottom: 1rem;
    }
    #cta-403 .cs-text:last-of-type {
      margin-bottom: 2rem;
    }
    #cta-403 .cs-button-solid {
      font-size: 1rem;
      /* 46px - 56px */
      line-height: clamp(2.875rem, 5.5vw, 3.5rem);
      text-decoration: none;
      font-weight: 700;
      text-align: center;
      margin: 0;
      color: #000;
      min-width: 9.375rem;
      padding: 0 1.5rem;
      background-color: var(--primary);
      border-radius: 0.25rem;
      display: inline-block;
      position: relative;
      z-index: 1;
      /* prevents padding from adding to the width */
      box-sizing: border-box;
    }
    #cta-403 .cs-button-solid:before {
      content: "";
      position: absolute;
      height: 100%;
      width: 0%;
      background: #fff;
      opacity: 1;
      top: 0;
      left: 0;
      z-index: -1;
      border-radius: 0.25rem;
      transition: width 0.3s;
    }
    #cta-403 .cs-button-solid:hover:before {
      width: 100%;
    }
  }
  /* Tablet - 768px */
  @media only screen and (min-width: 48rem) {
    #cta-403 .cs-background {
      /* clips the black slant so it doesnt overflow */
      overflow: hidden;
    }
    #cta-403 .cs-background:before {
      width: 40%;
      opacity: 1;
    }
    #cta-403 .cs-background:after {
      /* black slant */
      content: "";
      width: 31.25rem;
      height: 93.75rem;
      margin-right: -3.125rem;
      background: -moz-linear-gradient(left, #1a1a1a 0%, #1a1a1a 57%, rgba(26, 26, 26, 0) 100%);
      background: -webkit-linear-gradient(left, #1a1a1a 0%, #1a1a1a 57%, rgba(26, 26, 26, 0) 100%);
      background: linear-gradient(to right, #1a1a1a 0%, #1a1a1a 57%, rgba(26, 26, 26, 0) 100%);
      opacity: 1;
      position: absolute;
      display: block;
      top: 50%;
      right: 50%;
      transform: rotate(10deg) translateY(-50%);
    }
    #cta-403 .cs-background img {
      width: 60%;
      object-position: right;
      left: auto;
      right: 0;
    }
    #cta-403 .cs-container {
      flex-direction: row;
      justify-content: space-between;
    }
    #cta-403 .cs-content {
      text-align: left;
      align-items: flex-start;
      width: 45%;
    }
    #cta-403 .cs-text,
    #cta-403 .cs-title {
      margin-left: 0;
    }
  }


  /*-- -------------------------- -->
<---         Blog Gallery           -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #gallery-973 {
        padding: var(--sectionPadding);
    }
    #gallery-973 .cs-container {
        width: 100%;
        /* changes to 1280px at small desktop */
        max-width: 34.375rem;
        margin: auto;
        margin-top: 5rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        /* 48px - 64px */
        gap: clamp(3rem, 6vw, 4rem);
    }
    #gallery-973 .cs-content {
        /* set text align to left if content needs to be left aligned */
        text-align: center;
        width: 100%;
        display: flex;
        flex-direction: column;
        /* centers content horizontally, set to flex-start to left align */
        align-items: center;
    }

    #gallery-973 .cs-title {
        max-width: 20ch;
    }
    #gallery-973 .cs-gallery {
        width: 100%;
        padding: 0;
        margin: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
    }
    #gallery-973 .cs-image {
        width: 50%;
        aspect-ratio: 1;
        /* clips the image corners */
        overflow: hidden;
        display: block;
        position: relative;
    }
    #gallery-973 .cs-image img {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        /* makes it act like a background image */
        object-fit: cover;
    }
}
/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {
    #gallery-973 .cs-container {
        max-width: 80rem;
    }
    #gallery-973 .cs-image {
        width: 25%;
        height: 25rem;
    }
}

                                
                                  
                                  
                                  

                                
                                
                                  
                                  
                                  
                                  
                                  
                            