*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
a{
	color: #000;
	text-decoration: none;
}
img{
    max-width: 100%;
    display:block;
}
body{
font-family: Inter, sans-serif;
font-size: 16px;
line-height: 26px;
font-weight: 400;
color: #000;
background: #fff;
margin: 0;
overflow-x: hidden;
}
.lpd-ingredients-4-container{
max-width: 1400px;
padding: 0 20px;
margin: 0 auto;
}

.lpd-ingredients-4-hidden-desktop{
	display: none;
}


.lpd-ingredients-4-ingredients{
	padding: 120px 0;
}
.lpd-ingredients-4-heading{
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
}
.lpd-ingredients-4-heading-title-col{
	width: 60%;
}
.lpd-ingredients-4-heading-title-col h2{
	font-size: 52px;
	line-height: 130%;
	font-weight: 700;
}
.lpd-ingredients-4-btn-primary{
	display: inline-flex;
	padding: 20px 40px;
	color: #fff;
	font-weight: 700;
	text-transform: uppercase;
	border-radius: 100px;
	background: #046FD3;
	align-items: center;
	justify-content: center;
}
.lpd-ingredients-4-ingredients-row{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: 1fr;
	grid-column-gap: 25px;
	grid-row-gap: 25px;
	margin: 60px 0 0;
}
.lpd-ingredients-4-ingredient-item{
	padding: 20px;
	background: rgba(160, 200, 255, 0.28);
}
.lpd-ingredients-4-ingredient-info{
	margin: 25px 0 0;
	padding: 0 20px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	text-align: center;
}
.lpd-ingredients-4-ingredient-info h3{
	font-size: 24px;
	font-weight: 700;
	line-height: 130%;
	text-transform: uppercase;
}
.lpd-ingredients-4-ingredient-info p{
	font-size: 18px;
	font-weight: 400;
	line-height: 130%;
}
@media (max-width: 1280px){

}

@media (max-width: 992px){
.lpd-ingredients-4-hidden-desktop{
	display: block;
}
.lpd-ingredients-4-hidden-mobile{
	display: none;
}
.lpd-ingredients-4-heading{
	flex-direction: column;
	justify-content: center;
	text-align: center;
}
.lpd-ingredients-4-heading-title-col{
	width: 100%;
}
.lpd-ingredients-4-btn-primary{
	display: flex;
}
}

@media (max-width: 768px){
.lpd-ingredients-4-ingredients-row{
	display: flex;
	padding: 0 20px 10px 0;
	width: 100vw;
	overflow: auto;
	gap: 0;
}
.lpd-ingredients-4-ingredient-item{
	width: 285px;
	flex-shrink: 0;
	margin-right: 20px;
}
}

@media (max-width: 479px){
.lpd-ingredients-4-ingredients{
	padding: 50px 0;
}
.lpd-ingredients-4-ingredients-row{
	margin: 40px 0 0;
}
.lpd-ingredients-4-heading-title-col h2{
	font-size: 32px;
}
.lpd-ingredients-4-ingredients-row{
	grid-template-columns: repeat(1, 1fr);
}
.lpd-ingredients-4-ingredient-info h3 {
    font-size: 20px;
}
.lpd-ingredients-4-ingredient-info p{
	font-size: 16px;
}
}