/*-- -------------------------- -->
<---         CS-Content         -->
<--- -------------------------- -*/
/* Mobile */
@media only screen and (min-width: 0rem) {
  .cs-content-830 {
    display: flex;
    flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    align-items: center;
    width: 100%;
    /* set text align to left if content needs to be left aligned */
    text-align: center;
  }
  .cs-content-830 .cs-topper {
    display: block;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: var(--topperFontSize);
    line-height: 1.2em;
    font-weight: 700;
    color: var(--primary);
    text-align: inherit;
  }
  .cs-content-830 .cs-title {
    position: relative;
    /* removed at tablet */
    margin: 0 0 1rem 0;
    max-width: 20ch;
    font-size: var(--headerFontSize);
    line-height: 1.2em;
    font-weight: 900;
    color: var(--headerColor);
    text-align: inherit;
  }
  .cs-content-830 .cs-button-solid {
    /* prevents flexbox from squishing it */
    flex: none;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  .cs-content-830 {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    text-align: left;
  }
  .cs-content-830 .cs-title {
    margin: 0;
  }
}
/*-- -------------------------- -->
<---       Content List         -->
<--- -------------------------- -*/
@media only screen and (min-width: 0rem) {
  .list-1074 {
    display: flex;
    flex-direction: column;
    margin: 0 0 2rem 0;
    max-width: 39.375rem;
    /* clips the bullets to create the half circle */
    overflow: hidden;
    padding: 0;
  }
  .list-1074 .cs-li {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    margin: 0 0 0.5rem 0;
    list-style: none;
    color: var(--bodyTextColor);
    gap: 0.75rem;
  }
  .list-1074 .cs-li:before {
    /* bullet */
    content: "";
    display: block;
    border-radius: 50%;
    margin-top: 0.1875rem;
    /* make it overflow the parent by half it's width to make an eclipse */
    margin-left: -0.5rem;
    background: var(--primary);
    height: 1rem;
    width: 1rem;
    /* prevents flexbox from squishing it */
    flex: none;
  }
}
/* Dark Mode */
@media only screen and (min-width: 0rem) {
  body.dark-mode .list-1074 .cs-li {
    color: var(--bodyTextColorWhite);
  }
  body.dark-mode .list-1074 .cs-li:before {
    background-color: var(--secondary);
  }
}
/*-- -------------------------- -->
<---            CTA             -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #cta-1132 {
    z-index: 1;
    position: relative;
    background-color: var(--primary);
    overflow: hidden;
    padding: var(--sectionPadding);
    /* chnages at tablet */
    padding-bottom: 20vw;
  }
  #cta-1132 .cs-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: auto;
    max-width: 80rem;
    width: 100%;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
  }
  #cta-1132 .cs-topper {
    color: var(--bodyTextColorWhite);
  }
  #cta-1132 .cs-content {
    display: flex;
    flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    align-items: center;
    width: 100%;
    /* set text align to left if content needs to be left aligned */
    text-align: center;
  }
  #cta-1132 .cs-title {
    /* 28px - 40px */
    margin: 0 0 clamp(1.75rem, 3vw, 2.5rem);
    max-width: 18ch;
    text-transform: capitalize;
    /* Override.  cs-topper cs-title and first cs-text should be removed and put into your global css sheet so it can control every instance of them on your site and is consistent. This selector is a section specific override that stays inside this stitch */
    color: var(--bodyTextColorWhite);
  }
  #cta-1132 .cs-button-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
  #cta-1132 .cs-button-solid {
    background-color: var(--secondary);
    color: #fff;
    transition: color 0.3s;
  }
  #cta-1132 .cs-button-solid:hover {
    color: var(--primary);
  }
  #cta-1132 .cs-button-solid:before {
    background-color: #fff;
  }
  #cta-1132 .cs-background {
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    height: 100%;
    width: 100%;
  }
  #cta-1132 .cs-background img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    /* Makes img tag act as a background image */
    object-fit: cover;
  }
  #cta-1132 .cs-background:before {
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
    /* background color overlay */
    content: "";
    opacity: 0.8;
    display: block;
    background: var(--primary);
    height: 100%;
    width: 100%;
  }
  #cta-1132 .cs-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    height: auto;
    width: 100%;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #cta-1132 {
    /* changes at desktop */
    padding-bottom: 15vw;
  }
}
/* Desktop - 1024pxpx */
@media only screen and (min-width: 64rem) {
  #cta-1132 {
    /* changes at desktop */
    padding-bottom: 13vw;
  }
}
/* Desktop - 1600px */
@media only screen and (min-width: 100rem) {
  #cta-1132 .cs-background {
    background: url("/assets/images/cta2.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
  }
  #cta-1132 .cs-background img {
    display: none;
  }
}
/* Dark Mode */
@media only screen and (min-width: 0rem) {
  body.dark-mode #cta-1132 .cs-dark {
    display: block;
  }
  body.dark-mode #cta-1132 .cs-light {
    display: none;
  }
}
/*-- -------------------------- -->
<---          Footer            -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #footer-1154 {
    z-index: 1;
    position: relative;
    padding: var(--sectionPadding);
    padding-bottom: 7.5rem;
  }
  #footer-1154 .cs-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: auto;
    max-width: 80rem;
    width: 100%;
  }
  #footer-1154 .cs-top {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid #e8e8e8;
    /* 32px - 40px */
    margin-bottom: clamp(2rem, 4vw, 2.5rem);
    width: 100%;
    padding-bottom: clamp(2rem, 4vw, 2.5rem);
    gap: 2rem;
  }
  #footer-1154 .cs-ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
    row-gap: 0.5rem;
    /* 28px - 40px */
    column-gap: clamp(1.75rem, 4vw, 2.5rem);
  }
  #footer-1154 .cs-li {
    list-style: none;
  }
  #footer-1154 .cs-link {
    display: block;
    margin: 0;
    text-decoration: none;
    /* 14px - 16px */
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    line-height: 1.5em;
    color: var(--bodyTextColor);
    transition: color 0.3s;
  }
  #footer-1154 .cs-link:hover {
    color: var(--primary);
  }
  #footer-1154 .cs-logo {
    display: block;
    height: auto;
    width: 10.5rem;
  }
  #footer-1154 .cs-logo-img {
    display: block;
    height: auto;
    width: 100%;
  }
  #footer-1154 .cs-phone {
    display: block;
    margin: 1rem 0 0 0;
    text-decoration: none;
    font-size: 1rem;
    line-height: 1.5em;
    color: var(--bodyTextColor);
  }
  #footer-1154 .cs-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 1.5rem;
  }
  #footer-1154 .cs-social {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
    gap: 0.5rem;
  }
  #footer-1154 .cs-social-li {
    list-style: none;
  }
  #footer-1154 .cs-social-link {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: #e8e8e8;
    height: 2rem;
    width: 2rem;
    transition: background-color 0.3s;
  }
  #footer-1154 .cs-social-link:hover {
    background-color: var(--primary);
  }
  #footer-1154 .cs-social-link:hover .cs-social-icon {
    opacity: 1;
    filter: grayscale(1) brightness(1000%);
  }
  #footer-1154 .cs-social-icon {
    opacity: 0.6;
    display: block;
    height: auto;
    width: 0.75rem;
    transition: opacity 0.3s;
  }
  #footer-1154 .cs-copyright {
    display: block;
    margin: 0;
    font-size: 1rem;
    line-height: 1.5em;
    color: var(--bodyTextColor);
    text-align: center;
  }
  #footer-1154 .cs-copyright-link {
    text-decoration: none;
    font-size: inherit;
    color: inherit;
    transition: color 0.3s;
  }
  #footer-1154 .cs-copyright-link:hover {
    color: var(--primary);
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #footer-1154 .cs-top {
    flex-direction: row;
    justify-content: space-between;
  }
  #footer-1154 .cs-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}
/* Dark Mode */
@media only screen and (min-width: 0rem) {
  body.dark-mode #footer-1154 {
    background-color: rgba(0, 0, 0, 0.2);
  }
  body.dark-mode #footer-1154 .cs-logo {
    filter: grayscale(1) brightness(1000%);
  }
  body.dark-mode #footer-1154 .cs-link,
  body.dark-mode #footer-1154 .cs-copyright,
  body.dark-mode #footer-1154 .cs-copyright-link,
  body.dark-mode #footer-1154 .cs-phone {
    color: var(--bodyTextColorWhite);
  }
  body.dark-mode #footer-1154 .cs-link:hover {
    color: var(--secondary);
  }
  body.dark-mode #footer-1154 .cs-social-link:hover {
    background-color: var(--secondary);
  }
  body.dark-mode #footer-1154 .cs-social-link:hover .cs-social-icon {
    filter: none;
  }
}
/*-- -------------------------- -->
<---           Widget           -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  .se-widget-button {
    z-index: 100;
    position: fixed;
    bottom: 1.25rem;
    right: 0rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    border-radius: 2.0625rem 0 0 2.0625rem;
    background-color: var(--secondary);
    height: 4rem;
    box-sizing: border-box;
    padding-right: 1.5rem;
    padding-left: 0.1875rem;
    font-size: 1.125rem;
    color: #fff;
    transition: color 0.3s;
    gap: 1.5rem;
  }
  .se-widget-button .cs-picture {
    z-index: -1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: #fff;
    height: 3.625rem;
    width: 3.625rem;
  }
  .se-widget-button .cs-picture:before {
    z-index: -2;
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    opacity: 1;
    display: block;
    border-radius: 1.875rem;
    background: #fff;
    height: 100%;
    width: 100%;
    transition: width 0.4s;
  }
  .se-widget-button .cs-icon {
    height: auto;
    width: 2.375rem;
  }
  .se-widget-button:hover {
    color: var(--secondary);
  }
  .se-widget-button:hover .cs-picture:before {
    width: 15.625rem;
  }
}
