.first-block {
	margin-top: 20px;
	background: linear-gradient(
		180deg,
		rgba(196, 196, 196, 0) 0%,
		rgba(255, 255, 255, 0) 0.01%,
		rgba(196, 201, 221, 0.3) 100%
	);
	padding-bottom: 120px;
}
.hero {
	padding-bottom: 50px;
}
.hero__container {
	height: 420px;
	background-position: center center !important;
	background-repeat: no-repeat !important;
	background-size: cover !important;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}
.hero__container.hero__container__small {
    height: auto;
    padding-bottom: 24px;
}
.hero__search {
	width: 400px;
	max-width: 100%;
	display: flex;
	align-items: center;
	background: #ffffff;
	border-radius: 18px;
	margin-top: 60px;
	padding: 8px;
	margin-left: -50px;
}
.hero__container__small .hero__search {
	margin-top: 32px;
}
.hero__input {
	width: 400px;
	max-width: 100%;
	background: #ffffff;
	border-radius: 18px;
	padding: 20px;
	border: none;
	outline: none;
	font-size: 16px;
}
.hero__input::placeholder {
	color: #858492;
	font-family: "Inter";
}
.hero__submit {
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 16px;
	background: #ff4104;
	border-radius: 18px;
	cursor: pointer;
	transition: all 0.2s;
	flex: 0 0 60px;
}
.hero__submit:hover {
	background: #fc6431;
}
@media (max-width: 500px) {
	.hero__search {
		max-width: 100%;
		margin-left: 0;
	}
}
/*****************************************************/
.products {
	padding-bottom: 50px;
}
.products__container {
	display: flex;
	gap: 50px;
}
.products__big {
	flex: 0 0 30%;
}
.product-big {
	background: #029de0;
	box-shadow: 0px 4px 53px rgba(35, 56, 137, 0.03);
	border-radius: 31px;
	padding: 25px;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.product-big a {
	text-decoration-color: #fff;
}
.product-big__img {
	display: flex;
	justify-content: center;
	align-items: center;
	background: #f8f9ff;
	border-radius: 24px;
	padding: 28px;
	margin-bottom: 30px;
	width: 100%;
}
.product-big__title {
	font-weight: 600;
	font-size: 24px;
	color: #ffffff;
	margin-bottom: 15px;
	display: block;
}
.product-big__desc {
	font-weight: 400;
	font-size: 14px;
	line-height: 140%;
	color: #ffffff;
	padding-bottom: 25px;
	border-bottom: 2px solid #33c3ff;
	margin-bottom: 25px;
}
.product-big__priceblock {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
}
.price-block {
	display: flex;
}
.price-block__price {
	font-weight: 700;
	font-size: 40px;
	display: block;
	margin-right: 15px;
}
.price-block__price_white,
.price-block__per_white {
	color: #fff;
}
.price-block__per {
	font-weight: 500;
	font-size: 16px;
	line-height: 19px;
}
.product-big__cart {
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #ffe2e0;
	border-radius: 62px;
	padding: 20px;
	transition: background-color 0.2s;
}
.product-big__cart:hover {
	background-color: #dfd5d5;
}
.products__list {
	background-color: #fff;
	filter: drop-shadow(0px 4px 22px rgba(198, 205, 227, 0.13));
	background: #ffffff;
	border-radius: 24px;
	padding: 24px 32px;
}
.products-list {
	display: flex;
	flex-direction: column;
	gap: 32px;
}
.product-list-item {
	display: flex;
}
.product-list-item__img {
	height: 108px;
	flex: 0 0 108px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #f8f9ff;
	border-radius: 24px;
	margin-right: 40px;
}
.product-list-item__content {
	margin-right: 32px;
}
.product-list-item__title {
	display: block;
	margin-bottom: 10px;
	font-weight: 600;
	font-size: 20px;
	line-height: 24px;
	color: #464553;
}
.product-list-item__text {
	font-weight: 400;
	font-size: 16px;
	line-height: 150%;
	color: #858492;
}
.product-list-item__cart {
	display: flex;
	flex-direction: column;
	flex: 0 0 200px;
	align-items: center;
}
.product-list-item__priceblock {
	color: #434343;
	display: flex;
	align-items: center;
	margin-bottom: 18px;
}
.product-list-item__price {
	font-size: 32px;
	margin-right: 16px;
}
.product-list-item__per {
	font-size: 12px;
	line-height: 15px;
}
.product-list-item__add {
	display: flex;
	align-items: center;
	background: #ffe2e0;
	border-radius: 62px;
	padding: 14px 30px;
	gap: 24px;
	font-weight: 500;
	font-size: 16px;
	line-height: 19px;
	color: #ff4104;
	text-decoration: none;
	transition: all 0.2s;
}
.product-list-item__add:hover {
	color: #fff;
	background-color: #029de0;
}
@media (max-width: 1120px) {
	.product-list-item__content {
		margin-right: 10px;
	}
}
@media (max-width: 1030px) {
	.products__container {
		flex-direction: column;
	}
}
@media (max-width: 695px) {
	.product-list-item {
		flex-direction: column;
		gap: 25px;
	}
	.product-list-item__img,
	.product-list-item__content {
		margin-right: 0;
	}
	.product-list-item__cart {
		flex-direction: row;
		justify-content: space-between;
		flex: 0 0 65px;
	}
	.product-list-item__priceblock {
		margin-bottom: 0;
	}
}
@media (max-width: 425px) {
	.product-list-item__cart {
		flex-direction: column;
		gap: 20px;
	}
}
/*****************************************************/
