/*-- -------------------------- -->
<---          About Us          -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #RPsbs-580 .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3rem;
  }
  #RPsbs-580 .cs-content {
    text-align: left;
    width: 100%;
    max-width: 90%;
    padding-top: 1.5rem;
    box-sizing: border-box;
  }
  #RPsbs-580 .cs-title {
    margin-top: 1rem;
    margin-bottom: 3rem;
    max-width: 80rem;
  }
  #RPsbs-580 .cs-topper {
    margin-bottom: 1rem;
    max-width: 80rem;
  }
  #RPsbs-580 .cs-text {
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    max-width: 80rem;
    font-size: var(--bodyFontSizeBig);
  }
  /* #RPsbs-580 .cs-text:first-of-type {
    margin-top: 1rem;
    margin-bottom: 2rem;
  }
  #RPsbs-580 .cs-text:last-of-type {
    margin-bottom: 2rem;
  } */
  #RPsbs-580 .cs-picture {
    width: 100%;
    /* max-width: 700px; */
    margin-top: -4.5rem;
    margin-bottom: -3rem;
    text-align: left;
  }
  #RPsbs-580 .cs-picture img {
    height: auto;
    max-width: 100%;
    object-fit: cover;
  }
  #RPsbs-580 .cs-hr {
    border: none; /* Remove default border */
    text-align: center;
    height: 2px; /* Set the height of the line */
    width: 80rem;
    background-color: #18453B; /* Set the color of the line */
    margin: 0.5rem auto; /* Set margin above and below the line */
    /* Optionally, you can add other properties such as width, padding, etc. */
  }
}

/*-- -------------------------- -->
<---            CTA             -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #cta-51 {
    padding: var(--sectionPadding);
    position: relative;
  }
  #cta-51 .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
  }
  #cta-51 .cs-content {
    /* set text align to left if content needs to be left aligned */
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    align-items: center;
  }
  #cta-51 .cs-topper {
    color: var(--secondary);
  }
  #cta-51 .cs-title,
  #cta-51 .cs-text {
    color: var(--bodyTextColorWhite);
  }
  #cta-51 .cs-text {
    /* 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 */
    margin-bottom: 1rem;
    opacity: .8;
  }
  #cta-51 .cs-text:last-of-type {
    margin-bottom: 2rem;
  }
  #cta-51 .cs-picture {
    height: 100%;
    width: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
  #cta-51 .cs-picture:before {
    /* black color overlay */
    content: '';
    position: absolute;
    display: block;
    height: 100%;
    width: 100%;
    background: #044C36;
    opacity: .8;
    top: 0;
    left: 0;
    z-index: 1;
  }
  #cta-51 .cs-picture img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
}
