#delivery {
	padding-bottom: 60px;
}
#delivery h2{
	font-weight: bold;
	font-size: 30px;
	line-height: 43px;
	text-transform: uppercase;
	color: #455B7B;
	margin-bottom: 40px;
}
#delivery h4 {
	font-weight: 500;
	font-size: 18px;
	line-height: 26px;
	color: #455B7B;
	margin-bottom: 12px;
}
#delivery h3 {
	font-weight: bold;
	font-size: 20px;
	line-height: 32px;
	display: flex;
	align-items: center;
	text-transform: uppercase;
	color: #455B7B;
}
#delivery p {
	font-weight: normal;
	font-size: 14px;
	line-height: 26px;
	color: #494949;
}
.grid-delivery {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-gap: 20px;
	margin-bottom: 40px;
}
.grid-delivery div {
	background: #fff;
	box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.15);
	border-radius: 10px;
	padding: 30px;
}
.grid-delivery span {
	background: #F8DB48;
	width: 90px;
	height: 90px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 12px;
}
.delivery-description h4 {
	margin-top: 35px;
	margin-bottom: 10px;
}
.delivery-description ul {
	margin-bottom: 25px;
	margin-top: 12px;
}
.delivery-description li p {
	padding-left: 14px;
	position: relative;
}
.delivery-description li p:after {
	content: '';
	position: absolute;
	left: 0;
	top: 11px;
	width: 5px;
	height: 5px;
	background: #F8DB48;
	border-radius: 50%;
}
@media (max-width: 991px){
	#delivery {
		padding: 0 40px 0 40px;
	}
	.grid-delivery {
		grid-template-columns: 1fr;
		grid-gap: 40px;
	}
	.question {
		margin-top: 244px;
	}
}
@media (max-width: 767px){
	#delivery {
		padding: 0;
	}
	#delivery h2 {
		margin: 26px 0;
		padding: 0 20px;
		font-size: 20px;
		line-height: 32px;
	}
	.grid-delivery {
		padding: 0 20px;
		grid-gap: 20px;
	}
	.delivery-description {
		padding: 0 20px;
	}
	.question {
		margin-top: 163px;
	}
	#delivery h3 {
		font-size: 16px;
	}
}

