:root {
    --box-SECTION-bg-color: whitesmoke;
    --box-SECTION-txt-color: #000080;
    --box-SECTION-block-color: white;
  }
  .box-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px;
    background-color: var(--box-SECTION-bg-color);
    border-radius: 20px;
    height: 50%;
    margin: auto;
  }
  .box-section .blocks-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-right: 3rem;
  }
  .box-section .block {
    font-size: calc(var(--overall-size) * 0.4);
    width: calc(var(--overall-size) * 5);
    background-color: var(--box-SECTION-block-color);
    border-radius: 10px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out, color 0.3s ease-in-out;
  }
  .box-section .block a {
    text-decoration: none;
    text-transform: uppercase;
    color: #333;
    font-weight: 600;
    box-sizing: border-box;
    padding: 1rem;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .box-section .block:hover {
    transform: scale(1.1);
    background-color: var(--box-SECTION-txt-color);
  }

  .box-section .block:hover a {
    color: white;
    opacity: 1;
    mix-blend-mode: normal;
    filter: brightness(1) contrast(1);
  }
  
  .box-section .text-content {
    max-width: 50%;
  }
  .box-section .text-content h1 {
    color: gray;
    font-size: calc(var(--overall-size) + 1rem);
    margin-bottom: 10px;
  }
  .box-section .text-content p {
    color: var(--box-SECTION-txt-color);
    font-size: var(--overall-size);
    margin-bottom: 20px;
  }
  .box-section .cta-button {
    padding: 10px 20px;
    border: 1px solid var(--box-SECTION-txt-color);
    background: transparent;
    color: var(--box-SECTION-txt-color);
    cursor: pointer;
  }
  /* ------------------- RESPONSIVE ------------------- */
  @media (max-width: 800px) {
    .box-section {
      padding: 0;
      padding-bottom: 3rem;
      flex-direction: column-reverse;
      width: 100%;
    }
    .box-section .blocks-container {
      margin: 1rem;
    }
    .box-section .block {
      width: 100%;
      height: 100%;
      font-size: calc(var(--overall-size) * 0.9);
    }
    .box-section .text-content {
      max-width: 100%;
      padding: 1rem;
    }
    .box-section .block-2,
    .block-5,
    .block-8,
    .block-11 {
      margin-top: 0;
    }
  }
  