/* I use the same breakpoints as Bootstrap v5.0
 * https://getbootstrap.com/docs/5.0/layout/breakpoints/
 */
#header-placeholder {
  display: none; }
  @media (min-width: 768px) {
    #header-placeholder {
      display: block; } }
#hero-section {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 2rem;
  background-color: var(--color-background-light); }
  #hero-section .button i {
    margin-right: 0.5rem; }

@media (min-width: 768px) {
  #hero-content {
    max-width: 50%; } }

h1 {
  margin-top: 1rem;
  color: var(--color-secondary);
  font-size: 1.8em; }

#hero-logo-img {
  width: 66%; }
  @media (min-width: 768px) {
    #hero-logo-img {
      width: 33%; } }
#subtitle {
  margin-top: 0.5rem;
  font-family: var(--style-font);
  font-weight: 500; }

#hero-buttons {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem; }
  @media (min-width: 768px) {
    #hero-buttons {
      flex-direction: row;
      flex-wrap: wrap; } }
#proposal-button {
  flex-grow: 1; }

#packages-section {
  padding: 1.5rem 1.5rem; }
  #packages-section h2 {
    text-align: center; }
  #packages-section > p {
    margin-top: 1em; }

#packages-list {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  list-style-type: none; }
  @media (min-width: 768px) {
    #packages-list {
      flex-direction: row; } }
.package {
  padding: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 7px;
  box-shadow: 0 0.05rem 0.15rem rgba(0, 0, 0, 0.15); }
  @media (min-width: 768px) {
    .package {
      width: 50%; } }
.package ul > li {
  list-style-type: none; }
  .package ul > li i {
    margin-right: 0.25em; }

.package ul > li ~ li, .package p ~ p {
  margin-top: 0.5em; }

.package-feature-list {
  margin-top: 0.75em; }

.package-price {
  font-weight: bold; }

.package .button-container {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem; }
  @media (min-width: 768px) {
    .package .button-container {
      flex-direction: row;
      flex-basis: fit-content; } }
  @media (min-width: 768px) {
    .package .button-container .button {
      flex-shrink: 1;
      flex-grow: 1; } }
.package-feature-section {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: white;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 5px; }
