:root {
  --section-15B-bg-color: #bbeeff;
  --section-15B-txt-color: #000080;
  --section-15B-block-color: white;
}
.section-15b {
  padding: 50px;
  background-color: var(--section-15B-bg-color);
  border-radius: 20px;
  margin: auto;
}
.section-15b .blocks-container {
  gap: 1rem;
  margin-right: 3rem;
}
.section-15b .block {
  font-size: calc(var(--overall-size) * 0.35);
  width: calc(var(--overall-size) * 5);
  background-color: var(--section-15B-block-color);
  border-radius: 10px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-bottom: 5px;
  padding: 0px;
  cursor: pointer;
}
.section-15b .block p {
  text-decoration: none;
  text-transform: uppercase;
  color: var(--section-15B-txt-color);
  font-weight: 600;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 8px;
}

.section-15b .block > div {
  padding: 1px; 
  border-radius: 10px; 
  height: 100%; 
  align-items: center; 
  justify-content: center;
  margin: 8px;
  width: 100%;
}

.section-15b .activeBlock > div {
  background-color:var(--section-4-box-color);
  color: white; 
}

.section-15b .activeBlock p {
  color: white;
}

.section-15b .content-title {
  color: var(--section-15B-txt-color);
  margin-bottom: 10px;
}
.section-15b .text-content p {
  color: var(--section-15B-txt-color);
  margin-bottom: 20px;
}
.section-15b .cta-button {
  padding: 10px 20px;
  border: 1px solid var(--section-15B-txt-color);
  background: transparent;
  color: var(--section-15B-txt-color);
  cursor: pointer;
}
/* ------------------- RESPONSIVE ------------------- */
@media (max-width: 800px) {
  .section-15b {
    padding: 0;
    padding-bottom: 3rem;
    flex-direction: column-reverse;
    width: 100%;
  }
  .section-15b .blocks-container {
    margin: 1rem;
  }
  .section-15b .block {
    width: 100%;
    height: 100%;
    /*font-size: calc(var(--overall-size) * 0.9);*/
  }
  .section-15b .text-content {
    max-width: 100%;
    padding: 1rem;
  }
  .section-15b .block-2,
  .block-5,
  .block-8,
  .block-11 {
    margin-top: 0;
  }
}

@media (max-width: 1023px) {
  .section-15b .block {
    height: unset;
    /*font-size: calc(var(--overall-size) * 0.9);*/
  }
}

@media (max-width: 767px) {
}