.products-delivery__wrapper {
	display: flex;
	flex-direction: column;
}

.products-delivery__header {
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding-bottom: 60px;
}

.products-delivery__title {
	margin: 0;
	font-family: Literata;
	font-weight: 700;
	font-size: 48px;
	line-height: 125%;
	max-width: 802px;
	color: #1b593e;
}

.products-delivery__subtitle {
	margin: 0;
	font-family: Montserrat;
	font-weight: 400;
	font-size: 16px;
	line-height: 175%;
	color: #606060;
}

.products-delivery__content {
	display: grid;
	gap: 20px;
	grid-template-columns: repeat(4, 1fr);
}

.products-delivery__banner {
	grid-area: 1 / 1 / 1 / 3;
}

.products-delivery__banner img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 4px;
}

.products-delivery__banner-desc {
	grid-area: 1 / 3 / 1 / 5;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 20px;
}

.products-delivery__banner-title {
	font-family: Literata;
	font-weight: 600;
	font-size: 32px;
	line-height: 125%;
	color: #606060;
	margin: 0;
}

.products-delivery__banner-title:first-child {
	color: #857040;
}

.products-delivery__banner-btn {
	text-decoration: none;
	font-family: Montserrat;
	font-weight: 700;
	font-size: 14px;
	line-height: 100%;
	color: #fff;
	background-color: #52b788;
	border: none;
	outline: none;
	border-radius: 4px;
	padding: 12px 20px;
}

.products-delivery__picture img {
	width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

@media (max-width: 992px) {
	.products-delivery__content {
		grid-template-columns: 1fr 1fr;
	}

	.products-delivery__banner {
		grid-area: 1 / 1 / 1 / 3;
	}

	.products-delivery__banner-desc {
		grid-area: 2 / 1 / 2 / 3;
	}
}

@media (max-width: 560px) {
	.products-delivery__content {
		grid-template-columns: 1fr;
	}

	.products-delivery__banner {
		grid-area: auto;
	}

	.products-delivery__banner-desc {
		grid-area: auto;
	}

  .products-delivery__picture {
    max-height: 200px;
  }
}
