.get-started {
  margin-bottom: 0 !important;
  padding-top: calc(var(--global-padding) * 2);
  padding-bottom: calc(var(--global-padding) * 2);
  z-index: 2;
}

.get-started.row {
  justify-content: center;
  width: 100vw;
  margin-left: 0;
  margin-right: 0;
  border-radius: 0;
}

.get-started:last-of-type {
  margin-bottom: 0;
}

.get-started .row-item {
  margin-left: var(--global-padding);
  margin-right: var(--global-padding);
}

@keyframes glow {
  from {
    box-shadow: 0 0 20px rgba(30, 179, 82, 0.5);
  }

  to {
    box-shadow: 0 0 20px rgba(30, 179, 82, 0);
  }
}

.get-started .bu-button {
  border: 0;
  background-color: var(--green);
  color: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.get-started .bu-button:hover {
  /* filter: brightness(105%); */
  background-color: var(--green-medium);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
  animation-name: glow;
  animation-duration: 0.75s;
  animation-timing-function: ease-in-out;
  animation-delay: 0s;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
  animation-direction: alternate;
  animation-play-state: running;
}

.get-started .bu-button:active {
  background-color: var(--green-medium-dark);
  box-shadow: none;
  animation: none;
}

.get-started .bu-icon {
  font-size: 2em;
  margin-right: 0.5em;
  position: relative;
  top: 0.1em;
}

.get-started .get-started-checklist-item {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  text-align: left;
  line-height: calc(1.5em + 4px);
}

.get-started u {
  display: inline;
  padding-bottom: 2px;
  text-decoration: none;
  border-bottom: 2px solid var(--turquoise-light);
  font-weight: bold;
}

@media (max-width: 768px) {
  .get-started.row {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-content: center;
    align-items: center;
  }

  .get-started .row-item {
    margin: 0 auto;
    padding: 0;
    width: calc(480px - calc(2 * var(--global-padding)));
    min-width: calc(480px - calc(2 * var(--global-padding)));
    max-width: calc(480px - calc(2 * var(--global-padding)));
  }

  .get-started .row-item:first-child {
    margin-bottom: calc(var(--global-padding) / 2);
  }

  .get-started .row-item:last-child {
    width: auto;
    min-width: 0;
    max-width: 100%;
    flex-basis: 100%;
    flex-shrink: 1000;
  }

  .get-started .get-started-checklist-item {
    width: auto;
    display: flex;
  }

  .get-started .bu-button {
    margin: 0 !important;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .get-started .row-item {
    margin: 0;
    padding: 0;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
  }
}
