:root {
    --primary: #C0151A;
    --primaryLight: #ffba43;
    --secondary: #ffba43;
    --secondaryLight: #ffba43;
    --headerColor: #1a1a1a;
    --bodyTextColor: #1a1a1a;
    --bodyTextColorWhite: #fafbfc;
    /* 13px - 16px */
    --topperFontSize: clamp(0.8125rem, 1.6vw, 1rem);
    /* 31px - 49px */
    --headerFontSize: clamp(1.9375rem, 3.9vw, 3.0625rem);
    --bodyFontSize: 1.3rem;
    /* 60px - 100px top and bottom */
    --sectionPadding: clamp(3.75rem, 7.82vw, 6.25rem) 1rem;
    --font-heading: "Bebas Neue", sans-serif;
    --font-body: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}
.cs-title,
.cs-h2,
.cs-h3,
.cs-topper,
h1,
h2,
h3, .section-divider {
  font-family: var(--font-heading);
  letter-spacing: 0.05em;
}
.cs-button,
.cs-button-solid,
.cs-nav,
.cs-header,
.cs-card-title,
.cs-li strong {
  font-family: var(--font-body);
  font-weight: 600;
}
body,
p,
.cs-text,
.cs-li,
.cs-content,
.cs-link,
label,
input,
textarea, span {
  font-family: var(--font-body);
  font-weight: 400;
}
section[class^="cs-"] * {
  font-family: inherit;
}
body {
    margin: 0;
    padding: 0;
}
html {
  scroll-behavior: smooth;
}

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

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

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

.cs-button-solid:hover {
    transform: translateY(-2px);
    box-shadow:
        0 14px 30px rgba(192, 21, 26, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.cs-button-solid {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;

    padding: 0.9rem 1.5rem;
    min-height: 52px;

    background: linear-gradient(180deg, #e01a1f 0%, #b81216 100%);
    color: #ffffff;

    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;

    border-radius: 14px;
    border: none;

    box-shadow:
        0 10px 24px rgba(192, 21, 26, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);

    text-decoration: none;
    cursor: pointer;
}

/*-- -------------------------- -->
<---     Mobile Navigation      -->
<--- -------------------------- -*/
/* Mobile - 1023px */
@media only screen and (max-width: 63.9375rem) {
  body.cs-open {
    overflow: hidden;
  }
  #cs-navigation {
    width: 100%;
    /* prevents padding and border from affecting height and width */
    box-sizing: border-box;
    padding: 0.75rem 1rem;
    background-color: #fff;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    position: fixed;
    z-index: 2;
  }
  #cs-navigation:before {
    content: "";
    width: 100%;
    height: 0vh;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    display: block;
    position: absolute;
    top: 100%;
    right: 0;
    z-index: -1100;
    transition: height 0.5s, opacity 0.5s;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
  }
  #cs-navigation.cs-active:before {
    height: 150vh;
    opacity: 1;
  }
  #cs-navigation.cs-active .cs-ul-wrapper {
    opacity: 1;
    transform: scaleY(1);
    transition-delay: 0.15s;
  }
  #cs-navigation.cs-active .cs-li {
    opacity: 1;
    transform: translateY(0);
  }
  #cs-navigation .cs-container {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  
  #cs-navigation .cs-toggle {
    /* 44px - 48px */
    width: clamp(2.75rem, 6vw, 3rem);
    height: clamp(2.75rem, 6vw, 3rem);
    margin: 0 0 0 auto;
    background-color: transparent;
    border: none;
    border-radius: 0.25rem;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #cs-navigation .cs-active .cs-line1 {
    top: 50%;
    transform: translate(-50%, -50%) rotate(225deg);
  }
  #cs-navigation .cs-active .cs-line2 {
    top: 50%;
    transform: translate(-50%, -50%) translateY(0) rotate(-225deg);
    transform-origin: center;
  }
  #cs-navigation .cs-active .cs-line3 {
    opacity: 0;
    bottom: 100%;
  }
  #cs-navigation .cs-box {
    /* 24px - 28px */
    width: clamp(1.5rem, 2vw, 1.75rem);
    /* 14px - 16px */
    height: clamp(0.875rem, 1.5vw, 1rem);
    position: relative;
  }
  #cs-navigation .cs-line {
    width: 100%;
    height: 2px;
    background-color: #1a1a1a;
    border-radius: 2px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  #cs-navigation .cs-line1 {
    top: 0;
    transition: transform 0.5s, top 0.3s, left 0.3s;
    animation-duration: 0.7s;
    animation-timing-function: ease;
    animation-direction: normal;
    animation-fill-mode: forwards;
    transform-origin: center;
  }
  #cs-navigation .cs-line2 {
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    transition: top 0.3s, left 0.3s, transform 0.5s;
    animation-duration: 0.7s;
    animation-timing-function: ease;
    animation-direction: normal;
    animation-fill-mode: forwards;
  }
  #cs-navigation .cs-line3 {
    bottom: 0;
    transition: bottom 0.3s, opacity 0.3s;
  }
  #cs-navigation .cs-ul-wrapper {
    width: 100%;
    height: auto;
    padding-bottom: 2.4em;
    background-color: #fff;
    box-shadow: inset rgba(0, 0, 0, 0.2) 0px 8px 24px;
    opacity: 0;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: -1;
    overflow: hidden;
    transform: scaleY(0);
    transition: transform 0.4s, opacity 0.3s;
    transform-origin: top;
  }
  #cs-navigation .cs-ul {
    width: 100%;
    height: auto;
    max-height: 65vh;
    margin: 0;
    padding: 3rem 0 0 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 1.25rem;
    overflow: scroll;
    
  }
  #cs-navigation .cs-li {
    text-align: center;
    list-style: none;
    width: 100%;
    margin-right: 0;
    opacity: 0;
    /* transition from these values */
    transform: translateY(-4.375rem);
    transition: transform 0.6s, opacity 0.9s;
    
  }
  #cs-navigation .cs-li:nth-of-type(1) {
    transition-delay: 0.05s;
  }
  #cs-navigation .cs-li:nth-of-type(2) {
    transition-delay: 0.1s;
  }
  #cs-navigation .cs-li:nth-of-type(3) {
    transition-delay: 0.15s;
  }
  #cs-navigation .cs-li:nth-of-type(4) {
    transition-delay: 0.2s;
  }
  #cs-navigation .cs-li:nth-of-type(5) {
    transition-delay: 0.25s;
  }
  #cs-navigation .cs-li:nth-of-type(6) {
    transition-delay: 0.3s;
  }
  #cs-navigation .cs-li:nth-of-type(7) {
    transition-delay: 0.35s;
  }
  #cs-navigation .cs-li:nth-of-type(8) {
    transition-delay: 0.4s;
  }
  #cs-navigation .cs-li:nth-of-type(9) {
    transition-delay: 0.45s;
  }
  #cs-navigation .cs-li:nth-of-type(10) {
    transition-delay: 0.5s;
  }
  #cs-navigation .cs-li:nth-of-type(11) {
    transition-delay: 0.55s;
  }
  #cs-navigation .cs-li:nth-of-type(12) {
    transition-delay: 0.6s;
  }
  #cs-navigation .cs-li:nth-of-type(13) {
    transition-delay: 0.65s;
  }
  #cs-navigation .cs-li-link {
    /* 16px - 24px */
    font-size: clamp(1.2rem, 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;
    display: none;
    position: absolute;
    bottom: -0.125rem;
    left: 0;
  }
  #cs-navigation .cs-li-link.cs-active:before {
    display: block;
  }
  #cs-navigation .cs-button-solid {
    display: none;
  }

   #cs-navigation .cs-container {
    position: relative; /* anchor absolute logo */
  }
  
}
/*-- -------------------------- -->
<---     Desktop Navigation     -->
<--- -------------------------- -*/
/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #cs-navigation {
    width: 100%;
    /* prevents padding and border from affecting height and width */
    box-sizing: border-box;
    padding: 0 1rem;
    background-color: #fff;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    position: relative;
    z-index: 10000;
  }
  #cs-navigation .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1.5rem;
  }
  #cs-navigation .cs-toggle {
    display: none;
  }
  
  #cs-navigation .cs-ul {
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    /* 20px - 36px */
    gap: clamp(1.25rem, 2.6vw, 2.25rem);
    padding-right: 3rem;
  }
  #cs-navigation .cs-li {
    list-style: none;
    padding: 2rem 0;
    /* prevent flexbox from squishing it */
    flex: none;
  }
  #cs-navigation .cs-li-link {
    /* 14px - 16px */
    font-size: clamp(0.875rem, 1vw, 1rem);
    line-height: 1.5em;
    text-decoration: none;
    margin: 0;
    color: var(--bodyTextColor);
    display: block;
    position: relative;
  }
  #cs-navigation .cs-li-link:hover:before {
    width: 100%;
  }
  #cs-navigation .cs-li-link.cs-active:before {
    width: 100%;
  }
  #cs-navigation .cs-li-link:before {
    /* active state underline */
    content: "";
    width: 0%;
    height: 2px;
    background: var(--primary);
    opacity: 1;
    display: block;
    position: absolute;
    bottom: 0rem;
    left: 0;
    transition: width 0.3s;
  }
  #cs-navigation .cs-button-solid {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;

    box-sizing: border-box;
    min-width: 9.375rem;
    min-height: 52px;
    padding: 0.9rem 1.5rem;
    margin: 0;

    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;

    color: #ffffff;
    background: linear-gradient(180deg, #e01a1f 0%, #b81216 100%);

    border: none;
    border-radius: 14px;

    box-shadow:
        0 10px 24px rgba(192, 21, 26, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);

    cursor: pointer;
    position: relative;
    z-index: 1;
  }
}
                                

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

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #hero-1618 {
    padding: var(--sectionPadding);
    /* 200px - 300px - leaving extra space for the navigation */
    padding-top: clamp(12.5rem, 31.95vw, 18.75rem);
    position: relative;
    z-index: 1;
    padding-bottom: 0;
  }
  #hero-1618 .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    /* 60px - 180px */
    gap: clamp(3.75rem, 13vw, 11.25rem);
  }
  #hero-1618 .cs-content {
    /* set text align to left if content needs to be left aligned */
    text-align: left;
    width: 100%;
    max-width: 48.75rem;
    display: flex;
    flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    align-items: flex-start;
  }
  #hero-1618 .cs-topper {
    /* 13px - 16px */
    font-size: 1.75rem;
    font-weight: 500;
    line-height: 1.2em;
    letter-spacing: 0.1em;
    padding-top: 1rem;
    text-align: left;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
    color: var(--bodyTextColorWhite);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    padding-bottom: 1rem;
  }
  
  #hero-1618 .cs-title {
    /* 39px - 61px */
    font-size: clamp(2.4375rem, 6.4vw, 3.8125rem);
    font-weight: 700;
    line-height: 1.2em;
    text-align: inherit;
    max-width: 100%;
    margin: 0 0 0 0;
    color: #fff;
    position: relative;
  }
  
  #hero-1618 .cs-card-group {
    margin: 0;
    padding: 0;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    /* 16px - 20px */
    gap: clamp(1rem, 2.3vw, 1.25rem);
  }
  #hero-1618 .cs-item {
    width: 100%;
    text-align: center;
    list-style: none;
    margin: 0;
    /* 24px - 32px */
    padding: clamp(1.5rem, 3vw, 2rem);
    background-color: #fff;
    box-shadow: 0px 12px 80px 0px rgba(26, 26, 26, 0.08);
    /* prevents padding 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;
     border-radius: 16px;
  }
  #hero-1618 .cs-icon {
    width: 5rem;
    height: auto;
    margin: 0 0 1.5rem 0;
  }
  #hero-1618 .cs-h3 {
    /* 20px - 25px */
    font-size: clamp(1.25rem, 2.5vw, 1.5625rem);
    line-height: 1.2em;
    font-weight: bold;
    text-align: inherit;
    margin: 0 0 1rem 0;
    color: var(--headerColor);
  }
  #hero-1618 .cs-item-text {
    /* 14px - 16px */
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    line-height: 1.5em;
    max-width: 28.125rem;
    margin: 0;
    padding: 0;
    color: var(--bodyTextColor);
  }
  #hero-1618 .cs-background {
    width: 100%;
    height: 55%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -2;
  }
  #hero-1618 .cs-background:before {
    /* Overlay */
    content: '';
    width: 100%;
    height: 100%;
    background: #111926;
    opacity: .8;
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    z-index: 1;
    /* prevents the cursor from interacting with it */
    pointer-events: none;
  }
  #hero-1618 .cs-background img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    /* makes the top of the image start at the top of the parent */
    object-position: top;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #hero-1618 {
    padding-bottom: 0;
  }
  #hero-1618 .cs-container {
    align-items: flex-start;
  }
  #hero-1618 .cs-content {
    text-align: left;
    margin-left: 0;
    align-items: flex-start;
  }
  #hero-1618 .cs-item {
    grid-column: span 4;
  }
  #hero-1618 .cs-background {
    height: 87%;
  }
  #hero-1618 .cs-background:before {
    background: linear-gradient(90deg, #111926 21.41%, rgba(17, 25, 38, 0.72) 34.98%, rgba(17, 25, 38, 0) 62.53%);
    opacity: 1;
  }
}
/* Large Desktop Parallax Effect - 100px */
@media only screen and (min-width: 100rem) {
  #hero-1618 .cs-background {
    background: url("/Images/overhaul image mock-up 1.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* creates the parallax effect */
    background-attachment: fixed;
  }
  #hero-1618 .cs-background img {
    display: none;
  }
}

/*-- -------------------------- -->
<---      Hero - Red Banner     -->
<--- -------------------------- -*/             

/* Mobile - 768px */
@media only screen and (min-width: 48rem) {
    #hero-1618::after {

    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);

    width: 100vw;        /* full screen width */
    height: 10%;         /* 1/4 of card height visually */
    top: 83%;            /* start from middle */
    transform: translate(-50%, -50%);

    background-color: #C0151A;
    z-index: 0;
    pointer-events: none;
    }

    /* Base hero setup */
    #hero-1618{
      position: relative;
      overflow: visible;
    }

    /* Ensure cards stay above the band */
    #hero-1618 .cs-card-group {
      position: relative;
      z-index: 2;
    }
  
}

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

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #contact-1389 {
      padding: var(--sectionPadding);
        
      position: relative;
      z-index: 1;

      position: relative;
      background-image: url("contact section background opt.png");
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      padding-top: 2rem;
    }

  /* Ensure all section content sits above the overlay */
  #contact-1389 .cs-container {
      position: relative;
      z-index: 1;
  }
    #contact-1389 .cs-container {
        width: 100%;
        /* changes to 1280px at tablet */
        max-width: 36.5rem;
        margin: auto;
        display: flex;
        justify-content: center;
        align-items: stretch;
        flex-direction: column;
        column-gap: auto;
        /* 48px - 64px */
        gap: clamp(2rem, 3vw, 3rem);
        position: relative;
    }
    #contact-1389 .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;

        background-image: url("contact info background.png");
        background-size: cover;
        background-repeat: no-repeat;
        border-radius: 1rem;
        padding: clamp(1.5rem, 5.18vw, 3rem) clamp(1rem, 4vw, 3rem);
    }

    #contact-1389 .cs-title {
        max-width: 23ch;
    }
    #contact-1389 .cs-text {
        margin-bottom: 1rem;
    }
    #contact-1389 .cs-text:last-of-type {
        margin-bottom: 2rem;
    }
    #contact-1389 .cs-ul {
        text-align: left;
        width: 100%;
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        position: relative;
        padding-top: 1rem;
    }
    #contact-1389 .cs-li {
        list-style: none;
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 1.25rem;
    }
     #contact-1389 .cs-li img {
        width: 5rem;
        height: auto;
    }
    #contact-1389 .cs-li:hover img {
        transform: scale(1.5);
    }
    #contact-1389 .cs-header {
        font-size: 1.25rem;
        font-weight: 700;
        line-height: 1.2em;
        margin-bottom: 0.75rem;
        color: var(--bodyTextColorWhite);
        display: block;
    }
    #contact-1389 .cs-link {
      font-size: 1rem;
      line-height: 1.5em;
      text-decoration: none;
      color: var(--bodyTextColorWhite);
      display: block;
      position: relative;
    }

    #contact-1389 .cs-icon-wrapper {
        width: 3.75rem;
        height: 3.75rem;
        margin: 0;
        border-radius: 50%;
        border: 1px solid #bababa;
        display: flex;
        justify-content: center;
        align-items: center;
        /* prevents flexbox from squishing it */
        flex: none;
        transition: transform 0.3s;
    }
    #contact-1389 .cs-icon {
        width: 1.5rem;
        height: auto;
        display: block;
    }
    #contact-1389 .cs-form {
        width: 100%;
        max-width: 39.375rem;
        /* 24px - 48px top and bottom */
        /* 16px - 48px left and right */
        padding: clamp(1.5rem, 5.18vw, 3rem) clamp(1rem, 4vw, 3rem);
        /* prevents flexbox from affecting height and width */
        box-sizing: border-box;
        background-color: #fff;
        border-radius: 1rem;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        align-items: center;
        gap: 0.75rem;
    }
    #contact-1389 .cs-h3 {
        /* 20px - 39px */
        font-size: clamp(1.25rem, 3vw, 2.4375rem);
        line-height: 1.2em;
        font-weight: 700;
        margin: 0 0 0.25rem 0;
        
        align-self: center;
        text-align: center;
      
    }
    #contact-1389 .cs-label {
        /* 14px - 16px */
        font-size: clamp(0.875rem, 1.5vw, 1rem);
        width: 100%;
        color: var(--headerColor);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 0.25rem;
    }
    #contact-1389 .cs-input {
        font-size: 1rem;
        width: 100%;
        height: 3.5rem;
        padding: 0;
        padding-left: 1.5rem;
        color: var(--headerColor);
        background-color: #f7f7f7;
        border-radius: 0.5rem;
        border: none;
        /* prevents padding from adding to height and width */
        box-sizing: border-box;
    }
    #contact-1389 .cs-input::placeholder {
        color: #7d799c;
        opacity: 0.6;
    }
    #contact-1389 .cs-textarea {
        min-height: 7.5rem;
        padding-top: 1.5rem;
        margin-bottom: 0.75rem;
        font-family: inherit;
    }
    #contact-1389 .cs-button-solid {
        font-size: 1rem;
        line-height: 3.5rem;
        text-decoration: none;
        font-weight: 700;
        overflow: hidden;
        margin: 0;
        color: #fff;
        padding: 0 3rem;
        border-radius: 1.875rem;
        background-color: var(--primary);
        display: inline-block;
        position: relative;
        z-index: 1;
        transition: color 0.3s;
    }
    #contact-1389 .cs-button-solid:before {
        content: "";
        position: absolute;
        display: block;
        height: 100%;
        width: 0%;
        background: #1a1a1a;
        opacity: 1;
        top: 0;
        left: 0;
        z-index: -1;
        transition: width 0.3s;
    }
    #contact-1389 .cs-button-solid:hover {
        color: var(--primary);
    }
    #contact-1389 .cs-button-solid:hover:before {
        width: 100%;
    }
    #contact-1389 .cs-submit {
        width: 100%;
        min-width: 12.5rem;
        border: none;
    }
    #contact-1389 .cs-submit:hover {
        color: #fff;
        cursor: pointer;
    }

    #contact-1389 form .cs-h3 {
    width: 100%;
    text-align: center;
    background: none;
    color: var(--headerColor);
    }

    #contact-1389 .cs-h3 {
        position: relative;
        z-index: 1;

        padding: 0;
        min-height: 0px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #ffffff;
        padding-block: 1.5rem;
    }

    #contact-1389 .cs-content .cs-h3::before {
        content: "";
        position: absolute;
        left: 50%;
        right: 50%;
        bottom: 0;
        top: -100vh;

        margin-left: -50vw;
        margin-right: -50vw;

        background: url("contact h3 background.png");
        background-size: 200% 200%;
        background-position: 45% 25%;
        z-index: -1;
    }

    #contact-1389 .cs-content,
    #contact-1389 form {
        position: relative;
        overflow: hidden;
    }

    #contact-1389 .cs-content {
      padding-top: 0; /* adjust */
    }

    #contact-1389 .cs-form {
      padding-top: 0; /* adjust */
    }

}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #contact-1389 .cs-container {
        max-width: 80rem;
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }
    #contact-1389 .cs-content {
        width: 47%;
        /* prevents flexbox from squishing it */
        flex: none;
        /* sends it to the right in the 2nd position */
        order: 1;
    }
    #contact-1389 .cs-submit {
        width: auto;
    }

    #contact-1389 .cs-form { order: 2; }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
    #contact-1389 .cs-form {
        width: 46%;
        max-width: 36.125rem;
    }
    #contact-1389 .cs-submit {
        width: auto;
    }
}
/* Large Desktop - 1500px */
@media only screen and (min-width: 93.75rem) {
    #contact-1389 .cs-graphic {
        display: block;
    }
}

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

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

    #sbs-97 .cs-title {
        max-width: 17ch;
    }
    #sbs-97 .cs-text {
        margin-bottom: 1rem;
    }
    #sbs-97 .cs-text:last-of-type {
        margin-bottom: 2rem;
    }
    #sbs-97 .cs-ul {
        margin: 0 0 2rem 0;
        /* 16px - 20px */
        padding-left: clamp(1rem, 2vw, 1.25rem);
    }
    #sbs-97 .cs-li {
        list-style: none;
        /* 14px - 18px */
        font-size: clamp(0.875rem, 1.3vw, 1.125rem);
        line-height: 1.5em;
        /* 8px - 12px */
        margin-bottom: clamp(0.5rem, 1vw, 0.75rem);
        color: var(--bodyTextColor);
        position: relative;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        font-size: var(--bodyFontSize);
    }
    #sbs-97 .cs-li:last-of-type {
        margin-bottom: 0;
    }
    
    #sbs-97 .cs-picture {
        width: 100%;
        margin: 0;
        position: relative;
        display: block;
        /* width divided by height */
        aspect-ratio: 0.78095238;
    }
    #sbs-97 .cs-picture img {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #sbs-97 .cs-container {
        max-width: 80rem;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        /* 60px - 108px */
        gap: clamp(3.75rem, 7.8vw, 6.75rem);
    }
    #sbs-97 .cs-picture {
        /* 284px - 522px */
        width: clamp(17.75rem, 39.3vw, 32.625rem);
        /* 492px - 740px */
        height: clamp(30.75rem, 60.9vw, 46.25rem);
        /* prevents flexbox from squishing it */
        flex: none;
    }
}

/*-- -------------------------- -->
<---            Steps           -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #steps-2127 {
    padding: var(--sectionPadding);
    overflow: hidden;
    position: relative;
    z-index: 1;
    margin-bottom: 2rem;
  }
  #steps-2127 .cs-container {
    width: 100%;
    max-width: 44rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
    background-image:
    linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.25)),
    url("red canvas.jpg");
    background-size:auto;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 16px;
    padding: clamp(2rem, 5vw, 3rem) clamp(1rem, 4vw, 2rem);
  }
  #steps-2127 .cs-card-group {
    width: 100%;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
  }
  #steps-2127 .cs-item {
    text-align: center;
    list-style: none;
    width: 100%;
    /* prevents padding and border from affecting height and width */
    box-sizing: border-box;
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    grid-column: span 12;
    position: relative;
    z-index: 1;
    /* bottom border */
  }
  #steps-2127 .cs-item:first-of-type {
    padding-top: 0;
  }
  #steps-2127 .cs-item:last-of-type {
    padding-bottom: 0;
  }
  #steps-2127 .cs-item:last-of-type::after {
    display: none;
  }
  #steps-2127 .cs-item::after {
    content: "";
    width: 100%;
    height: 1px;
    /* to change the color of the bottom border, adjust the second color (at 50%). the first and third will blend the color to transparent */
    /* note you'll also have to change the color in the tablet media query when the lines go vertical */
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #bababa 50%, rgba(255, 255, 255, 0) 100%);
    position: absolute;
    bottom: 0;
    left: 0;
  }
  #steps-2127 .cs-icon {
    /* 48px - 60px */
    height: 5rem;
    width: auto;
    /* 24px - 40px */
    margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
    display: block;
    fill: rgba(0, 0, 0, 0.6);
  }
  #steps-2127 .cs-h3 {
    /* 20px - 25px */
    font-size: 1.75rem;
    font-weight: bold;
    line-height: 1.2em;
    margin: 0 0 1rem 0;
    color: var(--bodyTextColorWhite);
  }
  #steps-2127 .cs-item-text {
    /* 14px - 20px */
    font-size: clamp(0.875rem, 1.5vw, 1.25rem);
    line-height: 1.5em;
    text-decoration: none;
    max-width: 18.75rem;
    padding: 0;
    color: var(--bodyTextColorWhite);
  }

  #steps-2127 .cs-li{
    font-size:var(--bodyFontSize)
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #steps-2127{
    padding-top:0;
    padding-bottom: 0;
  }
  #steps-2127 .cs-container {
    max-width: 107.5rem;
  }
  #steps-2127 .cs-card-group {
    row-gap: 3rem;
  }
  #steps-2127 .cs-item {
    padding: 0 1rem;
    grid-column: span 3;

  }

  #steps-2127 .cs-item::after {
    width: 1px;
    height: 100%;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, #bababa 50%, rgba(255, 255, 255, 0) 100%);
    right: 0;
    left: initial;
  }
  #steps-2127 .cs-h3 {
    max-width: 13ch;
  }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #steps-2127 .cs-item {
    /* 20px - 30px */
    padding: 0 clamp(1.25rem, 2.5vw, 1.875rem);
  }
  #steps-2127 .cs-h3 {
    font-size: 2.75rem;
  }
}                       
/*-- -------------------------- -->
<---     Section Toppers        -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #section-topper-1 {
    padding: clamp(2.25rem, 4vw, 3.5rem) 1rem;
    position: relative;
    overflow: hidden;
    padding-top: 2rem;
  }

  #section-topper-1 .ghws-inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
  }

  .ghws-section {
  background-color: #fff;
  }

  #section-topper-1 .ghws-title {
    margin: 0 0 0.75rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 4.5rem;
    line-height: 1.05;
    color: #C0151A;
    text-shadow: 0 10px 18px rgba(0, 0, 0, 0.18);
  }

  #section-topper-1 .ghws-subtext {
    margin: 0;
    font-size: 2rem;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.4;
  }
}

/* Mobile - 768px */
@media only screen and (min-width: 48rem) {
  #section-topper-1 {
    padding-top: 4rem;
  }

  
}

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

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #cs-footer-1781 {
    padding: var(--sectionPadding);
    /* 30px - 50px */
    padding-bottom: clamp(1.875rem, 5vw, 3.125rem);
    background-color: #1a1a1a;
    position: relative;

    background: url("footer background.png");
    background-size: cover;
    background-position: 0% 0%;
    background-repeat: no-repeat;
  }
  #cs-footer-1781 .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    column-gap: 4.25rem;
  }
  #cs-footer-1781 .cs-logo-group {
    /* takes up all the space, lets the other ul's wrap below it */
    width: 100%;
    /* 40px - 60px */
    margin: 0 0 clamp(2.5rem, 7vw, 3.75rem);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: center;
  }
  #cs-footer-1781 .cs-logomark {
    width: auto;
    height: 15rem;
  }

  /* Ensure the logo image is centered inside its column */
  #cs-footer-1781 .cs-logo-group {
    text-align: center;
  }
  #cs-footer-1781 .cs-logo-group .cs-logomark {
    display: block;
    margin: 0 auto;
  }

  #cs-footer-1781 .cs-logo-group .cs-text { 
    padding-bottom: 1rem;
  }

  #cs-footer-1781 .cs-title {
    /* 31px - 39px */
    font-size: clamp(1.9375rem, 7vw, 3.0625rem);
    max-width: 23ch;
    margin: 3rem 0 0.5rem;
    color: var(--bodyTextColorWhite);
  }
  #cs-footer-1781 .cs-outline {
    /* 31px - 39px */
    font-size: clamp(1.9375rem, 1vw, 2.4375rem);
    text-transform: uppercase;
    font-weight: 900;
    line-height: 1.2em;
    color: #1a1a1a;
    /* text outline styles */
    -webkit-text-stroke: 1px var(--primary);
  }
  #cs-footer-1781 .cs-header {
    font-size: 1.5625rem;
    font-weight: 700;
    line-height: 1.5em;
    margin: 0 0 1rem 0;
    color: var(--bodyTextColorWhite);
    display: inline-block;;
    position: relative;
  }
  #cs-footer-1781 .cs-header::after {
  content: "";
  display: block;
  width: 100%;        
  height: 3px;          
  background-color: var(--primary); 
  margin-top: 0.5rem;   
}
  #cs-footer-1781 .cs-logo {
    width: 13.5625rem;
    height: auto;
  }
  #cs-footer-1781 .cs-text {
    max-width: 25.75rem;
    /* 14px - 16px */
    color: var(--bodyTextColorWhite);
    opacity: 0.8;
    margin-bottom: 1rem;
  }
  #cs-footer-1781 .cs-ul-wrapper {
    margin: 0 0 3.75rem;
  }
  #cs-footer-1781 .cs-ul {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  #cs-footer-1781 .cs-ul-contact {
    /* 32px - 40px */
    margin: .25rem 0 0;
    gap: 0.75rem;
  }
  #cs-footer-1781 .cs-li {
    list-style: none;
  }
  #cs-footer-1781 .cs-contact {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.2em;
    text-decoration: none;
    color: var(--bodyTextColorWhite);
    position: relative;
    display: inline-block;

  }
  #cs-footer-1781 .cs-link {
    /* 14px - 16px */
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    line-height: 1.5em;
    text-align: left;
    text-decoration: none;
    color: var(--bodyTextColorWhite);
    opacity: 0.8;
    display: inline-flex;
    position: relative;
    align-items: flex-start;
    gap: 0.5rem;
    transition: color 0.3s;
  } 
  #cs-footer-1781 .cs-bottom {
    width: 100%;
    max-width: 80rem;
    /* 28px - 40px */
    margin: 0 auto;
    padding-top: clamp(1.75rem, 3vw, 2.5rem);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem;
  }
  #cs-footer-1781 .cs-credit,
  #cs-footer-1781 .cs-bottom-link,
  #cs-footer-1781 .cs-credit-link {
    /* 14px - 16px */
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    line-height: 1.5em;
    text-decoration: none;
    width: auto;
    margin: 0;
    color: var(--bodyTextColorWhite);
    opacity: 0.8;
    display: inline-block;
    position: relative;
    transition: color 0.3s;
  }
  #cs-footer-1781 .cs-credit-link {
    /* 14px - 16px */
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    line-height: 1.5em;
    text-decoration: none;
    width: auto;
    margin: 0;
    color: inherit;
    display: inline-block;
    position: relative;
  }
  
  #cs-footer-1781 .cs-bottom-links {
    display: flex;
  }
  #cs-footer-1781 .cs-bottom-link {
    display: flex;
    align-items: center;
  }
  

/* Footer-only .cs-link underline to match navigation links */
#cs-footer-1781 .cs-link:before {
  content: "";
  width: 0%;
  height: 2px;
  background: var(--primary);
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: width 0.3s;
}
#cs-footer-1781 .cs-link:hover:before {
  width: 100%;
}

/* Underline for footer contact anchors (sitemap contact list) */
#cs-footer-1781 .cs-ul.cs-ul-contact .cs-contact:before {
  content: "";
  width: 0%;
  height: 2px;
  background: var(--primary);
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: width 0.3s;
}
#cs-footer-1781 .cs-ul.cs-ul-contact .cs-contact:hover:before {
  width: 100%;
}

/* Also apply underline to anchors inside the footer bottom bar */
#cs-footer-1781 .cs-bottom a,
#cs-footer-1781 .cs-bottom .cs-bottom-link {
  position: relative;
  text-decoration: none;
}
#cs-footer-1781 .cs-bottom a:before,
#cs-footer-1781 .cs-bottom .cs-bottom-link:before {
  content: "";
  width: 0%;
  height: 2px;
  background: var(--primary);
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: width 0.3s;
}
#cs-footer-1781 .cs-bottom a:hover:before,
#cs-footer-1781 .cs-bottom .cs-bottom-link:hover:before {
  width: 100%;
}
  
  /* Separator between bottom links implemented with a left border to avoid :before conflicts */
  #cs-footer-1781 .cs-bottom-link + .cs-bottom-link {
    border-left: 1px solid currentColor;
    padding-left: 0.75rem;
    margin-left: 0.75rem;
  }
}

/* Desktop - 1024px */
@media only screen and (min-width: 68rem) {
  #cs-footer-1781 .cs-container {
    justify-content: flex-end;
  }
  #cs-footer-1781 .cs-logo-group {
    width: fit-content;
    margin: 0;
    
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: center;
  }
  #cs-footer-1781 .cs-ul-wrapper {
    margin: 0;
  }
  #cs-footer-1781 .cs-bottom {
    /* 60px - 80px */
    margin-top: clamp(3.75rem, 6vw, 5rem);
  }
}


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

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #sbs-2295 {
    padding: var(--sectionPadding);
    padding-top: 0;
    background-color: #fff;
    overflow: hidden;
    position: relative;
    z-index: 1;
  }
  #sbs-2295 .cs-container {
    width: 100%;
    /* changes to 1280px at tablet */
    max-width: 44rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 4vw, 4rem);
  }
  #sbs-2295 .cs-image-group {
    /* scales the whole section down and ties the font size to the vw and stops at 75% of the vale of 1em, changes at desktop */
    font-size: min(1.98vw, .826rem);
    /* everything inside this box is in ems so we can scale it all down proportionally with a font size */
    width: 46.125em;
    height: 36.125em;
    order: -1;
    position: relative;
    z-index: 1;
    /* prevents flexbox from squishing it */
    flex: none;
  }
  #sbs-2295 .cs-picture {
    width: 100%;
    height: 100%;
    border: 1em solid var(--bodyTextColorWhite);
    display: block;
  }
  #sbs-2295 .cs-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
  }
  #sbs-2295 .cs-picture-wrapper1 {
    width: 25.75em;
    height: 28.5625em;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: absolute;
    top: 0;
    left: 0;
  }
  #sbs-2295 .cs-picture-wrapper2 {
    width: 25.8125em;
    height: 29.625em;
    display: flex;
    flex-direction: column-reverse;
    gap: 1rem;
    position: absolute;
    right: 0;
    bottom: 0;
  }
  #sbs-2295 .cs-tag {
    /* 14px - 24px */
    font-size: clamp(0.875rem, 1.4vw, 1.5rem);
    font-weight: 700;
    line-height: 1.2em;
    text-align: center;
    color: var(--headerColor);
  }
  #sbs-2295 .cs-arrow {
    width: 9.25em;
    height: 3.375em;
    position: absolute;
    top: 15.125em;
    left: 15.9375em;
    transform: rotate(30deg);
  }
  #sbs-2295 .cs-content {
    /* set text align to center if content needs to be centrally aligned */
    text-align: left;
    width: 100%;
    max-width: 36.625rem;
    display: flex;
    flex-direction: column;
    /* aligns content to the left, set to center to centrally align */
    align-items: flex-start;
  }
  #sbs-2295 .cs-title {
    max-width: 30ch;
  }
  #sbs-2295 .cs-text {
    margin-bottom: 1rem;
  }
  #sbs-2295 .cs-text:last-of-type {
    margin-bottom: 1.5rem;
  }
  #sbs-2295 .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: 0;
    padding: 0 1.5rem;
    background-color: var(--primary);
    color: var(--headerColor);
    display: inline-block;
    position: relative;
    z-index: 1;
  }

  
  #sbs-2295 .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-2295 .cs-button-solid:hover:before {
    width: 100%;
  }
  #sbs-2295 .cs-h3 {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.5em;
    margin: 0;
    color: var(--headerColor);
  }
  #sbs-2295 .cs-ul {
    margin: 0.75rem 0 2rem;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  #sbs-2295 .cs-li {
    font-size: var(--bodyFontSize);
    line-height: 1.5em;
    list-style: none;
    /* 20px - 24px */
    padding-left: clamp(1.25rem, 3vw, 1.5rem);
    color: var(--bodyTextColor);
    position: relative;
  }
  #sbs-2295 .cs-li strong {
    color: #1a1a1a;
  }
  #sbs-2295 .cs-li::before {
    content: "";
    width: 0.5rem;
    height: 0.5rem;
    margin-top: 0.5rem;
    background-color: var(--secondary);
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    transform: rotate(45deg);
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #sbs-2295 .cs-container {
    max-width: 80rem;
  }
  #sbs-2295 .cs-image-group {
    order: initial;
  }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #sbs-2295 .cs-container {
    flex-direction: row;
    align-items: stretch;
  }
  #sbs-2295 .cs-image-group {
    font-size: min(1.03vw, 1rem);
    height: auto;
  }
  #sbs-2295 .cs-picture-wrapper1 {
    height: auto;
    bottom: 7.5625em;
  }
  #sbs-2295 .cs-picture-wrapper2 {
    height: auto;
    top: 6.5em;
  }
}
             
/*-- -------------------------- -->
<---           Hero             -->
<--- -------------------------- -*/

/* Mobile */
@media only screen and (min-width: 0rem) {
   #hero-2344 {
    padding: var(--sectionPadding);
    /* 120px 0 160px */
    padding-top: clamp(7.5rem, 12vw, 10rem);
    position: relative;

    background-image:url("white canvas.jpg");
    background-size: cover;
    background-position: center;
  }

  #hero-2344::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 75%;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.40), rgba(0, 0, 0, 0.40)),
    url("black canvas.jpg");
  background-size: cover;
  background-position: center;
  z-index: 0;
}

#hero-2344 > * {
  position: relative;
  z-index: 1;
}

  #hero-2344 .cs-container {
    width: 100%;
    max-width: 112.5rem;
    margin: auto;
    /* 420px - 560px */
    padding-top: clamp(26.25rem, 65vw, 35rem);
    position: relative;
    z-index: 1;
  }
  #hero-2344 .cs-container:before {
    /* gradient Overlay */
    content: '';
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.92) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    opacity: 1;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
  #hero-2344 .cs-content {
    /* 24px - 40px top & bottom */
    /* 16px - 40px left & right */
    padding: clamp(1.5rem, 4vw, 2.5rem) clamp(1rem, 4vw, 2.5rem);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    row-gap: 1rem;
  }
  #hero-2344 .cs-flex {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
  #hero-2344 .cs-flex2 {
    max-width: 33.75rem;
  }
  #hero-2344 .cs-title {
    /* 39px - 90px */
    font-size: clamp(2.4375rem, 6vw, 5.625rem);
    margin-bottom: 0;
    color: var(--bodyTextColorWhite);
  }
  #hero-2344 .cs-text {
    color: var(--bodyTextColorWhite);
    margin-bottom: 2rem;
  }
  #hero-2344 .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: 0;
    padding: 0 1.5rem;
    background-color: var(--primary);
    color: var(--bodyTextColorWhite);
    display: inline-block;
    position: relative;
    z-index: 1;
  }
  #hero-2344 .cs-button-solid:before {
    content: "";
    width: 0%;
    height: 100%;
    background: #000;
    opacity: 1;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: width 0.3s;
  }
  #hero-2344 .cs-button-solid:hover:before {
    width: 100%;
  }
  #hero-2344 .cs-button-solid {
    align-self: flex-start;
  }
  #hero-2344 .cs-background {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    z-index: -2;
  }
  #hero-2344 .cs-background img {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #hero-2344 .cs-content {
    flex-direction: row;
    justify-content: space-between;
    /* 64px - 100px */
    gap: clamp(4rem, 10vw, 6.25rem);
  }
}

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

/* Mobile */
@media only screen and (min-width: 0rem) {
  #services-2344 {
    padding: var(--sectionPadding);
    padding-top: 0;
    padding-bottom: 0;

    background-image:url("white canvas.jpg");
    background-size: cover;
    background-position: center;
  }

  #services-2344 .cs-card-group {
    width: 100%;
    max-width: 112.5rem;
    margin: 0 auto;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    /* 16px - 20px, changes to 100px at large desktop 1300px */
    column-gap: clamp(1rem, 3vw, 1.25rem);
    row-gap: 2rem;
  }
  #services-2344 .cs-item {
    list-style: none;
    text-align: left;
    margin: 0;
    padding: 0;
    grid-column: span 12;
  }
  #services-2344 .cs-link {
    text-decoration: none;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  #services-2344 .cs-h2 {
    /* 20px - 25px */
    font-size: clamp(1.25rem, 3vw, 1.5625rem);
    text-align: inherit;
    line-height: 1.2em;
    font-weight: 700;
    margin: 0;
    padding-bottom: 1rem;
    height: 100%;
    color: var(--headerColor);
    border-bottom: 1px solid #E3DDD9;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
  }
  #services-2344 .cs-icon {
    width: rem;
    height: auto;
    display: block;
  }
  #services-2344 .cs-item-text {
    font-size: 1rem;
    text-align: inherit;
    line-height: 1.5em;
    margin: 0;
    color: var(--bodyTextColor);
  }

  #services-2344 .cs-text {
    font-size: 1rem;
    width: 100%;
    max-width: 80rem;
    box-sizing: border-box;
    padding: 0 1rem;
    text-align: center;
    margin: 2rem auto;
  }

  #services-2344 .cs-button-solid {
    margin-top: 3rem;
    margin-bottom: 3rem;
  }



  #button-box-839,
  .button-box-839{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding-top: 1rem;
  }
}

.cs-button-solid {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;

  padding: 0 3rem;
  min-height: 52px;
  min-width: 9.375rem;

  background-color: var(--primary);
  color: #ffffff;
  letter-spacing: 0.04em;
  text-transform: none;
  text-decoration: none;
  border: none;

  position: relative;
  z-index: 1;
  overflow: hidden;

  cursor: pointer;
  box-sizing: border-box;
  transition: color 0.3s, transform 0.12s;

  color: #ffffff !important;
  background: linear-gradient(180deg, #e01a1f 0%, #b81216 100%) !important;
  border-radius: 1.1rem;
  padding: 0 3rem !important;
  min-height: 52px !important;
  min-width: 9.375rem !important;
  box-shadow: 0 10px 24px rgba(192, 21, 26, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.15) !important;
  
}
.cs-button-solid:before {
  content: "";
  position: absolute;
  display: block;
  height: 100%;
  width: 0%;
  background: #1a1a1a;
  top: 0;
  left: 0;
  z-index: -1;
  transition: width 0.3s;
}
.cs-button-solid:hover {
  color: var(--primary);
  transform: translateY(-1px);
}
.cs-button-solid:hover:before {
  width: 100%;
}

#button-box-839 .cs-button-solid {
  text-transform: uppercase;
}


/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #services-2344 .cs-item {
    grid-column: span 6;
  }
}
/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #services-2344 .cs-item {
    grid-column: span 3;
  }
}
/* Large Desktop - 1300px */
@media only screen and (min-width: 81.25rem) {
  #services-2344 .cs-card-group {
    column-gap: 6.25rem;
  }
}
                                
                                
/*-- -------------------------- -->
<---    Our Mission Divider     -->
<--- -------------------------- -*/

/* Mobile */
@media only screen and (min-width: 0rem) {
  .section-divider {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    max-width: 90%;
    margin: 0 auto;
  }

  .section-divider::before,
  .section-divider::after {
    content: "";
    flex: 1;
    height: 5px;
    background-color: var(--primary);
  }

  .section-divider span {
    font-family: "Bebas Neue", sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--primary);
    white-space: nowrap;
  }

  #our-mission-undertext .cs-text, #contact-us-undertext .cs-text {
      font-size: 1.5rem;
      width: 100%;
      max-width: 80rem;
      box-sizing: border-box;
      padding: 0 1rem;
      text-align: center;
      margin: 2rem auto;
      font-weight: 600;
  }

  #contact-us-undertext .cs-text {
    color: var(--bodyTextColorWhite);
    padding-top: 0;
    margin-top: 0;
  }
}

/*-- -------------------------- -->
<---    Red Canvas Border       -->
<--- -------------------------- -*/

@media only screen and (min-width: 0rem) {
  #red-canvas-border{
    height: 4rem;
    width: 100%;

    background-image:
    linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.25)),
    url("red canvas.jpg");
    background-size: cover;
    background-position: center;
  }
}

@media only screen and (min-width: 48rem) {
  #red-canvas-border{
    height: 12rem;
    width: 100%;
    background-image:
    linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.25)),
    url("red canvas.jpg");
    background-size: cover;
    background-position: center;
  }
}

/*-- -------------------------- -->
<---        Number List         -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #list-1597 {
    width: 100%;
    /* 550px - 630px */
    max-width: clamp(34.375rem, 50vw, 39.375rem);
    padding: 0;
    /* 24px - 40px */
    margin: clamp(1.5rem, 4vw, 2.5rem) 0 clamp(1.75rem, 4vw, 2.5rem) 0;
    display: grid;
    align-items: center;
    gap: clamp(1rem, 4vw, 2.5rem);
  }
  #list-1597 .cs-item {
    list-style: none;
    /* prevents padding from affecting height and width */
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  #list-1597 .wrapper {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 0.625rem;
  }
  #list-1597 .cs-item-number img{
    
    
    position: relative;
        height: 1.5rem;
        width: 100%;
        object-fit: cover;
  }
  
  #list-1597 .cs-h3 {
    font-size: 1.25rem;
    line-height: 1.2em;
    font-weight: 700;
    margin: 0;
    color: var(--headerColor);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.5rem;
  }
  #list-1597 .cs-item-text {
    font-size: 0.875rem;
    line-height: 1.5em;
    margin: 0;
    color: var(--bodyTextColor);
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #list-1597 {
    grid-template-columns: repeat(12, 2fr);
  }
  #list-1597 .cs-item {
    grid-column: span 6;
  }
}

#sbs-2295, .off-white{
  background-color: #f7f7f7;
}

/*Skip Link*/
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


/* Mobile - 360px */
@media only screen and (min-width: 0) {
 #cs-navigation .cs-ghost-img{
    width: 10rem;
    position:absolute;
    top: 0;
    left: 5%;
    z-index: 1;
  } 
}
/* Tablet - 768px */
@media only screen and (min-width: 768px) {
 #cs-navigation .cs-ghost-img{
    width: 15rem;
    left: 5%;
  } 
}
/* Tablet - 1024px */
@media only screen and (min-width: 1024px) {
 #cs-navigation .cs-ghost-img{
    width: 20rem;
    left: 2%;
    top:0;
  } 
}

/* Large Desktop - 1440px */
@media only screen and (min-width: 1440px) {
 #cs-navigation .cs-ghost-img{
    width: 24rem;
    left: 5%;
  } 
}
/* Large Desktop - 2560px */
@media only screen and (min-width: 2560px) {
 #cs-navigation .cs-ghost-img{
    width: 24rem;
    position:absolute;
    top: 0;
    left: 25%;
    z-index: 1;
  } 
}
                       
.scroll-hide-image {
  position: absolute;
  top: 0;
  right: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.scroll-hide-image.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}          

/* Center ONLY the button in #sbs-2295 */
#sbs-2295 .cs-content .cs-button-solid {
  align-self: center;
}

/*-- -------------------------- -->
<---           Popup            -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #popup-2064 {
    max-width: 52.625rem;
    /* 16px - 48px*/
    padding: 2.5rem clamp(1rem, 7vw, 3rem);
    background-color: #f3fcfb;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    opacity: 0;
    border-radius: 1rem;
    visibility: hidden;
    position: fixed;
    right: 0;
    bottom: 1rem;
    z-index: 1400;
    transform: translateY(10rem);
    transition: transform 0.3s, opacity 0.3s;
  }
  #popup-2064.cs-show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  #popup-2064 .cs-container {
    display: flex;
    flex-direction: column;
  }
  #popup-2064 .cs-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  #popup-2064 .cs-close {
    width: 1.5rem;
    height: 1.5rem;
    margin-left: auto;
    padding: 0;
    background-color: rgba(0, 0, 0, 0);
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 1rem;
    right: 1rem;
    transition: transform 0.3s;
  }
  #popup-2064 .cs-close:hover {
    cursor: pointer;
    transform: rotate(90deg);
  }
  #popup-2064 .cs-h3 {
    /* 20px - 25px */
    font-size: clamp(1.25rem, 4vw, 1.5625rem);
    font-weight: 700;
    line-height: 1.2em;
    margin: 0 0 0.5rem;
    color: var(--headerColor);
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #popup-2064 .cs-content {
    flex-direction: row;
    align-items: flex-end;
  }
  #popup-2064 .cs-text {
    margin: 0;
  }
}
                                