/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

:root {
  isolation: isolate;
  /* 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: #ff6a3e;
  --primaryLight: #ffba43;
  --secondary: #ffba43;
  --secondaryLight: #ffba43;
  --headerColor: #092868;

  /* 1a1a1a */
  --bodyTextColor: #4e4b66;
  --bodyTextColorWhite: #fafbfc;

  /* 13px - 16px */
  --topperFontSize: clamp(0.8125rem, 1.6vw, 1rem);

  /* 31px - 49px */
  --headerFontSize: clamp(0.75rem, 0.73vi + 0.6rem, 1.19rem);
  --bodyFontSize: clamp(0.8rem, 0.125rem + 0.7778vw, 1.25rem);

  /* 60px - 100px top and bottom */
  --sectionPadding: clamp(2.75rem, 5.82vw, 4.25rem) 1rem;
}

@view-transition: {
  Navigation: auto;
};
/* Josh Comeau's Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
  font-family: hawd, noto-sans, sans-serif;
  /* font-size: clamp(0.75rem, 0.5714rem + 0.7619vw, 1rem); */
}

a {
  text-decoration: none;
}

a:hover {
  color: var(--primary);
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  max-inline-size: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

/* p, */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: var(--headerFontSize);
  min-width: fit-content;
  overflow-wrap: break-word;
  color: var(--headerColor);
}

.ml-1 {
  margin-left: 1rem;
}

.pb-2 {
  padding-bottom: 2rem;
}

.pt-2 {
  padding-top: 2rem;
}

.pt-0 {
  padding-top: 0;
}

#intro {
  padding: var(--sectionPadding);
  background-color: #f7f7f7;
}

#intro .cs-container {
  width: 100%;
  /* changes to 1280px at desktop */
  max-width: 80rem;
  margin: auto;
  display: -webkit-box;
  /*  */
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;

  /* 48px - 64px */
  gap: 3rem;
}

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

.cs-h2,
.cs-h3,
.cs-h4 {
  font-size: 1.5rem;
  line-height: 1.75rem;
  padding-top: 2.5rem;
  /* padding-bottom:0.5rem */
}

.cs-button-solid {
  border-radius: 0.25rem;
}

.cs-ul-wrapper,
.cs-ol-wrapper {
  padding-left: 1.5rem;
}

.cs-ol {
  margin-left: 1.5rem;
}

.cs-ol-li {
  font-size: var(--bodyFontSize);
  list-style-type: numeral;
  padding-bottom: 0.75rem;
  line-height: 1.25rem;
  display: list-item;
}

.pt-5 {
  padding-top: 5rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: circle(0 at 0 0);
  white-space: nowrap;
  border: 0;
}

@font-face {
  font-family: hawd;
  src: url("../fonts/hawd.woff2") format("woff2");
  font-style: normal;
  font-weight: 300 800;
}

.list-unstyled {
  list-style: none;
  margin-left: 0;
  padding-left: 0;
}

.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;
}

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

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

.fw-700 {
  font-weight: 700;
}

.fw-800 {
  font-weight: 800;
}

.fw-900 {
  font-weight: 900;
}

.smallPrint,
.smallPrintLight {
  font-size: 0.8rem;
}

.smallPrintLight {
  color: #fff;
}

.lowerCase {
  text-transform: lowercase;
}

/* MARK:Mobile Navigation Desktop - 1023px */
@media only screen and (width <= 1023px) {
  body.cs-open {
    overflow: hidden;
  }

  #cs-navigation {
    width: 100%;

    /* prevents padding from affecting height and width */
    box-sizing: border-box;
    background-color: #fff;
    box-shadow: rgb(149 157 165 / 20%) 0 8px 24px;
    position: fixed;
    z-index: 10000;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }

  #cs-navigation::before {
    /* black blurred overlay */
    content: "";
    width: 0%;
    height: 100vh;
    background: rgb(0 0 0 / 60%);
    backdrop-filter: blur(10px);
    opacity: 0;
    position: absolute;
    display: block;
    top: 100%;
    right: 0;
    z-index: -11;
    transition: width 0.5s, opacity 0.3s;
  }

  #cs-navigation.cs-active::before {
    width: 100%;
    opacity: 1;
  }

  #cs-navigation.cs-active .cs-ul-wrapper {
    opacity: 1;
    transform: scaleX(1);
    transition-delay: 0.2s;
  }

  #cs-navigation.cs-active .cs-li {
    transform: translateX(0);
    opacity: 1;
  }

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

  #cs-navigation .cs-li-link:active {
    color: var(--primary);
    font-weight: 900;
  }

  #cs-navigation .cs-top-bar {
    width: 100%;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  #cs-navigation .cs-top-container {
    width: 100%;
    padding: 1rem 1.5rem;

    /* prevents padding from affecting height and width */
    box-sizing: border-box;
    background-color: #f7f7f7;
    display: -webkit-box;

    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1rem;
  }

  #cs-navigation .cs-top-contact {
    width: auto;

    /* prevents padding from affecting height and width */
    box-sizing: border-box;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;

    /* 16px - 24px */
    gap: 1.5rem;
  }

  #cs-navigation .cs-top-link {
    font-size: 0.875rem;
    line-height: 1.5em;
    text-decoration: none;
    margin: 0;
    color: var(--bodyTextColor);
    display: -webkit-box;

    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.5rem;
    position: relative;
  }

  #cs-navigation .cs-top-link:nth-of-type(2) {
    display: none;
  }

  #cs-navigation .cs-link-icon {
    width: 1rem;
    height: auto;
    display: block;
  }

  #cs-navigation .cs-top-social {
    visibility: visible;
    opacity: 1;
    display: -webkit-box;

    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.5rem;
    transition: opacity 0.3s, visibility 0.3s, height 0.3s;
  }

  #cs-navigation .cs-social-link {
    text-decoration: none;
    display: -webkit-box;

    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1rem;
  }

  #cs-navigation .cs-social-icon {
    width: 1.25rem;
    height: auto;
    display: block;
  }

  #cs-navigation .cs-container {
    width: 100%;
    padding: 1.25rem 1rem;

    /* prevents padding from affecting height and width */
    box-sizing: border-box;
    display: -webkit-box;

    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
  }

  #cs-navigation .cs-logo {
    width: auto;
    height: 2.5rem;
    margin: 0 auto 0 0;
    padding: 0;

    /* prevents padding from affecting height and width */
    box-sizing: border-box;
    display: -webkit-box;

    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    z-index: 10;
  }

  #cs-navigation .cs-logo img {
    width: auto;
    height: 100%;

    /* 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;
  }

  #cs-navigation .cs-nav {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }

  #cs-navigation .cs-toggle {
    width: 2.875rem;
    height: 2.875rem;
    margin: 0 0 0 auto;
    background-color: var(--primary);
    border: none;
    display: -webkit-box;

    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    transition: -webkit-transform 0.6s;
    transition: transform 0.6s;
    transition: transform 0.6s, -webkit-transform 0.6s;
  }

  #cs-navigation .cs-toggle.cs-active {
    transform: rotate(180deg);
  }

  #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 {
    /* 24px - 28px */
    width: 1.75rem;
    height: 0.75rem;
    position: relative;
  }

  #cs-navigation .cs-line {
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background-color: #fafbfc;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  #cs-navigation .cs-line1 {
    top: 0;
    transform-origin: center;
    transition: top 0.3s, left 0.3s, -webkit-transform 0.5s;
    transition: transform 0.5s, top 0.3s, left 0.3s;
    transition: transform 0.5s, top 0.3s, left 0.3s, -webkit-transform 0.5s;
    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, -webkit-transform 0.5s;
    transition: transform 0.5s, top 0.3s, left 0.3s;
    transition: transform 0.5s, top 0.3s, left 0.3s, -webkit-transform 0.5s;
    animation-duration: 0.7s;
    animation-timing-function: ease;
    animation-fill-mode: forwards;
    animation-direction: normal;
  }

  #cs-navigation .cs-line3 {
    bottom: 0;
    transition: bottom 0.3s, opacity 0.3s;
  }

  #cs-navigation .cs-ul-wrapper {
    /* min-width: 70vw; */
    height: 100vh;
    opacity: 0;
    background-color: #fff;
    box-shadow: inset rgb(0 0 0 / 20%) 0 8px 24px;
    overflow: hidden;
    position: absolute;
    top: 100%;
    left: auto;
    right: 0;
    z-index: -1;
    transform: scaleX(0);
    transform-origin: top right;
    transition: opacity 0.3s, -webkit-transform 0.4s;
    transition: transform 0.4s, opacity 0.3s;
    transition: transform 0.4s, opacity 0.3s, -webkit-transform 0.4s;
  }

  #cs-navigation .cs-ul {
    margin: 0;

    /* 28px - 40px */
    padding: 2.5rem;
    width: auto;
    min-width: 40%;
    height: 65vh;
    overflow: hidden;
    display: -webkit-box;

    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    gap: 1.25rem;
  }

  #cs-navigation .cs-li {
    text-align: right;
    list-style: none;
    width: 100%;
    margin-right: 0;

    /* transition from these values */
    transform: translateX(-2.5rem);
    opacity: 0;
    transition: opacity 0.9s, -webkit-transform 0.6s;
    transition: transform 0.6s, opacity 0.9s;
    transition: transform 0.6s, opacity 0.9s, -webkit-transform 0.6s;
  }

  #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);
    line-height: 1.2em;
    text-decoration: none;
    margin: 0;
    color: var(--headerColor);
    display: inline-block;
    position: relative;
  }

  #cs-navigation .cs-li-link::before {
    /* active state underline */
    content: "";
    width: 100%;
    height: 1px;
    background: currentcolor;
    opacity: 1;
    position: absolute;
    display: none;
    bottom: -0.125rem;
    left: 0;
  }

  #cs-navigation .cs-li-link .cs-active {
    color: var(--primary);
    font-weight: 700;
  }

  #cs-navigation .cs-li-link .cs-active:active {
    color: var(--primary);
    font-weight: 900;
  }

  #cs-navigation .cs-li-link .cs-active::before {
    display: block;
  }

  #cs-navigation .cs-button-solid {
    display: none;
  }
}

/* MARK:Tablet - 768px */
@media only screen and (width >= 48rem) {
  #cs-navigation .cs-top-link:nth-of-type(2) {
    display: -webkit-box;

    display: flex;
  }
}

/* MARK:Navigation Dropdown */

/* Mobile - 1023px */
@media only screen and (width <= 1023px) {
  #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 0 0;
    padding: 1.5rem;
    transform: scale(1);
  }

  #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: 0.9375rem;
    height: auto;
    position: absolute;
    top: 50%;
    right: -1.25rem;
    transform: translateY(-50%);
  }

  #cs-navigation .cs-drop-ul {
    height: 0;
    margin: 0;
    padding: 0 1.5rem;
    box-sizing: border-box;

    /*    background-color: var(--primary); */
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    display: -webkit-box;

    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    gap: 0.75rem;
    transform: scale(0);
    transform-origin: top right;
    transition: padding 0.3s, margin 0.3s, height 0.3s, opacity 0.3s,
      visibility 0.3s, -webkit-transform 0.3s;
    transition: padding 0.3s, margin 0.3s, height 0.3s, opacity 0.3s,
      transform 0.3s, visibility 0.3s;
    transition: padding 0.3s, margin 0.3s, height 0.3s, opacity 0.3s,
      transform 0.3s, visibility 0.3s, -webkit-transform 0.3s;
  }

  #cs-navigation .cs-drop-li {
    list-style: none;
    text-align: inherit;
  }

  #cs-navigation .cs-li-link.cs-drop-link {
    font-size: 1rem;
    white-space: nowrap;
    line-height: 1.5em;
    text-decoration: none;
    width: 100%;
    padding: 0.75rem;

    /* prevents padding from adding to the 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 {
    color: var(--primary);
    background-color: #f7f7f7;
  }

  #cs-navigation .cs-li-link.cs-drop-link::before {
    display: none;
  }
}

/* Desktop - 1024px */
@media only screen and (width >= 64rem) {
  #cs-navigation {
    width: 100%;
    padding: 0;

    /* prevents padding from affecting height and width */
    box-sizing: border-box;
    background-color: #fff;
    box-shadow: rgb(149 157 165 / 20%) 0 8px 24px;
    position: fixed;
    z-index: 10000;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }

  #cs-navigation .cs-top-container {
    width: 100%;
    max-width: 80rem;
    padding: 1rem;

    /* prevents padding from affecting height and width */
    box-sizing: border-box;
    display: -webkit-box;

    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 3.125rem;
    position: relative;
    z-index: 1;
  }

  #cs-navigation .cs-top-container::before {
    /* grey background */
    content: "";
    width: 100vw;
    height: 100%;
    background: #f7f7f7;
    opacity: 1;
    position: absolute;
    display: block;
    top: 0;
    left: 50%;
    z-index: -1;
    transform: translateX(-50%);
  }

  #cs-navigation .cs-top-contact {
    display: -webkit-box;

    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1.5rem;
  }

  #cs-navigation .cs-top-link:hover {
    text-decoration: underline;
  }

  #cs-navigation .cs-top-social {
    display: -webkit-box;

    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1rem;
  }

  #cs-navigation .cs-social-link {
    text-decoration: none;
    display: -webkit-box;

    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }

  #cs-navigation .cs-social-link:hover {
    background-color: var(--primary);
  }

  #cs-navigation .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    padding: 0 1rem;

    /* prevents padding from affecting height */
    box-sizing: border-box;
    display: -webkit-box;

    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1.5rem;
    position: relative;
  }

  #cs-navigation .cs-toggle {
    display: none;
  }

  #cs-navigation .cs-logo {
    /* 40px - 44px */
    height: clamp(2.5rem, 4vw, 2.75rem);

    /* margin-right auto pushes everything away from it to the right */
    margin: 0 auto 0 0;
    padding: 0;

    /* prevents padding from affecting height and width */
    box-sizing: border-box;
    display: -webkit-box;

    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 100;
  }

  #cs-navigation .cs-ul {
    width: 100%;
    margin: 0;
    padding: 0;
    display: -webkit-box;

    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 3rem;
  }

  #cs-navigation .cs-li {
    list-style: none;
    padding: 1.9375rem 0;

    /* prevent flexbox from squishing it */
    -webkit-box-flex: 0;
    flex: none;
  }

  #cs-navigation .cs-li-link {
    /* 14px - 16px */
    font-size: clamp(0.875rem, 1.3vw, 1rem);
    line-height: 1.5em;
    text-decoration: none;
    margin: 0;
    color: var(--headerColor);
    display: block;
    position: relative;
    transition: color 0.3s;
  }

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

  .cs-active {
    color: var(--primary);
    font-weight: 900;
  }

  #cs-navigation .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;
    padding: 0 2rem;
    background-color: var(--primary);
    overflow: hidden;
    display: inline-block;
    position: relative;
    z-index: 1;

    /* prevents padding from adding to the width */
    box-sizing: border-box;
    transition: color 0.3s;
  }

  #cs-navigation .cs-button-solid::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 0%;
    background: #1a1a1a;
    opacity: 1;
    top: 0;
    left: 0;
    z-index: -1;
    transition: width 0.3s;
  }

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

  #cs-navigation .cs-nav-button {
    line-height: 2.875rem;
    margin-left: 1.5rem;
  }
}

/* Desktop - 1024px */
@media only screen and (width >= 64rem) {
  #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: 0.9375rem;
    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: rgb(149 157 165 / 20%) 0 10px 16px;
    border-bottom: 5px solid var(--primary);
    position: absolute;
    top: 100%;
    z-index: -100;
    transform: scaleY(0);
    transform-origin: top;
    transition: visibility 0.3s, opacity 0.3s, -webkit-transform 0.3s;
    transition: transform 0.3s, visibility 0.3s, opacity 0.3s;
    transition: transform 0.3s, visibility 0.3s, opacity 0.3s,
      -webkit-transform 0.3s;
  }

  #cs-navigation .cs-drop-li {
    list-style: none;
    font-size: 1rem;
    text-decoration: none;
    opacity: 0;
    width: 100%;
    height: auto;
    display: block;
    transform: translateY(-0.625rem);
    transition: opacity 0.6s, -webkit-transform 0.6s;
    transition: opacity 0.6s, transform 0.6s;
    transition: opacity 0.6s, transform 0.6s, -webkit-transform 0.6s;
  }

  #cs-navigation .cs-drop-li:nth-of-type(1) {
    transition-delay: 0.05s;
  }

  #cs-navigation .cs-drop-li:nth-of-type(2) {
    transition-delay: 0.1s;
  }

  #cs-navigation .cs-drop-li:nth-of-type(3) {
    transition-delay: 0.15s;
  }

  #cs-navigation .cs-drop-li:nth-of-type(4) {
    transition-delay: 0.2s;
  }

  #cs-navigation .cs-drop-li:nth-of-type(5) {
    transition-delay: 0.25s;
  }

  #cs-navigation .cs-drop-li:nth-of-type(6) {
    transition-delay: 0.3s;
  }

  #cs-navigation .cs-li-link.cs-drop-link {
    font-size: 1rem;
    line-height: 1.5em;
    text-decoration: none;
    margin: 0;
    padding: 0.75rem;

    /* prevents padding from adding to the 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 {
    color: var(--primary);
    background-color: #f7f7f7;
  }

  #cs-navigation .cs-li-link.cs-drop-link::before {
    display: none;
  }
}

/* Small Desktop - 1024px */
@media only screen and (width >= 64rem) {
  /* body.scroll #cs-navigation {
    transform: translateY(-3.3125rem);
  } */

  #cs-navigation .cs-top-bar {
    width: 100%;
    display: -webkit-box;

    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  #cs-navigation .cs-link-icon {
    width: 1rem;
    height: auto;
    display: block;
  }
}

/* MARK:Hero */

/* Mobile - 360px */
@media only screen and (width >= 0) {
  #hero-1203 {
    /* 150px - 350px */
    padding: clamp(9rem, 25.95vw, 21.875rem) 1rem;
    padding-bottom: 0;
    position: relative;
    z-index: 1;

    /* prevents overflow from the arrow graphic */
    overflow: hidden;
  }

  #hero-1203::before {
    /* black bar */
    content: "";
    width: 100%;

    /* 100px - 200px */
    height: clamp(6.25rem, 29vw, 12.5rem);
    background: #1a1a1a;
    opacity: 1;
    position: absolute;
    display: block;
    bottom: 0;
    left: 0;
  }

  #hero-1203 .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    position: relative;
    display: -webkit-box;

    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;

    /* 48px - 64px */
    gap: clamp(3rem, 7vw, 4rem);
  }

  #hero-1203 .cs-content {
    /* set text align to left if content needs to be left aligned */
    text-align: center;
    width: 100%;
    max-width: 39.375rem;
    display: -webkit-box;

    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;

    /* centers content horizontally, set to flex-start to left align */
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  #hero-1203 .cs-topper {
    font-size: var(--topperFontSize);
    line-height: 1.2em;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 0.1em;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
    display: block;
  }

  #hero-1203 .cs-title {
    font-size: clamp(2.4375rem, 6.4vw, 3.8125rem);
    font-weight: 900;
    line-height: 1.2em;
    text-align: inherit;
    max-width: 17ch;
    margin: 0 0 1rem;
    color: var(--headerColor);
    position: relative;
  }

  #hero-1203 .cs-text {
    font-size: 1.25rem;
    line-height: 1.5em;
    text-align: inherit;
    width: 100%;
    max-width: 43.75rem;

    /* 28px - 40px */
    margin: 0 0 clamp(1.75rem, 4vw, 2.5rem);
    color: var(--bodyTextColor);
  }

  #hero-1203 .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: #1a1a1a;
    padding: 0;
    background-color: var(--primary);
    display: inline-block;
    position: relative;
    z-index: 1;

    /* prevents padding from adding to the width */
    box-sizing: border-box;
    transition: color 0.3s;
  }

  #hero-1203 .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;
  }

  #hero-1203 .cs-button-solid:hover {
    color: #fff;
  }

  #hero-1203 .cs-button-solid:hover::before {
    width: 100%;
  }

  #hero-1203 .cs-picture {
    width: 100%;

    /* changes to 866px at desktop */
    max-width: 34.0625rem;
    height: auto;
    display: -webkit-box;

    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    position: relative;
  }

  #hero-1203 .cs-picture img {
    width: 100%;
    height: auto;
  }

  #hero-1203 .cs-floater {
    /* changes to 1465px at desktop */
    width: 59.6875rem;
    height: auto;
    opacity: 0.08;
    display: block;
    position: absolute;
    right: 0;
    top: 40%;
    z-index: -1;
  }
}

/* Desktop - 1024px */
@media only screen and (width >= 64rem) {
  #hero-1203::before {
    height: 16.125rem;
  }

  #hero-1203 .cs-picture {
    width: 70%;
    max-width: 54.125rem;
  }

  #hero-1203 .cs-floater {
    width: 91.5625rem;
    top: 30%;
  }
}

/* MARK: hero-1203 Large Desktop - 1300px */
@media only screen and (width >= 81.25rem) {
  #hero-1203 {
    padding-bottom: 12.5rem;
  }

  #hero-1203::before {
    height: 100%;
    width: 40vw;
    margin-left: 20.8125rem;
    left: 50%;
  }

  #hero-1203 .cs-container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;

    /* remove the positioning so the cs-picture is now absolutely positioned to the next parent with a declared position - the #hero section container. Now we can position it off the bottom edge of the parent container */
    position: initial;
  }

  #hero-1203 .cs-content {
    text-align: left;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  #hero-1203 .cs-picture {
    width: 54.125rem;
    height: 52.625rem;
    margin-left: 0.625rem;
    position: absolute;
    left: 50%;
    bottom: 0;
  }

  #hero-1203 .cs-picture img {
    bottom: 0;
    left: 0;
    max-width: 100%;
    height: auto;
    position: absolute;
    object-fit: contain;
  }

  #hero-1203 .cs-floater {
    margin-right: -20.8125rem;
    top: 8.75rem;
    right: 50%;
  }
}

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

/* Mobile - 360px */
@media only screen and (width >= 0) {
  #banner-712 {
    /* 175px - 200px top */
    padding: clamp(10.9375rem, 10vw, 12.5rem) 1rem 6.25rem;
    position: relative;
    z-index: 1;
  }

  #banner-712 .cs-container {
    text-align: center;
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: -webkit-box;

    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    gap: 1rem;
  }

  #banner-712 .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-712 .cs-background {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }

  #banner-712 .cs-background::before {
    /* background color overlay */
    content: "";
    position: absolute;
    display: block;
    height: 100%;
    width: 100%;
    background: #000;
    opacity: 0.75;
    top: 0;
    left: 0;
    z-index: 1;
  }

  #banner-712 .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 (width >= 48rem) {
  #banner-712 .cs-background::before {
    opacity: 1;
    background: linear-gradient(
      90.01deg,
      rgb(0 0 0 / 90%) 16.86%,
      rgb(0 0 0 / 0%) 100%
    );
  }
}

/* MARK: Content-1637 Mobile (360px) */
@media only screen and (width >= 0) {
  #content-1637,
  #footer-1390 {
    padding: var(--sectionPadding);
    background-color: #1a1a1a;
    position: relative;
    z-index: 1;
  }

  #footer-1390 .cs-li-link {
    color: #fff;
  }

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

  #content-1637 .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: -webkit-box;

    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;

    /* 48px - 100px */
    gap: clamp(3rem, 9vw, 6.25rem);
  }

  #content-1637 .cs-content {
    /* set text align to left if content needs to be left aligned */
    text-align: left;
    width: 100%;
    display: -webkit-box;

    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;

    /* centers content horizontally, set to flex-start to left align */
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  #content-1637 .cs-flex {
    max-width: 38rem;
  }

  #content-1637 .cs-title {
    color: var(--bodyTextColorWhite);
  }

  #content-1637 .cs-h3 {
    font-size: 1.25rem;
    line-height: 1.2em;
    font-weight: 700;
    margin: 0 0 1rem;
    color: var(--bodyTextColorWhite);
  }

  #content-1637 .cs-text {
    margin-bottom: 1rem;
    opacity: 0.8;
    color: var(--bodyTextColorWhite);
  }

  #content-1637 .cs-text:last-of-type {
    margin-bottom: 2rem;
  }

  #content-1637 .cs-button-solid,
  #content-page-715 .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);
    display: inline-block;
    position: relative;
    z-index: 1;

    /* prevents padding from adding to the width */
    box-sizing: border-box;
  }

  #content-1637 .cs-button-solid::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 0%;
    background: #000;
    opacity: 1;
    top: 0;
    left: 0;
    z-index: -1;
    transition: width 0.3s;
  }

  #content-1637 .cs-button-solid:hover::before {
    width: 100%;
  }
}

/* Tablet - 768px */
@media only screen and (width >= 48rem) {
  #content-1637::before {
    height: 63%;
  }

  #content-1637 .cs-content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 2.5rem;
  }

  #content-1637 .cs-flex {
    width: 50%;
    text-align: left;
    max-width: 38rem;
  }

  #content-1637 .cs-title {
    margin: 0;
  }
}

/* MARK:Testimonials_1 */

/* Mobile - 360px */
@media only screen and (width >= 0) {
  #reviews-981 {
    padding: var(--sectionPadding);
    position: relative;
    z-index: 1;
  }

  #reviews-981 .cs-container {
    width: 100%;

    /* changes to 1280px at tablet */
    max-width: 36.5rem;
    margin: auto;
    display: -webkit-box;

    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;

    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
  }

  #reviews-981 .cs-content {
    /* set text align to center if content needs to be center aligned */
    text-align: center;
    width: 100%;
    max-width: 56.25rem;
    display: -webkit-box;

    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;

    /* centers content horizontally, set to flex-start to left align */
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  #reviews-981 .cs-title {
    margin: 0;
    max-width: 25ch;
  }

  #reviews-981 .cs-card-group {
    width: 100%;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
  }

  #reviews-981 .cs-item {
    list-style: none;
    width: 100%;

    /* 16px - 32px */
    padding: clamp(1rem, 3.1vw, 2rem);

    /* prevents padding from adding to height and width */
    box-sizing: border-box;
    display: -webkit-box;

    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;

    /* -ms-grid-column-span: 12; */
    grid-column: span 12;
    position: relative;
  }

  #reviews-981 .cs-item:last-of-type::after {
    display: none;
  }

  #reviews-981 .cs-item::after {
    content: "";
    width: 100%;
    height: 1px;
    margin: 2rem 0 0;
    background: var(--primary);
    opacity: 1;
    position: relative;
    display: block;
  }

  #reviews-981 .cs-flex-group {
    width: 100%;
    margin: 0 0 1.75rem;
    display: -webkit-box;

    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.75rem;
  }

  #reviews-981 .cs-profile {
    width: 3.125rem;
    height: 3.125rem;
    border: 2px solid #bababa;
    background-color: #bababa;
    border-radius: 50%;

    /* clips image corners to make circle */
    overflow: hidden;
    position: relative;
    display: block;
  }

  #reviews-981 .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-981 .cs-name {
    /* 20px - 25px */
    font-size: clamp(1.25rem, 2vw, 1.5625rem);
    line-height: 1.5em;
    font-weight: 700;
    margin: 0;
    color: var(--headerColor);
    display: block;
  }

  #reviews-981 .cs-job {
    font-size: 0.875rem;
    line-height: 1.2em;
    font-weight: 400;
    margin: 0;
    color: var(--bodyTextColor);
    display: block;
  }

  #reviews-981 .cs-review {
    /* 14px - 16px */
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    font-style: italic;
    line-height: 1.5em;
    margin: 0;
    max-width: 27.75rem;
    color: var(--bodyTextColor);
  }
}

#reviews-981 .cs-review {
  position: relative;
  padding: 20px;
}

/* Desktop - 1024px */
@media only screen and (width >= 64rem) {
  #reviews-981 .cs-container {
    max-width: 80rem;
  }

  #reviews-981 .cs-card-group {
    gap: 2.5rem;
  }

  #reviews-981 .cs-item {
    /* -ms-grid-column-span: 4; */
    grid-column: span 4;
    position: relative;
  }

  #reviews-981 .cs-item::after {
    width: 1px;
    height: 80%;
    margin: 0;
    position: absolute;
    right: -1.25rem;
    top: 50%;
    transform: translateY(-50%);
  }
}

/* MARK:Pricing (pricing-1790) */

/* Mobile - 360px */
@media only screen and (width >= 0) {
  #pricing-1790 {
    padding: var(--sectionPadding);

    /* padding-bottom: 10vw; */
    background-color: #f7f7f7;
    position: relative;
    overflow: hidden;
    z-index: 1;
  }

  #pricing-1790 .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: -webkit-box;

    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
  }

  #pricing-1790 .cs-content {
    /* set text align to left if content needs to be left aligned */
    text-align: left;
    width: 100%;
    display: -webkit-box;

    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;

    /* centers content horizontally, set to flex-start to left align */
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    position: relative;
  }

  #pricing-1790 .cs-flex {
    display: -webkit-box;

    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }

  #pricing-1790 .cs-title {
    margin: 0;
  }

  #pricing-1790 .cs-wrapper {
    width: 100%;
    max-width: 80rem;
    display: -webkit-box;

    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  #pricing-1790 .cs-ul {
    width: 100%;
    margin: 1.5rem 0 0;
    padding: 0;
    display: -webkit-box;

    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 0.75rem;
  }

  #pricing-1790 .cs-li {
    font-size: var(--bodyFontSize);
    list-style: none;
    line-height: 1.5em;
    width: 100%;
    max-width: 21.8125rem;
    color: var(--bodyTextColor);
    display: -webkit-box;

    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;

    /* push icon top the top so if the list item goes to two lines the icon stays at the top */
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 0.5rem;
  }

  #pricing-1790 .cs-icon {
    width: 1.125rem;
    height: auto;
    display: block;
  }

  #pricing-1790 .cs-card-group {
    width: 100%;
    max-width: 57rem;
    margin: 3rem 0 0;
    padding: 0;
    display: -webkit-box;

    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  #pricing-1790 .cs-item {
    text-align: center;
    list-style: none;
    width: 100%;
    margin: 0;

    /* 32px - 40px top */

    /* 16px - 32px left & right */
    padding: clamp(2rem, 2vw, 2.5rem) clamp(1rem, 1.5vw, 2rem);
    background-color: #fff;

    /* prevents padding and border from affecting height and width */
    box-sizing: border-box;
    display: -webkit-box;

    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
  }

  #pricing-1790 .cs-item.cs-popular {
    background-color: #1a1a1a;

    /* 48px - 64px top & bottom */

    /* 16px - 32px left & right */
    padding: clamp(3rem, 6vw, 4rem) clamp(1rem, 1.5vw, 2rem);
  }

  #pricing-1790 .cs-item.cs-popular .cs-package,
  #pricing-1790 .cs-item.cs-popular .cs-frequency,
  #pricing-1790 .cs-item.cs-popular .cs-item-text {
    color: var(--bodyTextColorWhite);
    opacity: 0.9;
  }

  #pricing-1790 .cs-item.cs-popular .cs-price {
    color: var(--bodyTextColorWhite);
  }

  #pricing-1790 .cs-item.cs-popular .cs-button-solid {
    transition: color 0.3s;
  }

  #pricing-1790 .cs-item.cs-popular .cs-button-solid:hover {
    color: var(--primary);
  }

  #pricing-1790 .cs-item.cs-popular .cs-button-solid::before {
    background-color: #fff;
  }

  #pricing-1790 .cs-package {
    /* 13px - 16px */
    font-size: clamp(0.8125rem, 1.4vw, 1rem);
    font-weight: 700;
    line-height: 1.2em;
    text-align: inherit;
    text-transform: uppercase;
    margin: 0 0 0.25rem;
    color: var(--bodyTextColor);
    display: block;
  }

  #pricing-1790 .cs-flex-wrapper {
    width: 100%;
    margin: 0 0 1.5rem;
    padding: 0 0 1.5rem;
    display: -webkit-box;

    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
    z-index: 1;
  }

  #pricing-1790 .cs-flex-wrapper::after {
    content: "";
    width: 100%;
    height: 1px;
    background: -webkit-gradient(
      linear,
      left top,
      right top,
      from(rgb(232 232 232 / 20%)),
      color-stop(53.78%, #e8e8e8),
      to(rgb(232 232 232 / 20%))
    );
    background: linear-gradient(
      to left,
      rgb(232 232 232 / 20%) 0%,
      #e8e8e8 53.78%,
      rgb(232 232 232 / 20%) 100%
    );
    background: linear-gradient(
      90deg,
      rgb(232 232 232 / 20%) 0%,
      #e8e8e8 53.78%,
      rgb(232 232 232 / 20%) 100%
    );
    opacity: 1;
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
  }

  #pricing-1790 .cs-price {
    font-size: var(--headerFontSize);
    font-weight: 900;
    line-height: 1.2em;
    text-align: inherit;
    margin: 0;
    color: var(--headerColor);
  }

  #pricing-1790 .cs-frequency {
    font-size: 1rem;
    line-height: 1.5em;
    text-align: inherit;
    margin: 0;
    color: var(--bodyTextColor);
    display: block;
  }

  #pricing-1790 .cs-item-text {
    font-size: 1rem;
    line-height: 1.5em;
    text-align: inherit;
    margin: 0 0 auto;
    color: var(--bodyTextColor);
  }

  #pricing-1790 .cs-button-solid {
    font-size: 1rem;
    font-weight: 700;

    /* 46px - 56px */
    line-height: clamp(2.875em, 5.5vw, 3.5em);
    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;
    color: #fff;
    background-color: var(--primary);
    border-radius: 0.25rem;
    display: inline-block;
    position: relative;
    z-index: 1;
  }

  #pricing-1790 .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;
  }

  #pricing-1790 .cs-button-solid:hover::before {
    width: 100%;
  }

  #pricing-1790 .cs-graphic {
    width: 100%;
    min-width: 120rem;
    height: auto;
    position: absolute;
    bottom: -1rem;
    left: 0;
    z-index: -1;
  }

  #pricing-1790 .cs-dark {
    display: none;
  }
}

/* Tablet - 768px */
@media only screen and (width >= 48rem) {
  #pricing-1790 .cs-container {
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
  }

  #pricing-1790 .cs-content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }

  #pricing-1790 .cs-ul {
    display: grid;

    /* -ms-grid-columns: (1fr)[2]; */
    grid-template-columns: repeat(2, 1fr);
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }

  #pricing-1790 .cs-card-group {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }

  #pricing-1790 .cs-item {
    height: auto;
    margin: 1.5rem 0;
  }

  #pricing-1790 .cs-item.cs-popular {
    margin: 0;
  }
}

/* Small Desktop - 1024px */
@media only screen and (width >= 64rem) {
  #pricing-1790 .cs-ul {
    width: 30%;
    display: -webkit-box;

    display: flex;
  }

  #pricing-1790 .cs-wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    gap: 1.25rem;
  }

  #pricing-1790 .cs-card-group {
    margin: 0;
  }

  #pricing-1790 .cs-item {
    min-height: 25rem;
  }
}

/* MARK:Features */

/* Mobile */
@media only screen and (width >= 0) {
  #cs-content-831 {
    /* set text align to left if content needs to be left aligned */
    text-align: center;
    width: 100%;
    display: -webkit-box;

    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;

    /* centers content horizontally, set to flex-start to left align */
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  #cs-content-831 .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;
  }

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

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

/* MARK: Portfolio */

/* Mobile - 360px */
@media only screen and (width >= 0) {
  #gallery-43 {
    padding: var(--sectionPadding);
    position: relative;

    /* Prevents overflow from the image going off screen */
    background-color: #f7f7f7;
    overflow: hidden;
  }

  #gallery-43 .cs-container {
    width: 100%;
    max-width: 69rem;
    margin: auto;
    display: -webkit-box;

    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;

    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
  }

  #gallery-43 .cs-content {
    /* set text align to left if content needs to be left aligned */
    text-align: center;
    width: 100%;
    display: -webkit-box;

    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;

    /* centers content horizontally, set to flex-start to left align */
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  #gallery-43 .cs-image-group {
    width: 100%;
    display: -webkit-box;

    display: flex;

    /* flex-direction: column; */
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;

    /* 16px - 20px */
    gap: clamp(1rem, 1.5vw, 1.25rem);
  }

  #gallery-43 .cs-item {
    width: 100%;
    height: 100%;
    aspect-ratio: 1;
    margin: 0;
    position: relative;
    display: block;
  }

  #gallery-43 .cs-item:hover .cs-hover-box {
    opacity: 1;
  }

  #gallery-43 .cs-item:hover .cs-icon {
    /* return to original position */
    transform: rotateY(0);
  }

  #gallery-43 .cs-item:hover .cs-h3 {
    opacity: 1;

    /* Return to original position */
    transform: translateY(0);
  }

  #gallery-43 .cs-item:hover .cs-hover-box-text {
    opacity: 1;

    /* Return to original position */
    transform: translateY(0);
  }

  #gallery-43 .cs-picture {
    margin: auto;
    width: 100%;
    height: 100%;
    display: -webkit-box;

    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    position: relative;
  }

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

  #gallery-43 .cs-hover-box {
    text-align: center;
    width: 100%;
    height: 100%;
    padding: 1em;
    background-color: rgb(229 87 44 / 90%);
    opacity: 0;
    position: absolute;
    display: -webkit-box;

    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;

    /* Prevents padding from contributing to height & width */
    box-sizing: border-box;

    /* Sets stage for 3d transform animation */
    perspective: 700px;
    top: 0;
    left: 0;
    z-index: 10;

    /* prevents mouse from being able to interact with these elements */
    pointer-events: none;
    transition: opacity 0.3s;
  }

  #gallery-43 .cs-icon {
    /* 50px - 60px */
    width: clamp(3.125rem, 5vw, 3.75rem);
    height: clamp(3.125rem, 5vw, 3.75rem);

    /* 16px - 32px */
    margin-bottom: clamp(1rem, 5vw, 2rem);
    border-radius: 50%;
    background-color: #fff;
    outline: 0.5rem solid rgb(255 255 255 / 70%);

    /* Start with the icon box rotated 90deg */
    transform: rotateY(90deg);
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-flex: 0;
    flex: none;
    transition: -webkit-transform 0.5s;
    transition: transform 0.5s;
    transition: transform 0.5s, -webkit-transform 0.5s;
  }

  #gallery-43 .cs-icon img {
    width: 2.25rem;
    height: 1.25rem;
  }

  #gallery-43 .cs-h3 {
    /* 20px - 25px */
    font-size: clamp(1.25rem, 2vw, 1.5625rem);
    line-height: 1.2em;
    font-weight: 700;
    margin: 0 auto;
    max-width: 16.875rem;
    color: #fff;

    /* make starting position down 10px and invisible */
    opacity: 0;
    transform: translateY(0.625rem);
    margin-bottom: 0.5rem;
    transition: opacity 0.3s, -webkit-transform 0.3s ease-out;
    transition: opacity 0.3s, transform 0.3s ease-out;
    transition: opacity 0.3s, transform 0.3s ease-out,
      -webkit-transform 0.3s ease-out;
    transition-delay: 0.1s;
  }

  #gallery-43 .cs-hover-box-text {
    /* 13px - 16px */
    font-size: clamp(0.8125rem, 1vw, 1rem);
    line-height: 1.5em;
    margin: 0 auto;
    max-width: 16.875rem;
    color: #fff;

    /* make starting position down 10px and invisible */
    opacity: 0;
    transform: translateY(0.625rem);
    transition: opacity 0.3s, -webkit-transform 0.3s ease-out;
    transition: opacity 0.3s, transform 0.3s ease-out;
    transition: opacity 0.3s, transform 0.3s ease-out,
      -webkit-transform 0.3s ease-out;
    transition-delay: 0.2s;
  }
}

@media only screen and (width < 600px) {
  #gallery-43 .cs-image-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
  }
}

@media only screen and (width < 500px) {
  #gallery-43 .cs-image-group {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: 1fr;
  }
}
/* In Between - 600px */
@media only screen and (width >= 37.5rem) {
  #gallery-43 .cs-image-group {
    display: grid;

    /* -ms-grid-columns: (1fr)[12]; */
    grid-template-columns: repeat(3, 1fr);

    /* -ms-grid-rows: 1fr; */
    grid-template-rows: 1fr;
  }

  #gallery-43 .cs-item {
    /* -ms-grid-column-span: 6; */
    grid-column: span 6;
  }
}

/* Tablet - 768px */
@media only screen and (width >= 48rem) {
  /* #gallery-43 .cs-item {
    -ms-grid-column-span: 4;
    grid-column: span 4;
  } */
}

/* Tablet - 768px */
@media only screen and (width >= 48rem) {
  #services-942 .cs-container {
    max-width: 80rem;
  }

  #services-942 .cs-item {
    /* -ms-grid-column-span: 4; */
    grid-column: span 4;
  }
}

/* MARK:Footer */

/* Mobile - 360px */
@media only screen and (width >= 0) {
  #footer-1390 .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: -webkit-box;

    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: sticky;
  }

  #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: -webkit-box;

    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;

    /* 24px - 40px */
    gap: clamp(1.25rem, 4vw, 2.5rem);
  }

  #footer-1390 .cs-ul {
    margin: 0;
    padding: 0;
    display: -webkit-box;

    display: flex;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 0.5rem clamp(1.5rem, 4vw, 2.25rem);

    /* 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;
  }

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

  #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: -webkit-box;

    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1rem;
  }

  .cs-social {
    margin: 0;
    padding: 0;
    display: -webkit-box;

    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.5rem;
  }

  .cs-social-li {
    list-style: none;
  }

  .cs-social-link {
    width: 2rem;
    height: 2rem;
    background-color: #484848;
    border-radius: 50%;
    display: -webkit-box;

    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: 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: #fff;
    line-height: 1.5em;
    margin: 0;
    display: block;
  }

  #footer-1390 .cs-copyright-link,
  #footer-1390 .cs-separator {
    font-size: 1rem;
    text-decoration: none;
    color: #fff;
    transition: color 0.3s;
  }

  #footer-1390 .cs-copyright-link:hover,
  #footer-1390 .cs-separator:hover {
    color: var(--primary);
  }

  #footer-1390 .cs-separator {
    margin: 0 1rem;
    display: inline-block;
  }
}

/* Tablet - 768px */
@media only screen and (width >= 48rem) {
  #footer-1390 .cs-top {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  #footer-1390 .cs-bottom {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  #footer-1390 .cs-flex {
    margin: 0 auto;
  }

  #footer-1390 .cs-social {
    /* sends it to the right in the 3rd position */
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
}
