.contents {
  padding: 160px 0px 40px 0px;
  background-color: var(--bg-color-light);
}

.contents h2 {
  font-size: 92px !important;
}

.contents .description {
    padding: 80px 0px 30px;
    font-size: 32px;
    line-height: 36px;
    text-align: center;
    color: black;
}

.contents ol {
	list-style: none;
	counter-reset: list;
	padding: 0 1rem;
  display: inline-block;
  margin-top: 40px !important;
}

.contents li {
	--stop: calc(100% / var(--length) * var(--i));
	--l: 62%;
	--l2: 88%;
	--h: calc((var(--i) - 1) * (180 / var(--length)));
	--c1: hsl(var(--h), 71%, var(--l));
	--c2: hsl(var(--h), 71%, var(--l2));
	
	position: relative;
	counter-increment: list;
	width: 48%;
    height: 170px;
	margin: 10px 1% !important;
	padding: 10px 10px;
	box-shadow: 0.1rem 0.1rem 1.5rem rgba(0, 0, 0, 0.3);
	border-radius: 30px;
	overflow: hidden;
	background-color: white;
  	float: left;
	display: flex;
}

.contents li::before {
	content: '';
	display: block;
	width: 100%;
	height: 1rem;
	position: absolute;
	top: 0;
	left: 0;
	background: var(--line-color);
}

.contents .title {
	width: 100%;
	display: flex;
	align-items: center;
	color: rgb(70 70 70);
	font-size: 32px !important;
	line-height: 32px !important;
	font-family: var(--font-secondary) !important;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: -1px;
	margin-left: 120px;
}

.contents .circle {
	display: flex;
	justify-content: center;
	align-items: center;
	flex: 0 0 auto;
	margin-right: 1rem;
	width: 100px;
	height: 100px;
	content: counter(list);
	padding: 1rem;
	border-radius: 50%;
	background-color: var(--line-color);
	color: white;
  	font-size: 46px;
}

.contents .circle img {
	width: 90%;
	margin: 0 auto;
	fill: #ffffff;
}

/*.contents h3::before {
	display: flex;
	justify-content: center;
	align-items: center;
	flex: 0 0 auto;
	margin-right: 1rem;
	width: 80px;
	height: 80px;
	content: counter(list);
	padding: 1rem;
	border-radius: 50%;
	background-color: var(--line-color);
	color: white;
  font-size: 46px;
}*/

.contents li {
	margin: 3rem auto;
	padding: 3rem 2rem 2rem;
}


.contents h3::before {
	margin-right: 1.5rem;
}

@media screen and (max-width:1367px){
	.contents h2 {
		font-size: 80px !important;
  	}

	.contents h3 {
		font-size: 28px !important;
	}
	
}

@media (max-width: 576px) {
	.contents {
		padding: 90px 0px 30px 0px;
    }

	.contents h2 {
		font-size: 36px !important;
		line-height: 38px !important;
		padding: 0px 10px;
  	}

	.contents h3 {
		font-size: 20px !important;
	}

	.contents .description {
		padding: 40px 0px 20px;
		font-size: 22px;
		line-height: 25px;
	}

	.contents li {
		position: relative;
		counter-increment: list;
		width: 100%;
		height: 104px;
		margin: 0px -10px 20px 0px !important;
		padding: 20px 10px;
		border-radius: 20px;
		overflow: hidden;
		background-color: white;
		display: flex;
		text-align: center;
	}

	.contents li::before {
		content: '';
		height: 0.5rem;
	}

	.contents .title {
		font-size: 20px !important;
		line-height: 20px !important;
		letter-spacing: -1px;
		margin-left: 80px;
		margin-right: 8px;
		margin-top: 10px;
	}

	.contents .circle {
		margin-right: 1rem;
		width: 64px;
		height: 64px;
		content: counter(list);
		padding: 1rem;
		margin-top: 4px;
		border-radius: 50%;
	}

	.contents .circle img {
		width: 110%;
		margin: 0 auto;
		fill: #ffffff;
	}
}

