:root {
  --section-12-bg-color: #87cefa;
  --section-12-txt-color: #000080;
  --section-12-btn-txt-color: white;
  --section-12-bg-hover: #00005f;
  --section-12-highlighted-txt-color: white;
}

.highlighted {
  color: var(--section-12-highlighted-txt-color);
  margin: 0;
}

.section-12 {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  padding-top: 0vh;
  scroll-margin-top: 5vh;
}
.right-align {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.right-align h1 {
  text-align: right;
}

.center-align {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-12 .section-12-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.section-12 .text-content {
  width: 100%;
  font-size: calc(var(--overall-size) * 0.8);
}
.section-12 .text-content h1 {
  color: var(--section-12-txt-color);
  font-size: calc(var(--overall-size) + 1rem);
  margin-bottom: 2rem;
  padding-left: 1rem;
}
.section-12 .text-content p {
  color: var(--section-12-txt-color);
  margin-bottom: 20px;
}
.section-12 .cta-button {
  width: 20%;
  font-size: var(--overall-size);
  padding: 10px 20px;
  margin-left: 1rem;
  margin-top: 2rem;
  border: none;
  cursor: pointer;
  background-color: var(--section-12-txt-color);
  color: var(--section-12-btn-txt-color);
  border-radius: 1rem;
}
.section-12 .cta-button:hover {
  background-color: var(--section-12-bg-hover);
}
.section-12 .colored-box {
  max-height: 50vh;
  width: 80%;
  overflow: auto;
  height: 100%;
  padding: 1rem;
  margin: 1rem;
  box-sizing: content-box;
  box-sizing: border-box;
  background-color: var(--section-12-bg-color);
  border-radius: 10px;
}
/* ------------------- RESPONSIVE ------------------- */
@media (max-width: 1280px) {
  .section-12 .cta-button {
    width: 50%;
  }
}
@media (max-width: 600px) {
  .section-12 .colored-box {
    width: 100%;
    font-size: calc(var(--overall-size) * 1.9);
    margin-right: 0;
    margin-left: 0;
  }
  .section-12 .cta-button {
    width: 100%;
    margin: 0;
    font-size: calc(var(--overall-size) * 1.9);
  }

  .section-12 ul li:before {
    font-size: calc(var(--overall-size) * 2);
  }
}
@media (max-width: 425px) {
  .section-12 {
    padding: 0;
  }
  .section-12 .text-content h1 {
    padding: 0;
  }
  .section-12 .colored-box {
    width: 100%;
    padding: 0.5rem 0;
    border-radius: 0.1rem;
  }
  .section-12 .cta-button {
    width: 100%;
    margin-left: 0;
  }
}
