.modal {
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: none; /* Hidden by default, toggled via JS */
  background-color: rgba(0, 0, 0, 0.4); /* semi-transparent overlay */
}

/* The actual white box in the center */
@media only screen and (min-width: 0rem) {
  /* The actual modal box */
  .modal-content {
    background-color: #fff;
    max-width: 600px;        /* Restrict the width */
    margin: 40% auto;         /* Center it vertically + horizontally */
    border-radius: 8px;      /* Rounded corners */
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
    overflow: hidden;        /* If anything extends the boundary */
    opacity: 0;             /* Start invisible, fade in via keyframes */
    transform: translateY(-20px);
    animation: modalContentFadeIn 0.3s forwards ease-out;
  }
}

@media only screen and (min-width: 48rem) {
  /* The actual modal box */
  .modal-content {
    background-color: #fff;
    max-width: 600px;        /* Restrict the width */
    margin: 20% auto;         /* Center it vertically + horizontally */
    border-radius: 8px;      /* Rounded corners */
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
    overflow: hidden;        /* If anything extends the boundary */
    opacity: 0;             /* Start invisible, fade in via keyframes */
    transform: translateY(-20px);
    animation: modalContentFadeIn 0.3s forwards ease-out;
  }
}

@media only screen and (min-width: 64rem) {
  /* The actual modal box */
.modal-content {
  background-color: #fff;
  max-width: 600px;        /* Restrict the width */
  margin: 20% auto;         /* Center it vertically + horizontally */
  border-radius: 8px;      /* Rounded corners */
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
  overflow: hidden;        /* If anything extends the boundary */
  opacity: 0;             /* Start invisible, fade in via keyframes */
  transform: translateY(-20px);
  animation: modalContentFadeIn 0.3s forwards ease-out;
}
}


@media only screen and (min-width: 70rem) {

/* The actual modal box */
.modal-content {
  background-color: #fff;
  max-width: 600px;        /* Restrict the width */
  margin: 10% auto;         /* Center it vertically + horizontally */
  border-radius: 8px;      /* Rounded corners */
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
  overflow: hidden;        /* If anything extends the boundary */
  opacity: 0;             /* Start invisible, fade in via keyframes */
  transform: translateY(-20px);
  animation: modalContentFadeIn 0.3s forwards ease-out;
}
}



/* The overlay */
.modal {
  position: fixed;       /* Fix position so it stays in view */
  z-index: 9999;         /* Sit on top of everything */
  left: 0;
  top: 0;
  width: 100%;           /* Full width */
  height: 100%;          /* Full height */
  display: none;         /* Hidden by default */
  background-color: rgba(0, 0, 0, 0.5); /* Dark overlay */
}

/* Animate the overlay (fade in) */
.modal.show {
  display: block;
  animation: modalOverlayFadeIn 0.3s forwards;
}

@keyframes modalOverlayFadeIn {
  0%   { opacity: 0; }
  100% { opacity: 1; }
}


/* Animate the modal content (slide down + fade in) */
@keyframes modalContentFadeIn {
  0% {
    transform: translateY(-20px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Header, Body, and Footer areas */
.modal-header,
.modal-body,
.modal-footer {
  padding: 16px;
}

.modal-header {
  background: #f2f2f2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #ddd;
}

.modal-header h2 {
  margin: 0;
  font-size: 1.25rem;
}

.modal-body p {
  margin: 0;
  line-height: 1.5;
}

.modal-footer {
  background: #f2f2f2;
  border-top: 1px solid #ddd;
  text-align: right;
}

/* The close “X” in the top-right */
.modal-close {
  cursor: pointer;
  font-size: 1.5rem;
  font-weight: bold;
  border: none;
  background: none;
  color: #333;
}

/* Close button in the footer */
.close-btn {
  background: var(--primary);      /* A nice blue button, can be changed */
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 8px 16px;
  cursor: pointer;
  font-size: 1rem;
}

.close-btn:hover {
  background: black;
}



.header {
  /* position: relative; */
  height: 900px;
  background: linear-gradient(135deg, var(--primary) 0%, #ffa8ad42 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  color: white;
}

.header h1 {
  margin: 0;
  font-size: 2.5em;
}

.header p {
  margin-top: 10px;
  font-size: 1.2em;
}

.svg-background {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 1;
}

/*-- -------------------------- -->
<---        Why Choose Us       -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #why-choose-1822 {
    background-color: #222;
    position: relative;
    overflow: hidden;
    z-index: 1;
  }

  #why-choose-1822 .cs-container {
    width: 100%;
    max-width: 106.25rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
  }

  #why-choose-1822 .cs-content {
    text-align: center;
    width: 100%;
    padding: var(--sectionPadding);
    background-color: var(--primary);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
  }

  #why-choose-1822 .cs-topper {
    color: var(--bodyTextColorWhite);
  }

  #why-choose-1822 .cs-title {
    margin: 0 0 3rem;
    max-width: 13ch;
    color: var(--bodyTextColorWhite);
  }

  #why-choose-1822 .cs-picture {
    width: 100%;
    max-width: 36.625rem;
    height: auto;
    display: block;
  }

  #why-choose-1822 .cs-picture img {
    width: 100%;
    height: auto;
    display: block;
  }

  #why-choose-1822 .cs-card-group {
    width: 100%;
    max-width: 36.625rem;
    padding: var(--sectionPadding);
    /* 16px - 44px */
    padding-left: clamp(1rem, 4vw, 2.75rem);
    /* 16px - 64px */
    padding-right: clamp(1rem, 4vw, 4rem);
    box-sizing: border-box;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    /* 32px - 40px */
    gap: clamp(2rem, 0.5vw, 2.5rem);
  }

  #why-choose-1822 .cs-item {
    list-style: none;
    width: 100%;
    max-width: 36.625rem;
    /* prevents padding from affecting height and width */
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  #why-choose-1822 .cs-item-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  #why-choose-1822 .cs-icon {
    width: 2rem;
    height: auto;
    display: block;
  }

  #why-choose-1822 .cs-h3 {
    /* 20px - 25px */
    font-size: clamp(1.25rem, 2vw, 1.5625rem);
    line-height: 1.2em;
    font-weight: 700;
    margin: 0;
    color: var(--bodyTextColorWhite);
  }

  #why-choose-1822 .cs-item-text {
    font-size: 1rem;
    line-height: 1.5em;
    margin: 0;
    color: var(--bodyTextColorWhite);
    opacity: 0.8;
  }
}

/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #why-choose-1822 .cs-container {
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
  }

  #why-choose-1822 .cs-content {
    text-align: left;
    width: 100%;
    align-items: flex-start;
    background-color: transparent;
  }

  #why-choose-1822 .cs-content:before {
    /* background color, moves to the section parent at desktop */
    content: "";
    width: 100%;
    height: 100%;
    background: var(--primary);
    opacity: 1;
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    z-index: -1;
  }

  #why-choose-1822 .cs-picture {
    margin-left: auto;
    max-width: 100%;
  }

  #why-choose-1822 .cs-card-group {
    width: 65%;
    max-width: 100%;
    /* prevents flexbox from squishing it */
    flex: none;
  }

  #why-choose-1822 .cs-item {
    flex-direction: row;
  }
}

/* Desktop - 1400px */
@media only screen and (min-width: 87.5rem) {
  #why-choose-1822:before {
    /* background color */
    content: "";
    width: 100%;
    height: 100%;
    background: var(--primary);
    opacity: 1;
    display: block;
    position: absolute;
    left: auto;
    right: 50%;
    margin-right: 0.625rem;
    z-index: -1;
  }

  #why-choose-1822 .cs-content {
    width: 50%;
    padding-left: 0;
    padding-right: 0;
  }

  #why-choose-1822 .cs-content:before {
    left: auto;
    right: 50%;
    margin-right: 0.625rem;
  }

  #why-choose-1822 .cs-picture {
    width: auto;
    height: 80%;
    display: flex;
    align-items: flex-end;
    position: absolute;
    bottom: 2.5rem;
    right: 2.5rem;
    z-index: -1;
  }

  #why-choose-1822 .cs-picture img {
    width: auto;
    height: 100%;
    max-height: 47.5rem;
    object-fit: contain;
  }

  #why-choose-1822 .cs-card-group {
    width: 50%;
  }
}

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

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #footer-1240 {
    padding: var(--sectionPadding);
    box-sizing: border-box;
    background-color: #1a1a1a;
  }

  #footer-1240 .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    /* 40px - 64px */
    gap: clamp(2.5rem, 6vw, 4rem);
  }

  #footer-1240 .cs-top {
    width: 100%;
    /* makes the children behave like the parent doesnt exist. They now act as children of the next parent up, in this case the cs-container. That way we can use felxbox to arrange them with the rest of the footer elements */
    display: contents;
  }

  #footer-1240 .cs-logo-group {
    text-align: left;
    max-width: 27.125rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* 20px - 24px */
    gap: clamp(1.25rem, 3vw, 1.5rem);
  }

  #footer-1240 .cs-logo {
    width: 12.5rem;
    height: auto;
  }

  #footer-1240 .cs-logo img {
    width: 100%;
    height: auto;
  }

  #footer-1240 .cs-logo-text {
    /* 14px - 16px */
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    line-height: 1.5em;
    text-align: inherit;
    margin: 0;
    color: var(--bodyTextColorWhite);
    opacity: 0.8;
  }

  #footer-1240 .cs-social {
    border: 1px solid #484848;
    display: flex;
    justify-content: center;
    align-items: stretch;
  }

  #footer-1240 .cs-social-link {
    width: 3.75rem;
    height: 3.75rem;
    border-right: 1px solid #484848;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  #footer-1240 .cs-social-link:last-of-type {
    border: none;
  }

  #footer-1240 .cs-social-link:hover svg path {
    fill: var(--primary);
  }

  #footer-1240 .cs-social-link svg {
    width: 1rem;
    height: auto;
  }

  #footer-1240 .cs-social-link svg path {
    transition: fill 0.3s;
  }

  #footer-1240 .cs-contact-group,
  #footer-1240 .cs-gallery-group {
    text-align: left;
    width: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }

  #footer-1240 .cs-header {
    font-size: 1.25rem;
    line-height: 1.2em;
    font-weight: 700;
    text-align: inherit;
    color: var(--bodyTextColorWhite);
  }

  #footer-1240 .cs-contact-info {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* 8px - 12px */
    gap: clamp(0.5rem, 1.5vw, 0.75rem);
  }

  #footer-1240 .cs-contact-link {
    /* 14px - 16px */
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    line-height: 1.5em;
    text-align: inherit;
    text-decoration: none;
    margin: 0;
    color: var(--bodyTextColorWhite);
    opacity: 0.8;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s;
  }

  #footer-1240 .cs-contact-link:hover {
    color: rgb(255, 106, 106);
  }

  #footer-1240 .cs-icon {
    filter: grayscale(1) brightness(1000%);
    opacity: 0.7;
  }

  #footer-1240 .cs-gallery {
    width: 100%;
    max-width: 21.875rem;
    display: grid;
    align-items: center;
    gap: 0.5rem;
    grid-template-columns: repeat(auto-fit, minmax(4.75rem, 1fr));
    grid-template-rows: repeat(auto-fit, minmax(4.75rem, 1fr));
  }

  #footer-1240 .cs-picture {
    width: 100%;
    height: 100%;
    aspect-ratio: 1;
    display: block;
    grid-column: span 1;
    position: relative;
  }

  #footer-1240 .cs-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
  }

  #footer-1240 .cs-bottom {
    width: 100%;
  }

  #footer-1240 .cs-ul {
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    /* 24px - 40px */
    gap: clamp(1.5rem, 4vw, 2.5rem);
  }

  #footer-1240 .cs-li {
    list-style: none;
    /* 14px - 16px */
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    line-height: 1.5em;
    margin: 0;
    opacity: 0.8;
  }

  #footer-1240 .cs-li-link {
    text-decoration: none;
    color: var(--bodyTextColorWhite);
    transition: color 0.3s;
  }

  #footer-1240 .cs-li-link:hover {
    color: var(--primary);
  }

  #footer-1240 .cs-credit {
    /* 14px - 16px */
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    line-height: 1.5em;
    text-align: center;
    margin: 0;
    /* 16px - 40px */
    margin-top: clamp(1rem, 4vw, 2.5rem);
    /* 16px - 40px */
    padding-top: clamp(1rem, 4vw, 2.5rem);
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--bodyTextColorWhite);
    opacity: 0.8;
    display: block;
  }

  #footer-1240 .cs-credit-link {
    font-size: inherit;
    line-height: inherit;
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
  }

  #footer-1240 .cs-credit-link:hover {
    color: var(--primary);
  }
}

/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #footer-1240 .cs-logo-group {
    width: 33.5%;
  }

  #footer-1240 .cs-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 3rem;
  }

  #footer-1240 .cs-gallery-group {
    width: 27%;
  }

  #footer-1240 .cs-gallery {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 1fr;
  }
}

.cs-graphic {
  position: relative;
  top: 2rem;
  right: 6.5rem;
}

#cs-navigation {
  position: absolute;
}

.circle {
  position: absolute;
  top: 40%;
  left: 0%;
  width: 500px;
  /* Adjust the size as needed */
  height: 500px;
  /* Adjust the size as needed */
  background-color: rgb(255 0 0 / 15%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  filter: blur(50px);
  /* Adjust the blur effect as needed */
  z-index: 0;
}

.circle2 {
  position: absolute;
  top: 40%;
  left: 50%;
  width: 500px;
  /* Adjust the size as needed */
  height: 500px;
  /* Adjust the size as needed */
  background-color: rgb(255 0 0 / 15%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  filter: blur(50px);
  /* Adjust the blur effect as needed */
  z-index: 0;
}

/*-- -------------------------- -->
<---            CTA             -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #cta-80 {
    padding: var(--sectionPadding);
    position: relative;
    z-index: 1;
  }

  #cta-80:before {
    /* black background on mobile */
    content: "";
    width: 100%;
    height: 50%;
    background: #1a1a1a;
    opacity: 1;
    position: absolute;
    display: block;
    bottom: 0;
    left: 0;
    z-index: -1;
  }

  #cta-80 .cs-stripes {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    /* prevent stripes from overlapping sections above and below */
    overflow: hidden;
    /* Makes it so your cursor acts like it doesn't exist */
    pointer-events: none;
  }

  #cta-80 .cs-stripes:before {
    /* Stripe 1 */
    content: "";
    width: 8.25rem;
    height: 68.75rem;
    background: -moz-linear-gradient(
      top,
      #ffffff 0%,
      rgba(255, 255, 255, 0.45) 100%
    );
    /* FF3.6-15 */
    background: -webkit-linear-gradient(
      top,
      #ffffff 0%,
      rgba(255, 255, 255, 0.45) 100%
    );
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(
      to bottom,
      #ffffff 0%,
      rgba(255, 255, 255, 0.45) 100%
    );
    opacity: 0.08;
    transform: rotate(-25deg);
    position: absolute;
    display: block;
    bottom: -9.375rem;
    /* position in the middle, 50% from the left, no matter how wide 
                   the screen gets, it will be placed on the center line of the div */
    left: 50%;
    /* push X amount of pixels from this 50% midpoint */
    margin-left: -18.75rem;
  }

  #cta-80 .cs-stripes:after {
    /* Stripe 2 */
    content: "";
    width: 8.25rem;
    height: 75rem;
    background: -moz-linear-gradient(
      top,
      #ffffff 0%,
      rgba(255, 255, 255, 0.45) 100%
    );
    /* FF3.6-15 */
    background: -webkit-linear-gradient(
      top,
      #ffffff 0%,
      rgba(255, 255, 255, 0.45) 100%
    );
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(
      to bottom,
      #ffffff 0%,
      rgba(255, 255, 255, 0.45) 100%
    );
    opacity: 0.08;
    transform: rotate(-25deg);
    position: absolute;
    display: block;
    bottom: -6.25rem;
    /* position in the middle, 50% from the left, no matter how wide 
                   the screen gets, it will be placed on the center line of the div */
    left: 50%;
    /* push X amount of pixels from this 50% midpoint */
    margin-left: -10.625rem;
  }

  #cta-80 .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-80 .cs-content {
    /* set text align to left or center if content needs to be aligned */
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    /* aligns the content */
    align-items: center;
  }

  #cta-80 .cs-title {
    color: var(--bodyTextColorWhite);
  }

  #cta-80 .cs-text {
    color: var(--bodyTextColorWhite);
    margin-bottom: 2rem;
    opacity: 0.8;
  }

  #cta-80 .cs-button-solid {
    font-size: 1rem;
    /* 46px - 56px */
    line-height: clamp(2.875em, 5.5vw, 3.5em);
    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;
  }

  #cta-80 .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;
  }

  #cta-80 .cs-button-solid:hover:before {
    width: 100%;
  }

  #cta-80 .cs-picture {
    width: 100%;
    max-width: 28.5625rem;
    margin: auto;
    position: relative;
    display: block;
    /* moves it to the 1st position at the top */
    order: -1;
    aspect-ratio: 300/475;
  }

  #cta-80 .cs-picture img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    border-radius: 0.5rem 0.5rem 0 0;
    object-fit: cover;
  }
}

/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #cta-80 {
    text-align: left;
    /* 144px - 225px - creates the white space above */
    margin-top: clamp(9rem, 9.9vw, 14.0625rem);
    padding-bottom: 0;
    position: relative;
    z-index: 1;
    background-color: #1a1a1a;
  }

  #cta-80:before {
    display: none;
  }

  #cta-80 .cs-stripes:before {
    top: -9.375rem;
    bottom: auto;
    margin-left: -7.5rem;
  }

  #cta-80 .cs-stripes:after {
    top: -6.25rem;
    bottom: auto;
    margin-left: -15.9375rem;
  }

  #cta-80 .cs-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
  }

  #cta-80 .cs-content {
    text-align: left;
    width: 50%;
    max-width: 39.375rem;
    margin: 0;
    /* 60px - 100px - this gives us the space on the bottom without padding  */
    margin-bottom: clamp(3.75rem, 6.2vw, 6.25rem);
    align-items: flex-start;
  }

  #cta-80 .cs-picture {
    width: 41vw;
    max-width: 28.5625rem;
    /* height is a percentage of parent container height. When the cs-content height changes from extra text, the height of the image adjusts. Since the container is now longer/shorter, 150% of that height with also be longer/shorter */
    height: clamp(145%, 44vw, 160%);
    /* 500px - 578px */
    max-height: clamp(31.25rem, 44vw, 36.125rem);
    margin: 0;
    /* position absolute so we can have the cs-content centered inside the black section and have it respond to different heights of the cs-content */
    position: absolute;
    right: 0;
    bottom: 0;
    /* reset */
    aspect-ratio: none;
  }
}

/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #cta-80 {
    /* 144px - 200px */
    margin-top: clamp(5rem, 12.9vw, 5.5rem);
  }

  #cta-80 .cs-stripes:before {
    margin-left: -13.75rem;
    width: 12.1875rem;
  }

  #cta-80 .cs-stripes:after {
    margin-left: -26.875rem;
    width: 12.125rem;
  }
}

.footer-services .footer-service-li {
  color: var(--bodyTextColorWhite);
  opacity: 0.8;
  line-height: 1.5em;
  font-size: clamp(0.875rem, 1.5vw, 1rem);
}

.footer-service-li:hover {
  color: rgb(255, 106, 106);
}

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

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #hero-996 {
    /* 200px - 300px - leaving extra space for the navigation */
    padding: clamp(12.5rem, 25.95vw, 18.75rem) 1rem 0;
    padding-bottom: 6rem;
    position: relative;
    z-index: 1;
    /* prevents overflow from the lines extending past the screen width */
    overflow: hidden;
  }
  #hero-996 .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* 100px - 200px */
    gap: clamp(6.25rem, 25vw, 12.5rem);
  }
  #hero-996 .cs-content {
    width: 100%;
    /* max-width: 70rem; */
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
  }
  #hero-996 .cs-topper {
    /* 13px - 16px */
    font-size: clamp(0.8125rem, 1.6vw, 1rem);
    line-height: 1.2em;
    white-space: nowrap;
    text-transform: uppercase;
    text-align: left;
    letter-spacing: 0.1rem;
    font-weight: 700;
    width: 100%;
    color: var(--primary);
    margin-bottom: 1.75rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1.25rem;
    position: relative;
  }
  #hero-996 .cs-topper:after {
    /* white line */
    content: "";
    width: 50%;
    max-width: 7.5rem;
    height: 1px;
    background: currentColor;
    opacity: 1;
    position: relative;
    display: block;
  }
  #hero-996 .cs-title {
    /* 39px - 80px */
    font-size: clamp(2.4375rem, 6.4vw, 5rem);
    font-weight: 900;
    line-height: 1.2em;
    text-align: center;
    width: 100%;
    max-width: 20ch;
    margin: 0 0 2rem 0;
    color: black;
    position: relative;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  }
  #hero-996 .cs-color {
    color: var(--primary);
  }
  #hero-996 .cs-text {
    /* 16px - 20px */
    font-size: clamp(1rem, 1.95vw, 1.25rem);
    line-height: 1.5em;
    text-align: center;
    width: 100%;
    max-width: 50rem;
    margin: 0 0 2rem 0;
    color: black;
  }
  #hero-996 .cs-button-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    gap: 1.25rem;
  }
  #hero-996 .cs-button-solid {
    text-align: center;
    font-size: 1rem;
    /* 46px - 56px */
    line-height: clamp(2.875rem, 5.5vw, 3.5rem);
    width: 11.25rem;
    text-decoration: none;
    font-weight: 700;
    margin: 0;
    color: #fff;
    padding: 0;
    background-color: var(--primary);
    display: inline-block;
    position: relative;
    z-index: 1;
    transition: color 0.3s;
  }
  #hero-996 .cs-button-solid:before {
    content: "";
    box-shadow: 2px 2px 3px 0px black;
    position: absolute;
    display: block;
    height: 100%;
    width: 0%;
    background: #fff;
    opacity: 1;
    top: 0;
    left: 0;
    z-index: -1;
    transition: width 0.3s;
  }
  #hero-996 .cs-button-solid:hover {
    color: #1a1a1a;
  }
  #hero-996 .cs-button-solid:hover:before {
    width: 100%;
  }
  #hero-996 .cs-button-transparent {
    font-size: 1rem;
    /* 46px - 56px */
    line-height: clamp(2.875rem, 5.5vw, 3.5rem);
    width: 11.25rem;
    /* 46px - 56px */
    height: clamp(2.875rem, 5.5vw, 3.5rem);
    text-decoration: none;
    font-weight: 700;
    margin: 0;
    color: #fff;
    padding: 0;
    background-color: black;
    border: 1px solid var(--bodyTextColorWhite);
    box-sizing: border-box;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    transition: color / 3s;
  }
  #hero-996 .cs-button-transparent:before {
    content: "";
    position: absolute;
    display: block;
    box-shadow: 2px 2px 3px 0px black;
    background: white;
    opacity: 1;
    /* so it sits on top of the border */
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    z-index: -1;
    transform-origin: left;
    /* this is what creates the grow affect on hover */
    transform: scaleX(0);
    transition: transform 0.3s;
  }
  #hero-996 .cs-button-transparent:hover {
    color: #1a1a1a;
  }
  #hero-996 .cs-button-transparent:hover:before {
    transform: scaleX(1);
  }
  #hero-996 .cs-card-group {
    margin: 0;
    padding: var(--sectionPadding);
    padding-left: 0;
    padding-right: 0;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    /* 16px - 20px */
    gap: clamp(1rem, 2vw, 1.25rem);
    position: relative;
  }
  #hero-996 .cs-card-group:before {
    /* glass blur background */
    content: "";
    width: 100vw;
    height: 100%;
    border-top: 2px solid rgba(255, 255, 255, 0.5);
    background: rgb(26 26 26);
    -webkit-backdrop-filter: blur(30px);
    backdrop-filter: blur(30px);
    opacity: 1;
    position: absolute;
    display: block;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
  #hero-996 .cs-item {
    width: 100%;
    text-align: center;
    list-style: none;
    margin: 0;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.24);
    background-color: rgba(255, 255, 255, 0.06);
    /* prevents padding and border from affecting height and width */
    box-sizing: border-box;
    grid-column: span 12;
    grid-row: span 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    transition: border-color 0.3s;
  }
  #hero-996 .cs-item:before {
    /* backgorund color */
    content: "";
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0;
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    z-index: -1;
    transition: opacity 0.6s;
  }
  #hero-996 .cs-item:hover {
    border-color: var(--primary);
  }
  #hero-996 .cs-item:hover:before {
    opacity: 1;
  }
  #hero-996 .cs-item:hover .cs-h3 {
    color: var(--bodyTextColorWhite);
  }
  #hero-996 .cs-item:hover .cs-item-text {
    color: var(--bodyTextColorWhite);
    opacity: 0.9;
  }
  #hero-996 .cs-item:hover .cs-background {
    opacity: 1;
  }
  #hero-996 .cs-icon-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #hero-996 .cs-icon {
    /* 36px - 60px */
    width: clamp(2.25rem, 6vw, 4rem);
    height: auto;
    margin: 0 0 1rem 0;
  }
  #hero-996 .cs-h3 {
    /* 20px - 25px */
    font-size: clamp(1.25rem, 2.5vw, 1.5625rem);
    line-height: 1.2em;
    font-weight: bold;
    margin: 0 0 0.5rem 0;
    color: var(--bodyTextColorWhite);
  }
  #hero-996 .cs-item-text {
    /* 14px - 16px */
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    line-height: 1.5em;
    max-width: 18.75rem;
    margin: 0;
    padding: 0;
    color: var(--bodyTextColorWhite);
    opacity: 0.8;
  }
  #hero-996 .cs-background {
    /* Background Image */
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -2;
  }
  #hero-996 .cs-background:before {
    /* Black Color Overlay */
    content: "";
    width: 100%;
    /* height: 100%; */
    background: linear-gradient(
      41deg,
      rgba(255, 255, 255, 0.9) 30%,
      rgba(26, 26, 26, 0.3) 100%
    );
    opacity: 1;
    position: absolute;
    display: block;
    /* top: 0; */
    /* left: 0; */
    z-index: 1;
    /* prevents the cursor from interacting with it */
    pointer-events: none;
  }
  #hero-996 .cs-background img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    /* Makes image act like a background-image */
    object-fit: cover;
  }
}
/* Tablet - 600px */
@media only screen and (min-width: 37.5rem) {
  #hero-996 .cs-card-group .cs-item {
    grid-column: span 6;
  }
}
/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #hero-996 .cs-card-group .cs-item {
    grid-column: span 3;
  }
}
/* Large Desktop Parallax Effect - 1300px */
@media only screen and (min-width: 81.25rem) {
  #hero-996 {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* creates parallax effect on background image */
    background-attachment: fixed;
    /* remove img tag so we can make parallax work */
  }
  #hero-996 .cs-background img {
    /* display: none; */
  }
}

/*-- -------------------------- -->
<!--        Side by Side        -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #sbs-1901 {
    padding: var(--sectionPadding);
    /* 128px - 192px */
    padding-bottom: clamp(8rem, 14vw, 12rem);
    overflow-x: clip;
    position: relative;
  }
  #sbs-1901 .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-1901 .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;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
  }
  #sbs-1901 .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: 9.375rem;
    margin: 2rem 0 0;
    /* prevents padding from adding to the width */
    box-sizing: border-box;
    padding: 0 1.5rem;
    background-color: var(--primary);
    color: #fff;
    border-radius: 0.25rem;
    display: inline-block;
    position: relative;
    z-index: 1;
  }
  #sbs-1901 .cs-button-solid:before {
    content: "";
    width: 0%;
    height: 100%;
    background: #000;
    opacity: 1;
    border-radius: 0.25rem;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: width 0.3s;
  }
  #sbs-1901 .cs-button-solid:hover:before {
    width: 100%;
  }
  #sbs-1901 .cs-picture {
    width: 100%;
    height: 100vw;
    /* 360px - 720px */
    max-height: clamp(22.5rem, 70vw, 45rem);
    display: block;
    position: relative;
    z-index: 1;
  }
  #sbs-1901 .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-1901 .cs-container {
    max-width: 80rem;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
  }
  #sbs-1901 .cs-content {
    justify-content: stretch;
  }
  #sbs-1901 .cs-picture {
    /* 540px - 740px */
    min-height: clamp(33.75rem, 40vw, 46.25rem);
    height: 100%;
    max-height: 100%;
  }
  #sbs-1901 .cs-picture2 {
    order: 2;
    height: 100%;
    min-height: 33.75rem;
    max-height: 100%;
  }
  #sbs-1901 .cs-wrapper1 {
    padding-bottom: 4rem;
  }
  #sbs-1901 .cs-wrapper2 {
    padding-top: 6.25rem;
  }
}

/*-- -------------------------- -->
<---        Why Choose Us       -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #why-choose-1824 {
    padding: var(--sectionPadding);
    position: relative;
    overflow: hidden;
    z-index: 1;
  }
  #why-choose-1824 .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
    position: relative;
    z-index: 1;
  }
  #why-choose-1824 .cs-topper {
    width: auto;
  }
  #why-choose-1824 .cs-content {
    text-align: left;
    width: 100%;
    max-width: 40.25rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  #why-choose-1824 .cs-title {
    font-size: 2.8rem;
    margin: 0;
    max-width: 20ch;
  }
  #why-choose-1824 .cs-flex {
    display: flex;
    flex-direction: column;
    gap: 3rem;
  }
  #why-choose-1824 .cs-box {
    background-color: #1a1a1a;
    overflow: hidden;
    position: relative;
    z-index: 1;
  }
  #why-choose-1824 .cs-box-content {
    margin: 0;
    /* 32px - 40px top & bottm */
    /* 24px - 40px left & right */
    padding: clamp(2rem, 2.5vw, 2.5rem) clamp(1.5rem, 3vw, 2.5rem);
    /* prevents padding from affecting width and height */
    box-sizing: border-box;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: hidden 0.3s, opacity 0.3s, transform 0.7s;
  }
  #why-choose-1824 .cs-box-content.cs-hidden {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    transform: translateY(3rem);
  }
  #why-choose-1824 .cs-box-icon {
    text-align: left;
    width: 3.875rem;
    height: auto;
    margin: 0 0 2rem;
    display: block;
  }
  #why-choose-1824 .cs-h3 {
    /* 25px - 31px */
    font-size: clamp(1.5625rem, 2.5vw, 1.9375rem);
    line-height: 1.2em;
    text-align: inherit;
    font-weight: 700;
    margin: 0 0 1rem;
    color: var(--bodyTextColorWhite);
  }
  #why-choose-1824 .cs-box-text {
    font-size: 1rem;
    line-height: 1.5em;
    text-align: inherit;
    margin: 0;
    padding: 0;
    color: var(--bodyTextColorWhite);
    opacity: 0.8;
  }
  #why-choose-1824 .cs-button-group {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  #why-choose-1824 .cs-button {
    text-align: left;
    width: 100%;
    margin: 0;
    padding: 0 0 1.5rem;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #e8e8e8;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1rem;
  }
  #why-choose-1824 .cs-button.cs-active .cs-icon-wrapper,
  #why-choose-1824 .cs-button:hover .cs-icon-wrapper {
    background-color: var(--primary);
  }
  #why-choose-1824 .cs-button.cs-active .cs-icon,
  #why-choose-1824 .cs-button:hover .cs-icon {
    filter: grayscale(1) brightness(1000%);
  }
  #why-choose-1824 .cs-button.cs-active .cs-arrow,
  #why-choose-1824 .cs-button:hover .cs-arrow {
    filter: none;
    opacity: 1;
  }
  #why-choose-1824 .cs-button:hover {
    cursor: pointer;
  }
  #why-choose-1824 .cs-icon-wrapper {
    width: 3.75rem;
    height: 3.75rem;
    background-color: #f7f7f7;
    display: flex;
    justify-content: center;
    align-items: center;
    /* prevents flexbox from squishing them */
    flex: none;
    transition: background-color 0.3s;
  }
  #why-choose-1824 .cs-icon {
    width: 2rem;
    height: auto;
    display: block;
  }
  #why-choose-1824 .cs-button-text {
    font-size: 1.25rem;
    text-align: inherit;
    line-height: 1.2em;
    font-weight: 700;
    max-width: 19ch;
    margin: 0;
    padding: 0;
    color: var(--headerColor);
  }
  #why-choose-1824 .cs-arrow {
    width: 2rem;
    margin-left: auto;
    filter: grayscale(1) brightness(100%);
    opacity: 0.2;
    height: auto;
    display: block;
  }
  #why-choose-1824 .cs-image-group {
    width: 100%;
    height: 100vw;
    min-height: 25rem;
    /* chnages to 100% on desktop */
    max-height: 42.5rem;
    position: relative;
    z-index: 1;
  }
  #why-choose-1824 .cs-picture {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
  }
  #why-choose-1824 .cs-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
  }
  #why-choose-1824 .cs-floater {
    /* 72px - 120px */
    width: clamp(4.5rem, 10vw, 7.5rem);
    height: clamp(4.5rem, 10vw, 7.5rem);
    background-color: #1a1a1a;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 10;
  }
  #why-choose-1824 .cs-floater-icon {
    /* 32px - 60px */
    width: clamp(2rem, 4vw, 3.75rem);
    height: auto;
    display: block;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #why-choose-1824 .cs-container {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: stretch;
  }
  #why-choose-1824 .cs-flex {
    flex-direction: row;
    align-items: stretch;
  }
  #why-choose-1824 .cs-box {
    width: 50%;
    height: 100%;
    display: flex;
    order: 2;
  }
  #why-choose-1824 .cs-box-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  #why-choose-1824 .cs-button-group {
    width: 50%;
  }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #why-choose-1824 .cs-content {
    width: 53%;
    padding: 3rem 0 0 0;
    box-sizing: border-box;
  }
  #why-choose-1824 .cs-flex {
    width: 74%;
    max-width: 53rem;
    padding: 0 0 3rem;
    box-sizing: border-box;
  }
  #why-choose-1824 .cs-image-group {
    width: 40vw;
    max-width: 32.625rem;
    height: 100%;
    max-height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
  }
}

.cs-color {
  color: var(--primary);
}

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

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  @keyframes floatAnimation {
    0% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-2rem);
    }
    100% {
      transform: translateY(0);
    }
  }
  @keyframes floatAnimation2 {
    0% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-3rem);
    }
    100% {
      transform: translateY(0);
    }
  }
  #sbs-1357 {
    padding: var(--sectionPadding);
    position: relative;
    overflow: hidden;
    z-index: 1;
  }

  #sbs-1357 .image {
    position: absolute;
    height: 250px;
    opacity: 100%;
    right: 50px;
    display: none;
  }
  #sbs-1357 .image2 {
    position: absolute;
    height: 100px;
    width: 200px;
    opacity: 100%;
    /* right: 50px; */
    left: 0;
    bottom: 0px;
    display: none;
  }
  #sbs-1357 .cs-container {
    width: 100%;
    /* changes to 1280px at tablet */
    max-width: 39.375rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
    /* 16px - 20px */
    column-gap: clamp(1rem, 2.3vw, 1.25rem);
  }
  #sbs-1357 .cs-content {
    /* set text align to left if content needs to be left aligned */
    text-align: center;
    width: 100%;
    max-width: 39.375rem;
    display: flex;
    flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    align-items: center;
  }

  #sbs-1357 .cs-topper {
    color: #767676;
  }
  #sbs-1357 .cs-title {
    font-size: 2.8rem;
    max-width: 25ch;
  }
  #sbs-1357 .cs-text {
    margin-bottom: 1rem;
  }
  #sbs-1357 .cs-text:last-of-type {
    margin-bottom: 2rem;
  }
  #sbs-1357 .cs-h3 {
    /* 16px - 30px */
    font-size: clamp(1rem, 2.4vw, 1.25rem);
    line-height: 1.2em;
    font-weight: 700;
    max-width: 37ch;
    /* 16px - 24px */
    margin: 0 0 clamp(1rem, 1.6vw, 1.5rem);
    color: var(--primary);
  }
  #sbs-1357 .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;
  }
  #sbs-1357 .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;
  }
  #sbs-1357 .cs-button-solid:hover {
    color: var(--primary);
  }
  #sbs-1357 .cs-button-solid:hover:before {
    width: 100%;
  }
  #sbs-1357 .cs-bubbles {
    width: 33.375rem;
    height: 34rem;
    position: absolute;
    /* changes to 160px at larger desktop */
    left: -16.25rem;
    /* removed at larger desktop */
    bottom: -15rem;
    z-index: -1;
  }
  #sbs-1357 .cs-bubbles:before {
    /* white border bubble */
    content: "";
    width: 26.25rem;
    height: 26.25rem;
    background: transparent;
    border: 1px solid #1a1a1a;
    border-radius: 50%;
    opacity: 1;
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    animation-name: floatAnimation;
    animation-duration: 5s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
  }
  #sbs-1357 .cs-bubbles:after {
    /* orange bubble */
    content: "";
    width: 20.6875rem;
    height: 20.6875rem;
    background: var(--primary);
    opacity: 0.15;
    border-radius: 50%;
    display: block;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
    animation-name: floatAnimation2;
    animation-duration: 14s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
  }
  #sbs-1357 .cs-picture {
    width: 100%;
    height: 20.5rem;
    border-radius: 3rem;
    /* clips the corners of the img tag */
    overflow: hidden;
    display: block;
    position: relative;
  }
  #sbs-1357 .cs-picture 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) {
  #sbs-1357 .cs-container {
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
  }
  #sbs-1357 .cs-content {
    width: 85%;
    order: -1;
  }
  #sbs-1357 .cs-picture {
    width: 50%;
    max-width: 19.0625rem;
  }
  #sbs-1357 .image {
    position: absolute;
    height: 250px;
    opacity: 100%;
    right: 50px;
    display: none;
  }
  #sbs-1357 .image2 {
    position: absolute;
    height: 100px;
    width: 200px;
    opacity: 70%;
    /* right: 50px; */
    left: 0;
    bottom: 0px;
    display: none;
  }
}
/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #sbs-1357 .image {
    position: absolute;
    height: 100px;
    width: 200px;
    opacity: 100%;
    right: 50px;
    top: 50px;
    display: block;
  }
  #sbs-1357 .image2 {
    position: absolute;
    height: 100px;
    width: 200px;
    opacity: 100%;
    /* right: 50px; */
    left: 0;
    bottom: 0px;
    display: block;
  }
  #sbs-1357 .cs-container {
    max-width: 80rem;
    flex-wrap: nowrap;
  }
  #sbs-1357 .cs-content {
    /* 80px - 140px */
    padding: clamp(5rem, 0vw, 8.75rem) 5;
    order: initial;
  }
  #sbs-1357 .cs-bubbles {
    /* reset at large deskop */
    left: -12.0625rem;
    bottom: -8.125rem;
  }
  #sbs-1357 .cs-picture {
    width: 37%;
    /* 230px - 340px */
    height: clamp(14.375rem, 24vw, 21.25rem);
  }
  #sbs-1357 .cs-picture1 {
    align-self: flex-start;
  }
  #sbs-1357 .cs-picture2 {
    align-self: flex-end;
  }
}
/* Large Desktop 1600px */
@media only screen and (min-width: 100rem) {
  #sbs-1357 .cs-bubbles {
    margin-right: 31.25rem;
    left: auto;
    right: 50%;
    bottom: -0.125rem;
  }
}

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

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #services-366 {
    padding: var(--sectionPadding);
  }
  @keyframes floatAnimation2 {
    0% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-4px);
    }
    70% {
      transform: translateY(4px);
    }
    100% {
      transform: translateY(0);
    }
  }
  @keyframes InAndOut {
    0% {
      transform: translateY(3.75rem) scale(1);
      opacity: 1;
    }
    30% {
      transform: translateY(1.875rem) scale(0.8);
      opacity: 1;
    }
    60% {
      transform: translateY(0.625rem) scale(0.5);
      opacity: 0.2;
    }
    100% {
      transform: translateY(0rem) scale(0.2);
      opacity: 0;
    }
  }
  @keyframes InAndOut2 {
    0% {
      transform: translateY(4.375rem) scale(1);
      opacity: 1;
    }
    30% {
      transform: translateY(2.5rem) scale(0.8);
      opacity: 1;
    }
    60% {
      transform: translateY(1.25rem) scale(0.6);
      opacity: 1;
    }
    100% {
      transform: translateY(0rem) scale(0.4);
      opacity: 0;
    }
  }
  #services-366 .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
  }
  #services-366 .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;
  }

  #services-366 .cs-card-group {
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: column;
    /* 16px - 20px */
    column-gap: clamp(1rem, 2vw, 1.25rem);
    gap: 1rem;
  }
  #services-366 .cs-item {
    list-style: none;
    width: 100%;
    max-width: 31.25rem;
    /* 20px - 40px top & bottom */
    /* 16px - 32px left & right */
    padding: clamp(1.25rem, 3.5vw, 2.5rem) clamp(1rem, 2.5vw, 2rem);
    border-radius: 1rem;
    border: 1px solid #e8e8e8;
    box-sizing: border-box;
    transition: background-color 0.3s;
  }
  #services-366 .cs-item:hover {
    background-color: var(--primary);
  }
  #services-366 .cs-icon:hover {
    filter: brightness(0) saturate(100%) invert(100%);
  }
  #services-366 .cs-item:hover .cs-icon-wrapper:before,
  #services-366 .cs-item:hover .cs-bubble:before,
  #services-366 .cs-item:hover .cs-icon-wrapper:after,
  #services-366 .cs-item:hover .cs-bubble:after {
    background-color: #ffdfdf79;
  }
  #services-366 .cs-item:hover .cs-icon {
    /* makes it white on hover */
    filter: brightness(0) saturate(100%) invert(100%);
  }
  #services-366 .cs-item:hover .cs-h3 {
    color: #fff;
  }
  #services-366 .cs-item:hover .cs-item-text {
    color: #fff;
  }
  #services-366 .cs-link {
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  #services-366 .cs-icon-wrapper {
    width: 6.125rem;
    height: 7.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    position: relative;
  }
  #services-366 .cs-icon-wrapper:before {
    /* Small Bubble */
    content: "";
    width: 1.6875rem;
    height: 1.6875rem;
    border-radius: 50%;
    background: #ffe5e5;
    opacity: 1;
    position: absolute;
    display: block;
    top: 0;
    left: 0.1875rem;
    animation-name: InAndOut;
    animation-duration: 1.6s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    transition: background-color 0.3s;
  }
  #services-366 .cs-icon-wrapper:after {
    /* Small Bubble */
    content: "";
    width: 1.6875rem;
    height: 1.6875rem;
    border-radius: 50%;
    background: #ffe5e5;
    opacity: 1;
    position: absolute;
    display: block;
    top: 0.6875rem;
    right: 0.3125rem;
    animation-name: InAndOut2;
    animation-duration: 2s;
    animation-delay: 0.3s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    transition: background-color 0.3s;
  }
  #services-366 .cs-bubble {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
  }
  #services-366 .cs-bubble:before {
    /* Big Bubble */
    content: "";
    width: 2.9375rem;
    height: 2.9375rem;
    border-radius: 50%;
    background: #ffe5e5;
    opacity: 0.4;
    position: absolute;
    display: block;
    bottom: 0.25rem;
    left: 1rem;
    animation-name: floatAnimation2;
    animation-duration: 12s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
    transition: background-color 0.3s;
  }
  #services-366 .cs-bubble:after {
    /* Big Bubble */
    content: "";
    width: 2.2375rem;
    height: 2.2375rem;
    border-radius: 50%;
    background: #f8d8d8;
    opacity: 1;
    position: absolute;
    display: block;
    bottom: -0.25rem;
    right: 1rem;
    animation-name: floatAnimation2;
    animation-duration: 10s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
    transition: background-color 0.3s;
  }
  #services-366 .cs-icon {
    width: 4.5rem;
    height: auto;
    position: relative;
    z-index: 10;
    /* filter: brightness(0) saturate(100%) invert(14%) sepia(100%) saturate(4500%)
      hue-rotate(345deg) brightness(90%) contrast(100%); */
    filter: brightness(0) saturate(100%);
  }
  #services-366 .cs-h3 {
    font-size: 1.25rem;
    font-weight: 900;
    text-align: center;
    line-height: 1.2em;
    margin: 0;
    margin-bottom: 0.75rem;
    color: var(--headerColor);
    transition: color 0.3s;
  }
  #services-366 .cs-item-text {
    /* 14px - 16px */
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    text-align: center;
    line-height: 1.5em;
    margin: 0;
    color: var(--bodyTextColor);
    transition: color 0.3s;
  }
  #services-366 .cs-button-solid {
    font-size: 1rem;
    /* 46px - 56px */
    line-height: clamp(2.875rem, 5.5vw, 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;
  }
  #services-366 .cs-button-solid:before {
    content: "";
    position: absolute;
    display: block;
    height: 100%;
    width: 0%;
    background: black;
    opacity: 1;
    top: 0;
    left: 0;
    z-index: -1;
    transition: width 0.3s;
  }
  #services-366 .cs-button-solid:hover:before {
    width: 100%;
  }

  #services-366 .cs-title {
    font-size: 2.8rem;
  }

  #services-366 .cs-text {
    max-width: 50rem;
  }

  #services-366 .cs-graphic {
    display: none;
    position: absolute;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #services-366 .cs-card-group {
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: nowrap;
  }
  #services-366 .cs-icon:hover {
    filter: brightness(0) saturate(100%) invert(100%);
  }

  #services-366 .cs-graphic {
    display: block;
  }
  #services-366 .cs-graphic-left {
    width: 33rem;
    height: auto;
    bottom: -6.6875rem;
    left: -24.5625rem;
  }
  #services-366 .cs-graphic-right {
    width: 30.1875rem;
    height: auto;
    top: -2.125rem;
    right: -19.75rem;
  }
}

/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #services-366 .cs-graphic-left {
    right: -20.1875rem;
    bottom: -3.25rem;
  }
  #services-366 .cs-graphic-right {
    right: -18.125rem;
  }
}
/* Large Desktop - 1920px */
@media only screen and (min-width: 120rem) {
  #services-366 .cs-graphic-left {
    margin-right: 47.5rem;
    right: 50%;
    bottom: 0;
    left: initial;
  }
  #services-366 .cs-graphic-right {
    margin-left: 48.4375rem;
    right: initial;
    left: 50%;
  }
}

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

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #sbs-1982 {
    padding: var(--sectionPadding);
    overflow: hidden;
    position: relative;
    z-index: 1;
  }
  #sbs-1982:before {
    content: "";
    width: 100%;
    height: 100%;
    background-color: var(--primary);
    opacity: 0.05;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
  #sbs-1982 .cs-container {
    width: 100%;
    /* changes to 1280px at desktop */
    max-width: 36.5rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
  }
  #sbs-1982 .cs-content {
    /* set text align to left if content needs to be left aligned */
    text-align: left;
    width: 100%;
    max-width: 35.625rem;
    display: flex;
    flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    align-items: flex-start;
  }
  #sbs-1982 .cs-text-large {
    font-size: 1.25rem;
    line-height: 1.5em;
    margin: 0 0 0.75rem 0;
    color: var(--headerColor);
  }
  #sbs-1982 .cs-text {
    margin-bottom: 2rem;
  }
  #sbs-1982 .cs-button-solid {
    font-size: 1rem;
    /* 46px - 56px */
    line-height: clamp(2.875rem, 5.5vw, 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;
  }
  #sbs-1982 .cs-button-solid:before {
    content: "";
    position: absolute;
    display: block;
    height: 100%;
    width: 0%;
    background: black;
    opacity: 1;
    top: 0;
    left: 0;
    z-index: -1;
    transition: width 0.3s;
  }
  #sbs-1982 .cs-button-solid:hover {
    color: #fff;
  }
  #sbs-1982 .cs-button-solid:hover:before {
    width: 100%;
  }
  #sbs-1982 .cs-ratings {
    width: 100%;
    margin: 0;
    margin-top: 4rem;
    padding: 2rem;
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 1.5rem;
    position: relative;
    align-self: stretch;
  }
  #sbs-1982 .cs-ratings:before {
    content: "";
    width: 100%;
    height: 100%;
    background-color: var(--primary);
    opacity: 0.1;
    border-radius: 1rem;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
  #sbs-1982 .cs-stars {
    display: flex;
    flex-direction: row;
    filter: brightness(0) saturate(100%) invert(14%) sepia(100%) saturate(4499%)
      hue-rotate(345deg) brightness(100%) contrast(100%);
  }
  #sbs-1982 .cs-rating {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
  }
  #sbs-1982 .cs-h3 {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.2em;
    margin: 0;
    color: var(--headerColor);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.5rem;
  }
  #sbs-1982 .cs-rating-text {
    font-size: 1rem;
    line-height: 1.5em;
    text-align: inherit;
    width: 100%;
    margin: 0;
    color: var(--bodyTextColor);
  }
  #sbs-1982 .cs-icon {
    width: 5.125rem;
    height: 5.9375rem;
    position: absolute;
    top: -1.875rem;
    right: 1.25rem;
    filter: brightness(0) saturate(100%) invert(14%) sepia(100%) saturate(4499%)
      hue-rotate(345deg) brightness(100%) contrast(100%);
  }
  #sbs-1982 .cs-image-group {
    width: 100%;
    max-width: 39.375rem;
    /* Changes to auto at desktop */
    height: 30rem;
    /* clips the corners of the children around the border radius */
    overflow: hidden;
    border-radius: 1rem;
    order: -1;
    position: relative;
  }
  #sbs-1982 .cs-background {
    width: 100%;
    height: 100%;
    /* makes it cover the parent dimensions */
    object-fit: cover;
    display: block;
  }
  #sbs-1982 .cs-background img {
    width: 100%;
    height: 100%;
    /* makes it cover the parent like a backgorund image */
    object-fit: cover;
    display: block;
  }
  #sbs-1982 .cs-box {
    text-align: left;
    width: 100%;
    max-width: 19rem;
    /* prevents padding from affecting height and width */
    box-sizing: border-box;
    padding: 2rem;
    background-color: #1a1a1a;
    /* 48px - 80px */
    border-radius: 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    /* 12px - 24px */
    right: clamp(0.75rem, 2.5vw, 1.5rem);
    /* 12px - 24px */
    bottom: clamp(0.75rem, 2.5vw, 1.5rem);
  }
  #sbs-1982 .cs-box-icon {
    width: 3.75rem;
    height: auto;
    display: block;
    filter: brightness(0) saturate(100%) invert(14%) sepia(100%) saturate(4500%)
      hue-rotate(345deg) brightness(90%) contrast(100%);
  }
  #sbs-1982 .cs-desc {
    /* 25px - 31px */
    font-size: clamp(1.5625rem, 3.125vw, 1.9375rem);
    font-weight: 700;
    line-height: 1.2em;
    text-align: inherit;
    width: 100%;
    margin: 1rem 0 0 0;
    color: #fff;
  }
  #sbs-1982 .cs-box-text {
    font-size: 0.875rem;
    line-height: 1.5em;
    text-align: inherit;
    width: 100%;
    margin: 0.75rem 0 0 0;
    color: #f7f7f7;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #sbs-1982 .cs-container {
    max-width: 80rem;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
  }
  #sbs-1982 .cs-content {
    align-self: center;
  }
  #sbs-1982 .cs-image-group {
    height: auto;
    min-height: 42.5rem;
  }
}

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

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #hero-1617 {
    /* 200px - 300px - top leaving extra space for the navigation */
    /* 160px - 240px bottom */
    padding: clamp(12.5rem, 25.95vw, 18.75em) 1rem clamp(10rem, 15vw, 15rem);
    /* prevents the topper line from causing an overflow */
    overflow: hidden;
    position: relative;
    z-index: 1;
  }
  #hero-1617 .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 3rem;
  }
  #hero-1617 .cs-content {
    --cornerWidth: 8.75rem;
    --cornerHeight: 8.75rem;
    width: 100%;
    max-width: 53.125rem;
    /* 48px - 80px top & bottom */
    /* 16px - 48px left & right */
    padding: clamp(3rem, 6vw, 5rem) clamp(1rem, 5vw, 3rem);
    /* prevents padding from affecting height and width */
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
  }
  #hero-1617 .cs-content:before {
    /* top left corner */
    content: "";
    width: 35vw;
    max-width: var(--cornerWidth);
    height: 35vw;
    max-height: var(--cornerHeight);
    border: 2px solid #fff;
    border-right: none;
    border-bottom: none;
    opacity: 1;
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    z-index: -1;
  }
  #hero-1617 .cs-content:after {
    /* top right corner */
    content: "";
    width: 35vw;
    max-width: var(--cornerWidth);
    height: 35vw;
    max-height: var(--cornerHeight);
    border: 2px solid #fff;
    border-left: none;
    border-bottom: none;
    opacity: 1;
    position: absolute;
    display: block;
    top: 0;
    right: 0;
    z-index: -1;
  }
  #hero-1617 .cs-corners {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
  #hero-1617 .cs-corners:before {
    /* bottom left corner */
    content: "";
    width: 35vw;
    max-width: var(--cornerWidth);
    height: 35vw;
    max-height: var(--cornerHeight);
    border: 2px solid #fff;
    border-right: none;
    border-top: none;
    opacity: 1;
    position: absolute;
    display: block;
    bottom: 0;
    left: 0;
    z-index: -1;
  }
  #hero-1617 .cs-corners:after {
    /* bottom right corner */
    content: "";
    width: 35vw;
    max-width: var(--cornerWidth);
    height: 35vw;
    max-height: var(--cornerHeight);
    border: 2px solid #fff;
    border-left: none;
    border-top: none;
    opacity: 1;
    position: absolute;
    display: block;
    bottom: 0;
    right: 0;
    z-index: -1;
  }
  #hero-1617 .cs-topper {
    /* 13px - 16px */
    font-size: clamp(0.8125rem, 1.5vw, 1rem);
    line-height: 1.2em;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
    color: var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    position: relative;
  }
  #hero-1617 .cs-chevron {
    --chevronColor: var(--primary);
    width: 3rem;
    height: auto;
  }
  #hero-1617 .cs-title {
    /* 39px - 61px */
    font-size: clamp(2.4375rem, 6.4vw, 3.8125rem);
    font-weight: 700;
    line-height: 1.2em;
    text-align: center;
    max-width: 51.8125rem;
    /* 16px - 24px */
    margin: 0 0 2.5rem 0;
    color: black;
    position: relative;
  }
  #hero-1617 .cs-text {
    /* 16px - 20px */
    font-size: clamp(1rem, 1.95vw, 1.25rem);
    line-height: 1.5em;
    text-align: center;
    width: 100%;
    /* 464px - 622px */
    max-width: clamp(29rem, 60vw, 38.785rem);
    margin: 0 auto 0;
    margin-bottom: 2rem;
    color: #fff;
  }
  #hero-1617 .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: white;
    min-width: 12.5rem;
    padding: 0 1.5rem;
    background-color: var(--primary);
    display: inline-block;
    position: relative;
    z-index: 1;
    /* prevents padding from adding to the width */
    box-sizing: border-box;
  }
  #hero-1617 .cs-button-solid:before {
    content: "";
    position: absolute;
    height: 100%;
    width: 0%;
    background: #000000;
    opacity: 1;
    top: 0;
    left: 0;
    z-index: -1;
    transition: width 0.3s;
  }
  #hero-1617 .cs-button-solid:hover:before {
    width: 100%;
  }
  #hero-1617 .cs-background {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -2;
  }

  #hero-1617 .cs-background img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
}
/* Large Desktop - Parallax Effect - 1600px */
@media only screen and (min-width: 100rem) {
  #hero-1617 {
    background: url("/assets/images/header/vecteezy_gray-and-white-diagonal-line-architecture-geometry-tech_15278690.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
  }
  #hero-1617 .cs-background img {
    display: none;
  }
}

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

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #hero-1951 {
    padding-top: 10rem !important;
    padding: var(--sectionPadding);
    position: relative;
    z-index: 1;
  }
  #hero-1951 .cs-container {
    width: 100%;
    /* changes to 1280px on desktop */
    max-width: 44rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
  }
  #hero-1951 .cs-content {
    /* set text align to left if content needs to be left aligned */
    text-align: center;
    width: 100%;
    max-width: 50rem;
    display: flex;
    flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    align-items: center;
  }
  #hero-1951 .cs-title {
    font-weight: 800;
    /* 31px - 61px */
    font-size: clamp(2.0375rem, 4vw, 3.4125rem);
  }
  #hero-1951 .cs-text {
    margin-bottom: 1.25rem;
  }
  #hero-1951 .cs-button-solid {
    font-size: 1rem;
    /* 46px - 56px */
    line-height: clamp(2.875rem, 5.5vw, 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;
  }
  #hero-1951 .cs-button-solid:before {
    content: "";
    position: absolute;
    display: block;
    height: 100%;
    width: 0%;
    background: black;
    opacity: 1;
    top: 0;
    left: 0;
    z-index: -1;
    transition: width 0.3s;
  }
  #hero-1951 .cs-button-solid:hover:before {
    width: 100%;
  }
  #hero-1951 .cs-reviews {
    text-align: center;
    margin-top: clamp(2.5rem, 5vw, 5rem);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  #hero-1951 .cs-reviews-flex {
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
  #hero-1951 .cs-reviews-img {
    width: 3rem;
    height: auto;
    margin: 0 -1rem 0 0;
    border: 1px solid #fff;
    border-radius: 50%;
  }
  #hero-1951 .cs-reviews-number {
    font-size: 1rem;
    font-weight: 700;
    width: 3rem;
    height: 3rem;
    background-color: var(--primary);
    color: var(--bodyTextColorWhite);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #hero-1951 .cs-flex {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
  }
  #hero-1951 .cs-rating {
    font-size: clamp(1.25rem, 2.5vw, 1.5625rem);
    font-weight: 700;
    line-height: 1.2em;
    margin: 0;
    color: var(--headerColor);
  }
  #hero-1951 .cs-rating-icon {
    width: 1rem;
    height: auto;
    margin: 0 0.25rem;
  }
  #hero-1951 .cs-reviews-text {
    font-size: clamp(0.875rem, 1.75vw, 1rem);
    line-height: 1.5em;
    margin: 0;
    color: var(--bodyTextColor);
  }
  #hero-1951 .cs-image-group {
    font-size: min(2.3vw, 1rem);
    width: 39.375em;
    height: 43.125em;
    position: relative;
    z-index: 1;
  }
  #hero-1951 .cs-picture {
    width: 50rem;
    height: 37.5em;
    margin: 0;
    overflow: hidden;
    border-radius: 37.5em;
    display: block;
    /* position: absolute; */
    top: 0.75em;
    left: 0;
    z-index: 1;
  }
  #hero-1951 .cs-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
  }
  #hero-1951 .cs-icon {
    width: 12.6875em;
    height: auto;
    position: absolute;
    top: 0;
    left: 13.125em;
  }
  #hero-1951 .cs-right {
    bottom: 0;
    top: auto;
    left: auto;
    right: 0;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #hero-1951 .cs-reviews {
    text-align: left;
    flex-direction: row;
  }
}
/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #hero-1951 .cs-container {
    max-width: 80rem;
    flex-direction: row;
    align-items: stretch;
  }
  #hero-1951 .cs-content {
    text-align: left;
    /* 48px - 80px */
    padding: clamp(3rem, 6vw, 5rem) 0;
    align-items: flex-start;
    align-self: center;
  }
  #hero-1951 .cs-image-group {
    font-size: min(1.12vw, 1rem);
    height: auto;
    min-height: 43.125em;
    flex: none;
  }
  #hero-1951 .cs-left {
    height: auto;
    top: 0.75em;
    bottom: 4.875em;
  }
  #hero-1951 .cs-right {
    height: auto;
    top: 5.625em;
    bottom: 0em;
  }
}

.cs-box-icon-red {
  text-align: left;
  width: 3.875rem;
  height: auto;
  margin: 0 0 2rem;
  display: block;
  filter: invert(26%) sepia(84%) saturate(3672%) hue-rotate(348deg)
    brightness(92%) contrast(117%);
}

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

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #footer-1390 {
    padding: var(--sectionPadding);
    background-color: #1a1a1a;
    position: relative;
    z-index: 1;
  }
  #footer-1390 .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  #footer-1390 .cs-top {
    width: 100%;
    margin-bottom: 2.5rem;
    /* 24px - 64px */
    padding-bottom: clamp(1.5rem, 5vw, 4rem);
    border-bottom: 1px solid #484848;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* 24px - 40px */
    gap: clamp(1.25rem, 4vw, 2.5rem);
  }
  #footer-1390 .cs-ul {
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    row-gap: 0.5rem;
    /* 24px - 36px */
    column-gap: clamp(1.5rem, 4vw, 2.25rem);
  }
  #footer-1390 .cs-li {
    list-style: none;
  }
  #footer-1390 .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-1390 .cs-link:hover {
    color: rgb(255, 62, 62);
  }
  #footer-1390 .cs-logo {
    width: 100%;
    max-width: 13.0625rem;
    height: auto;
    display: block;
  }
  #footer-1390 .cs-logo-img {
    width: 100%;
    height: auto;
    display: block;
  }
  #footer-1390 .cs-bottom {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  #footer-1390 .cs-social {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
  }
  #footer-1390 .cs-social-li {
    list-style: none;
  }
  #footer-1390 .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-1390 .cs-social-link:hover {
    background-color: var(--primary);
  }
  #footer-1390 .cs-social-link:hover .cs-social-icon {
    filter: grayscale(1) brightness(1000%);
    opacity: 1;
  }
  #footer-1390 .cs-social-icon {
    width: 0.75rem;
    height: auto;
    display: block;
    opacity: 0.6;
    transition: opacity 0.3s;
  }
  #footer-1390 .cs-copyright {
    font-size: 1rem;
    color: #bababa;
    line-height: 1.5em;
    margin: 0;
    display: block;
  }
  #footer-1390 .cs-copyright-link,
  #footer-1390 .cs-separater {
    font-size: 1rem;
    text-decoration: none;
    color: #bababa;
    transition: color 0.3s;
  }
  #footer-1390 .cs-copyright-link:hover,
  #footer-1390 .cs-separater:hover {
    color: var(--primary);
  }
  #footer-1390 .cs-separater {
    margin: 0 1rem;
    display: inline-block;
  }

  .img-style {
    position: relative;
    top: 0;
    left: 0px;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #footer-1390 .cs-top {
    align-items: flex-start;
  }
  #footer-1390 .cs-bottom {
    flex-direction: row;
    justify-content: start;
  }
  #footer-1390 .cs-flex {
    margin: 0 auto;
  }
  #footer-1390 .cs-social {
    /* sends it to the right in the 3rd position */
    order: 3;
  }

  .img-style {
    position: relative;
    top: 0;
    left: -40px;
  }
}
