html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

/* ==========================================================================
   Our Story Section - Premium
   ========================================================================== */

.story-heart-image {
  max-width: 250px;
  margin: 0 auto;
}

.story-timeline {
  list-style: none;
  padding: 0;
  position: relative;
  max-width: 600px;
  width: 100%;
}

.story-timeline::before {
  content: '';
  position: absolute;
  left: 30px;
  top: 0;
  width: 2px;
  height: 100%;
  background: var(--color-primary);
}

.story-timeline li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  position: relative;
}

.story-timeline li:last-child {
  margin-bottom: 0;
}

.story-icon {
  width: 60px;
  height: 60px;
  min-width: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  flex-shrink: 0;
}

.story-icon .icon-svg {
  width: 28px;
  height: 28px;
  color: white;
}

.story-content {
  margin-left: 20px;
  padding-top: 10px;
}

@media (max-width: 576px) {
  .story-timeline::before {
    left: 25px;
  }

  .story-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
  }

  .story-icon .icon-svg {
    width: 22px;
    height: 22px;
  }

  .story-content {
    margin-left: 15px;
  }
}

/* ==========================================================================
   Best Friends / Testimoni Section - Premium
   ========================================================================== */

.friend-heart-image {
  max-width: 180px;
  width: 100%;
}

@media (max-width: 576px) {
  .friend-heart-image {
    max-width: 140px;
  }
}

blockquote.blockquote {
  font-size: 1.1rem;
  border-left: 3px solid var(--color-primary);
  padding-left: 20px;
}

blockquote .blockquote-footer {
  color: var(--color-primary);
}