.start__wrapper {
}

.start__container {
  height: 90vh;
  padding-top: 9rem;
  padding-bottom: 7rem;
  background-color: var(--secondary-color);
}

.start__container span {
  color: var(--main-color);
}

.start__content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  width: 75%;
}

.start__title {
  font-weight: 900;
  font-size: 6em;
}

.start__description {
  width: 60%;
  font-size: 1.5em;
  opacity: .6;
}

.start__btn {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 256px;
  height: 72px;

  border-radius: 50px;
  background-color: var(--main-color);
}

.start__btn .btn__title {
  font-weight: 900;
  font-size: 1.75em;
  color: var(--secondary-color);
}

@media screen and (max-width: 675px) {
  .start__container {
    height: calc(100vh - 86px);
    padding: 0 1rem;
  }

  .start__content {
    align-items: flex-start;
    justify-content: center;
    gap: 1.5rem;

    width: 100%;
    height: 100%;
  }

  .start__title {
    font-size: 3em;
  }
}
