/* ROADMAP/TIMELINE BLOCK */
.abbott-roadmap-block {
    background-color: var(--white);
    padding: 0;
}

.abbott-roadmap-container {
    width: 100%;
    margin: 0 auto 10rem;
    position: relative;
}

.abbott-roadmap-inner-container {
    width: 85%;
    margin: auto;
    padding: 4rem 0;
}

.abbott-roadmap-title {
    font-size: 2rem;
    color: var(--primary-color);
    margin: 0 0 2rem 0;
}

.abbott-roadmap-steps {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
}

.abbott-roadmap-step {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.abbott-roadmap-step-header {
    font-size: 1.5rem;
    color: var(--black);
    font-family: var(--heading);
    font-weight: 700;
    text-transform: uppercase;
}

.abbott-roadmap-circle {
    width: 240px;
    height: 240px;
    position: relative;
}

.abbott-roadmap-circle img {
    width: 100%;
    height: 100%;
}

.abbott-roadmap-circle > .circle-overlay-icon {
    width: revert;
    height: revert;
}

.circle-overlay-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50%;
    height: 50%;
}

.abbott-roadmap-card {
    background-color: var(--light-grey);
    padding: 1.5rem;
    border-radius: 0 1rem 1rem;
    width: calc(100% - 2rem);
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: stretch;
}

.abbott-roadmap-card-title {
    font-size: 1.5rem;
    color: var(--black);
    margin: 0;
}

.abbott-roadmap-card-text {
    font-size: 1rem;
    color: var(--black);
    margin: 0;
}

/* Arrow separators between roadmap steps */
.abbott-roadmap-arrow {
    height: 23.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.abbott-roadmap-arrow img {
    width: 100%;
    object-fit: contain;
}

/* Tablet */
@media only screen and (max-width: 1024px) {
  .abbott-roadmap-inner-container { width: 92%; }
  .abbott-roadmap-steps { gap: 2rem; }
  .abbott-roadmap-circle { width: 200px; height: 200px; }
}

/* Mobile */
@media only screen and (max-width: 767px) {
  .abbott-roadmap-inner-container {
      width: 92%;
      padding: 3rem 0 0;
  }

  .abbott-roadmap-steps {
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 2rem;
  }

  .abbott-roadmap-arrow {
      display: none;
  }

  .abbott-roadmap-step {
      width: 100%;
  }

  .abbott-roadmap-circle {
      width: 160px;
      height: 160px;
  }

  .abbott-roadmap-card {
      width: 100%;
  }
}
