/* Home Section */
.home-section .container {
  display: flex;
  flex-direction: column;
  gap: var(--container-gap);
  order: 1;
}

.home-section .title {
  font-size: var(--h1-font-size-mobile);
  font-weight: var(--h1-font-weight);
  line-height: var(--h1-line-height-mobile);
  text-align: left;
}

.home-section .content {
  display: flex;
  flex-direction: column;
}

.home-section .paragraph {
  font-size: var(--font-size-mobile);
  font-weight: var(--font-weight-mobile);
  line-height: var(--line-height-mobile);
  letter-spacing: 0px;
  text-align: left;
}

.home-section .list {
  margin-left: 16px;
}

@media (min-width: 1280px) {
  .home-section .container {
    max-width: 1200px;
    gap: 60px;
  }

  .home-section .content {
    justify-content: center;
  }

  .home-section .title {
    font-size: 52px;
    font-weight: 400;
    line-height: 58px;
    text-align: left;
  }

  .home-section .paragraph {
    font-family: Ubuntu;
    font-weight: 300;
    font-size: 18px;
    line-height: 23.4px;
    letter-spacing: 0px;
    text-align: left;
  }

  .home-section .list {
    margin-left: 24px;
  }
}
