/*-- -------------------------- -->
<-- -          Logos            -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #logos-2444 {
    padding: var(--sectionPadding);
    background-color: #030711;
  }
  #logos-2444 .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
  #logos-2444 .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;
  }
  #logos-2444 .cs-title {
    color: var(--bodyTextColorWhite);
  }
  #logos-2444 .cs-text {
    /* 16px - 20px */
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--bodyTextColorWhite);
  }
  #logos-2444 .cs-ul {
    list-style: none;
    width: 100%;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  #logos-2444 .cs-img {
    width: 100%;
    height: auto;
    filter: grayscale(1) brightness(100%);
  }
}
/* Tablet - 600px */
@media only screen and (min-width: 37.5rem) {
  #logos-2444 .cs-ul {
    grid-template-columns: repeat(3, 1fr);
  }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #logos-2444 .cs-container {
    flex-direction: row;
  }
  #logos-2444 .cs-content {
    text-align: left;
    align-items: flex-start;
  }
}
/* Dark Mode */
@media only screen and (min-width: 0rem) {
  body.dark-mode #logos-2444 {
    background-color: rgba(0, 0, 0, 0.8);
  }
  body.dark-mode #logos-2444 .cs-title,
  body.dark-mode #logos-2444 .cs-text {
    color: var(--bodyTextColorWhite);
  }
  body.dark-mode #logos-2444 .cs-text {
    opacity: 0.8;
  }
}
                                