.sightseeing-intro {
  background-color: var(--color-white);
  padding: 80px 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sightseeing-intro__container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  justify-content: center;
  max-width: 1440px;
  width: 100%;
}

.sightseeing-intro__icon {
  width: 120px;
  height: 57px;
  overflow: hidden;
}

.sightseeing-intro__icon-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.sightseeing-intro__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.sightseeing-intro__title {
  font-family: var(--font-family-main);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-text);
  text-align: center;
  letter-spacing: 2.4px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.sightseeing-intro__title span {
  display: block;
}


@media screen and (max-width: 960px) {
  .sightseeing-intro {
    padding: 40px 0;
  }
  .sightseeing-intro__container {
    gap: 24px;
  }

  .sightseeing-intro__title {
    font-size: var(--font-size-8);
  }


}
