/* 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 .description {
  display: flex;
  flex-direction: column;
}

.home-section .summary {
  font-size: var(--font-size-mobile);
  font-weight: var(--font-weight-mobile);
  line-height: var(--line-height-mobile);
  text-align: left;
}

.home-section .content-image {
  width: 100%;
  max-height: 535px;
  height: auto;
  border-radius: 12px;
  align-self: center;
  background-color: #f9f7f7;
}

.home-section .content-image img {
  width: 100%;
  max-height: 535px;
  height: auto;
  border-radius: 12px;
  display: block;
}

@media (min-width: 1280px) {
  .home-section {
    background-color: #f9f7f7;
    padding: 0;
    margin: 0;
    max-width: 100%;
  }

  .home-section .container {
    max-width: 1200px;
    flex-direction: row;
    gap: 0;
    margin: 0 auto;
  }

  .home-section .content {
    justify-content: center;
    gap: 32px;
  }

  .home-section .title {
    font-size: 52px;
    font-weight: 400;
    line-height: 58px;
    text-align: left;
  }

  .home-section .description {
    gap: 16px;
  }

  .home-section .summary {
    font-size: 16px;
    font-weight: 300;
    line-height: 20.8px;
    letter-spacing: 0.16px;
    text-align: left;
  }

  .home-section .register-request-button {
    width: 100%;
    max-width: 250px;
    height: var(--btn-height-mobile);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    border-radius: var(--border-radius);
    border: none;
    background-color: #df0611;
    color: #ffffff;
    cursor: pointer;
  }

  .home-section .register-request-button:hover {
    background-color: #e71f3d;
  }

  .home-section .register-request-button span {
    font-family: Ubuntu;
    font-size: 16px;
    font-weight: 400;
    line-height: 20.8px;
    text-align: left;
  }

  .home-section .content-image {
    max-height: 535px;
    max-width: 556px;
    height: 535px;
    width: 556px;
  }

  .home-section .content-image img {
    max-height: 535px;
    max-width: 556px;
    height: 535px;
    width: 556px;
  }
}
