.big-and-small-title-component {
  width: 100%;
  margin: auto;
}

.big-and-small-title-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.small-title {
  letter-spacing: 0.14vw;
  text-transform: uppercase;
  font-size: 0.89vw;
  font-weight: 400;
  line-height: 1vw;
  color: #1d2025;
  font-family: Satoshi, sans-serif;
  border-top: 0.5px solid #1d2025;
  border-bottom: 0.5px solid #1d2025;
  padding: 0.6vw 0.8vw;
  display: inline-block;
  width: fit-content;
}

.big-title {
  text-transform: capitalize;
  font-size: 85px;
  line-height: 1.2;
  color: #1d2025;
  font-family: Satoshi, sans-serif;
  margin: 0;
  font-weight: 400;
}

@media (max-width: 991px) {
  .small-title {
    font-size: 0.8rem;
    letter-spacing: 0.125rem;
    line-height: 0.9rem;
    padding: 8px 12px;
  }

  .big-title {
    font-size: 4rem;
    line-height: 4.5rem;
  }
}

@media (max-width: 576px) {
  .big-title {
    font-size: 15vw;
    line-height: 17.5vw;
  }
}

