.cm-container {
  display: flex;
  padding: 24px 0px;
  justify-content: center;
}

.cm-content-mod {
  padding: 32px;
}

.c-left {
  width: 50%;
  display: flex;
  justify-content: center;
}

.c-right {
  width: 50%;
  display: flex;
  justify-content: center;
}

.c-list-container {
  display: flex;
  width: 75%;
  flex-direction: column;
}

.c-list-item {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
}

.c-list-item-right {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding-left: 16px;
}

.c-label {
  color: var(--blue-90);
  font-family: 'Urbanist', sans-serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1px;
}

.c-sublabel {
  line-height: 1.25;
  color: var(--dark-70);
  font-family: 'Work Sans';
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
}

.cb-content-mod {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0px;
}

.c-card {
  display: flex;
  flex-direction: column;
  align-items: center; 
  gap: 16px;
}

.c-card-image {
  padding: 16px;
  border-radius: 50%;
  background-color: var(--light-10);
}

.c-card-text-container {
  width: 75%;
  text-align: center;
  display: flex;
  flex-direction: column;
}

.c-card-text {
  font-size: 20px;
  line-height: 1.2;
}

.c-hornblower-container {
  padding: 24px 0px;
}

.c-hornblower-content {
  /* border: 1px solid var(--dark-70); */
  display: flex;
  flex-direction: column;
  align-items: center;
}

.c-hornblower {
  width: 90%;
  padding: 12px 0px;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  background-color: var(--blue-80);
  display: flex;
  justify-content: center;
}

.c-hornblower-logos {
  padding: 12px 0px;
  gap: 16px;
  display:flex;
  flex-direction: row;
  justify-content: center;
}

.c-hornblower-logos img {
  display: flex;
  align-self: center;
}

@media screen and (max-width: 964px) {
  .cm-content-mod {
    flex-direction: column;
  }

  .c-left {
    width: 100%;
    padding-bottom: 16px;
  }

  .c-right {
    width: 100%;
    padding-left: 0px;
    display: flex;
    justify-content: center;
  }

  .c-list-container {
    width: 100%;
  }

  .cb-container {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .cb-content-mod {
    flex-direction: column;
  }

  .c-hornblower-logos {
    flex-direction: column;
    justify-content: center;
  }
}