.section-title {
  font-family: Literata;
  font-weight: 700;
  font-size: 48px;
  line-height: 125%;
  margin: 0;
  padding-bottom: 60px;
  color: #1B593E;
}

.products-content {
  display: flex;
  gap: 20px;
}

.products-content__left {
  min-width: 400px;
}

.products-content__item {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px 0;
}

.products-content__title {
  font-family: Literata;
  font-weight: 600;
  font-size: 32px;
  line-height: 125%;
  margin: 0;
  color: #857040;
}

.product-content__btn {
  padding: 10px 20px;
	background-color: #52b788;
	border-radius: 4px;
	border: none;
	outline: none;
	font-family: Montserrat;
	font-weight: 700;
	font-size: 14px;
	line-height: 100%;
	text-decoration: none;
	color: #fff;
  align-self: flex-start;
}

.products-content__right {
  position: relative;
}

.products-content__right::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #1B593E4D;
  z-index: 1;
}

.products-content__right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 992px) {
  .products-content {
    flex-direction: column;
  }
}
