.starter-plans {
  display: flex;
  position: relative;
}

.starter-plans .frame {
  position: relative;
  top: 0;
  left: 0;
  max-width: 100%;
}

.starter-plans .cont-1 {
  display: flex;
  flex-direction: column;

  row-gap: 24px;
  max-width: 100%;
}

.starter-plans .cont-2 {
  display: flex;
  flex-direction: column;

  row-gap: 16px;
}

.starter-plans .cont-1 .title-cont {
  display: flex;

  column-gap: 36px;

}

.starter-plans .title-1 {
  color: var(--gray-300);

  font-weight: 400;
  font-size: 14px;
  line-height: 16.42px;
  letter-spacing: 0;
  cursor: pointer;
}

.starter-plans .title-1.selected {
  color: var(--safir-blue-900);

  font-weight: 600;
  font-size: 14px;
  line-height: 16.42px;
  letter-spacing: 0;
}

.starter-plans .title-2 {
  color: var(--safir-blue-900);

  font-weight: 400;
  font-size: 24px;
  line-height: 28.15px;
  letter-spacing: 0;
}

.starter-plans .card-scroller {
  display: flex;
  flex-direction: column;
  gap: 24px;

  overflow: hidden;
}

.starter-plans .cont-3 {
  display: flex;
  gap: 24px;

  width: 100%;
  align-items: center;

  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .starter-plans .card-scroller {
    flex-direction: row;
    overflow-x: scroll;
  }
  .starter-plans .cont-3 {
    width: auto;
    flex-wrap: nowrap;
  }
}

.starter-plans .cont-3.hidden {
  display: none;
}
