section.top-container {
  display: flex;
  justify-content: center;
  align-items: center;

  background-color: #000000;
  background-image: url("../../assets/images/dr-tread/top/bg-desktop.png");
  background-repeat: no-repeat;
  background-position: center;

  height: 700px;

  color: white;
}

div.top-container__content-container {
  display: flex;
  flex-direction: column;
  row-gap: 60px;

  width: 100%;
  max-width: 1200px;
}

div.top-container__text-container {
  display: flex;
  flex-direction: column;
}

span.top-container__title {
  font-family: "Pretendard";
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 46px;
}

span.top-container__description {
  font-family: "Pretendard";
  font-style: normal;
  font-weight: 800;
  font-size: 56px;
  line-height: 78px;
}

button.top-container__contact-button {
  border-radius: 4px;
  padding: 12px 50px;
  background-color: white;

  width: fit-content;

  font-family: "Pretendard";
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #212121;
}

@media screen and (max-width: 1024px) {
  section.top-container {
    flex-direction: column;

    padding: 194px 0 96px 0;
    background-image: url("../../assets/images/dr-tread/top/bg-mobile.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: top;

    height: 540px;
  }

  div.top-container__content-container {
    align-items: center;
    row-gap: 48px;

    width: 100%;
    max-width: 327px;
  }

  div.top-container__text-container {
    align-items: center;
    row-gap: 16px;
  }

  span.top-container__title {
    font-size: 20px;
    line-height: 30px;
  }

  span.top-container__description {
    text-align: center;
    font-size: 36px;
    line-height: 54px;
  }

  button.top-container__contact-button {
    padding: 12px 30px;
  }
}
