.secret {
	background-color: #F2F7FA;
	background-image: url("images/bg-1.svg"), url("images/bg-2.svg");
	background-position: top left, top right;
	background-repeat: no-repeat;
	padding: 90px 0;
	margin-bottom: 80px;
}
.secret ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.secret li {
	width: 17%;
	min-width: 185px;
	margin-right: 3%;
	text-align: center;
	margin-bottom: 20px;
}
.secret li:last-child {
	margin-right: 0;
}
.secret p {
	font-size: 20px;
	line-height: 24px;
	font-weight: 600;
	margin-top: 14px;
	margin-bottom: 12px;
}
.secret span {
	display: block;
	font-size: 18px;
	line-height: 22px;
	margin: 0;
}

@media screen and (max-width: 800px) {
	.secret {
		background-image: none;
		padding: 65px 0;
		margin-bottom: 40px;
	}
	.secret ul {
		flex-direction: column;
		align-items: center;
	}
	.secret li {
		width: 100%;
		margin-right: 0;
	}
}