.get-started {
  padding: 0 12vw max(50px, 5%) 12vw;
}

.get-started-title {
  color: rgb(29, 59, 101);
  font-size: clamp(2rem, 2.8vw, 5rem);
  line-height: 1.25;
  font-weight: bolder;
  margin-bottom: max(25px, 4%);
}

.get-started-tabs {
  background: rgb(250, 250, 250);
  border-radius: 10px;
}

.nav-arrow {
  display: none;
}

.tab-header {
  padding: 2vh 4vw 0 4vw;
}

.tab-buttons {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1vh;
}

.tab-btn {
  flex: 1fr;
  height: 50px;
  border: none;
  background-color: rgb(250, 250, 250);
  color: #7f9bc3;
  margin-bottom: 2vh;
  font-weight: bold;
  font-size: clamp(1rem, 1.6vw, 2rem);
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: 0.5s;
}

.tab-btn.active {
  color: #2b5084;
}

.tab-btn:active {
  color: #7f9bc3;
}

.timeline {
  margin: 0 auto;
  width: 88%;
}

.timeline-dots {
  display: flex;
  justify-content: space-between;
  margin-top: -1.3vh;
  padding: 0 3.5vw;
}

.tab-btn.hover {
  color: #2b5084;
}

.dot.hover {
  transform: scale(1.1);
  background: #2b5084;
  border-width: 1px;
}

.dot {
  width: 15px;
  height: 15px;
  background: white;
  border-radius: 50%;
  border: solid #7B7E86 1.5px;
  transition: 0.5s ease;
  cursor: pointer;
}

.center {
  margin-right: 1.5vw;
}

.dot.active {
  transform: scale(1.2);
  background: #2b5084;
  border-width: 1px;
}

.tab-content {
  padding: 2vh 6vw 8vh 6vw;
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

.tab-title {
  font-size: clamp(1rem, 1.8vw, 2rem);
  font-weight: 600;
  color: rgb(43, 80, 132);
  margin: 5vh 0 3vh 0;
}

.tab-description {
  font-size: clamp(1rem, 1.3vw, 1.8rem);
  margin: 0 0 1vh 0;
}

.tab-image {
  height: 6.5vh;
  margin: 3vh 3vw 0 0;
}

.small {
  height: 8.5vh;
}

.medium {
  height: 5vh;
}

.large {
  height: 3.5vh;
}

.tab-image-container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.tab-image-snapshot {
  height: 32vh;
  margin-top: 4vh;
  margin-right: 2vw;
}

@media (max-width: 768px) {
  .get-started {
    padding: 0 12vw max(50px, 5%) 12vw;
  }
  
  .tab-buttons {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
  }

  .tab-btn {
    display: none;
    font-size: 1.2rem;
    width: auto;
    margin: 0;
    padding: 0;
  }

  .tab-btn.active {
    display: block;
  }

  .top {
    margin-top: 0;
  }

  .tab-content {
    padding-bottom: 50px;
  }

  .nav-arrow {
    display: block;
    position: absolute;
    border: none;
    background: transparent;
    font-size: 1.8rem;
    font-weight: 600;
    color: #2b5084;
    cursor: pointer;
    padding: 8px 12px;
  }

  .nav-arrow.left {
    left: 5%;
  }

  .nav-arrow.right {
    right: 5%;
  }

  .nav-arrow:active {
    opacity: 0.6;
  }

  .timeline,
  .timeline-dots {
    display: none;
  }

  .tab-title {
    font-size: 1.25rem;
  }

  .tab-description {
    font-size: 1.1rem;
  }

  .tab-image-container {
    gap: 10px;
  }

  .tab-image {
    height: 40px;
  }

  .small {
    height: 55px;
  }

  .medium {
    height: 31px;
  }

  .large {
    height: 22px;
  }

  .tab-image-snapshot {
    width: 100%;
    height: auto;
  }
}