.your-home-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
  font-family: "Manrope", Arial, sans-serif;
}
.your-home-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.your-home-title-header {
  display: flex;
  flex-direction: column;
  text-align: left;
  max-width: 80rem;
  margin: 0 auto;
  width: 100%;
  gap: 0.5rem;
  line-height: 120%;
}
.your-home-subtitle {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}
.your-home-title {
  margin: 0 0 1rem 0;
  font-size: 2rem;
  font-weight: 600;
  color: var(--black);
  line-height: 1.2;
  max-width: 52rem;
  span {
    color: var(--blue);
  }
}
.your-home-text {
  font-size: 1.12rem;
  font-weight: 400;
  color: var(--gray-dark);
  line-height: 140%;
}
.your-home-image {
  width: 100%;
  height: 20.9375rem;
  object-fit: cover;
  border-radius: 0.5rem;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .your-home-container {
    padding: 3rem 1.37rem;
  }
  .your-home-title {
    font-size: 2.5rem;
  }
  .your-home-image {
    width: 20.9375rem;
    align-self: center;
  }
}
@media (min-width: 1024px) {
  .your-home-container {
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    padding: 4rem 2rem;
    height: 37.1875rem;
  }
  .your-home-title {
    font-size: 2.5rem;
  }
  .your-home-content {
    width: 39.31rem;
    gap: 1.5rem;
  }
  .your-home-image {
    width: 25.8125rem;
    height: 25.8125rem;
  }
}
@media (min-width: 1440px) {
  .your-home-container {
    padding: 4rem 11.75rem 7.37rem 5rem;
  }
}
