/* CSS Document */
.section-white .grid {
    display: flex;
    flex-wrap: wrap;
    gap: 70px;
    row-gap: 25px;
    justify-content: center;
    margin: 0 0 32px;
}
.section-white .grid .item {
	margin: 30px 0 0;
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 13px;
	justify-content: start;
	align-items: center;
	padding: 35px 20px;
	width: calc(25% - 30px);
	height: auto;
	min-height: 250px;
	border-radius: 15px;
	border-bottom: 6px solid var(--neutral-blue, #34657F);
	background: var(--salmon, #FF8DA1);
	transition: all .3s ease;
}
/*
.section-white .grid .item:hover {
	background: rgb(0 56 101 / 80%)
}
*/
.section-white .grid .item .icon {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	min-width: 70px;
	width: 70px;
	height: 70px;
	border-radius: 70px;
	border: solid 2px #ff8da1;
	color: #ff8da1;
	background-color: #fff;
	font-size: 30px;
	font-style: normal;
	font-weight: 300;
	line-height: normal;
	transition: all .3s ease;
}
/*
.section-white .grid .item:hover .icon {
	color: #fff;
	background-color: #ff8da1;
}
*/
.section-white .grid .item h3 {
	font-size: 20px;
	color: #fff;
	text-align: center;
}
.section-white .grid .item p {
	border-top: 2px solid #ff8da1;
	color: #fff;
	text-align: center;
	font-family: Poppins;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 18px; /* 128.571% */
	letter-spacing: 0.6px;
	padding: 13px 0 0;
	margin: 0;
	transition: all .3s ease;
}
/*
.section-white .grid .item:hover p {
	color: #ff8da1;
}
*/
@media (max-width: 1200px) {}
@media (max-width: 991px) {
	.section-white .grid .item {
		width: calc(50% - 20px);
	}
}
@media (max-width: 540px) {
	.section-white .grid .item {
		width: 100%;
	}
}