/*-- -------------------------- -->
<---          Privacy           -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #privacy {
    padding: var(--sectionPadding);
  }

  #privacy .cs-container {
    width: 100%;
    /* changes to 1280px at tablet */
    max-width: 40.625rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  #privacy h3,
  #privacy h4,
  #privacy h5,
  #privacy h6,
  #privacy p,
  #privacy li {
    padding-bottom: 1rem;
  }

    #privacy a {
    text-decoration: underline;
    font-weight: 700;
  }

  #privacy ul,
  #privacy ol {
    text-align: left;
     list-style-position: inside;
  }

  /* Table */
  #privacy .privacy-table-container {
    margin: 2rem 0;
    overflow-x: auto;
  }
  
  #privacy .privacy-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
    line-height: 1.5;
  }
  
  #privacy .privacy-table th,
  #privacy .privacy-table td {
    padding: 0.75rem 1rem;
    text-align: left;
    border: 1px solid rgba(0, 0, 0, 0.1);
    vertical-align: top;
  }
  
  #privacy .privacy-table th {
    background-color: rgba(0, 0, 0, 0.03);
    font-weight: 600;
    color: rgba(0, 0, 0, 0.8);
  }
  
  #privacy .privacy-table tr:nth-child(even) {
    background-color: rgba(0, 0, 0, 0.02);
  }
  
  #privacy .privacy-table tr:hover {
    background-color: rgba(0, 0, 0, 0.03);
  }
  
  #privacy .no-collected {
    color: #d32f2f;
    font-weight: 600;
    text-align: center;
  }
  
  /* Scroll and links */
#privacy [id] {
  scroll-margin-top: 130px;
}

  /* Larger Screen Sizes */
  @media (max-width: 768px) {
    .privacy-table {
      font-size: 0.8125rem;
    }
    
    .privacy-table th,
    .privacy-table td {
      padding: 0.5rem;
    }
  }

}

/* Dark Mode */
@media only screen and (min-width: 0rem) {

  body.dark-mode #privacy .cs-topper,
  body.dark-mode #privacy #privacy-form label {
    color: var(--bodyTextColorWhite);
  }
}


/*-- -------------------------- -->
<---            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,
  #cta-51 .cs-title,
  #cta-51 .cs-text {
    color: var(--bodyTextColorWhite);
  }

  #cta-51 .cs-text {
    margin-bottom: 1rem;
  }

  #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: #000;
    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;
  }
}