.link-list-v2 {
	background-image: url(../../assets/icons/utility/green-texture.png);
	padding: 41px 20px;
	background-size: cover;
	background-position: center;
}
.link-list-v2 .flex {
	position: relative;
	width: 1214px;
	margin: 0 auto;
	justify-content: space-between;
	padding-left: 68px;
}
@keyframes slowSpin {
  from {
	transform: rotate(0deg);
  }
  to {
	transform: rotate(360deg);
  }
}

.link-list-v2 .title-icon {
	animation: slowSpin 20s infinite linear;
	box-shadow: 0 1px 10px 0px rgba(0, 0, 0, 0.26);
	border-radius: 50%;
	width: 80px;
	height: 80px;
	margin: 0;
	position: absolute;
	top: -17px;
	left: -65px;
}
.link-list-v2 ul {
	list-style: none;
	display: flex;
}
.link-list-v2 ul li .button {
	background: #FFFBE7;
	border: none;
	border-radius: 51px;
	text-decoration: none;
	min-width: 162px;
	text-align: center;
	padding: 12px 10px;
	height: 48px;
	font-size: 13px;
	margin: 0 9px;
	box-shadow: 0 1px 10px 0px rgba(0, 0, 0, 0.26);
}
.link-list-v2 ul li .button:hover {
	background: #D8D7BC;
}
.link-list-v2 input {
	width: 595px;
	background: #D8D7BC;
	margin: 0;
	border: none;
	height: 49px;
	border-radius: 25px;
	box-shadow: 0 1px 10px 0px rgba(0, 0, 0, 0.26);
	text-align: left;
	padding: 0 39px;
	font-size: 16px;
	background-image: url(../../assets/icons/utility/search.svg);
	background-repeat: no-repeat;
	background-position: center right 23px;
}
@media all and (max-width:1360px) {
	.link-list-v2 .title-icon {
		left:-20px;
	}
}
@media all and (max-width: 1260px) {
	.link-list-v2 input {
		width:450px;
	}
	.link-list-v2 .flex {
		width:1075px;
	}
}
@media all and (max-width:1130px) {
	.link-list-v2 .flex {
		width: 600px;
		display: block;
	}
	.link-list-v2 input {
		width: 100%;
		margin: 20px 0 0;
	}
}
@media all and (max-width:650px) {
	.link-list-v2 .title-icon {
		left: inherit;
		position: relative;
		margin: 0 auto 20px;
		top: inherit;
	}
	.link-list-v2 ul li .button {
		margin: 5px 8px 5px 0;
		width: fit-content;
		min-width: fit-content;
		padding: 12px 28px;
	}
	.link-list-v2 {
		padding: 27px 10px;
	}
	.link-list-v2 .flex {
		width: 100%;
		display: block;
		padding: 0;
		margin: 0 auto;
	}
	.link-list-v2 ul {
		list-style: none;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	.link-list-v2 ul li {
		width:49%;
	}
	.link-list-v2 ul li:last-child {
		width:100%;
	}
	.link-list-v2 input{
		width: 100%;
		margin: 10px 0 0;
	}
	.link-list-v2 ul li .button {
		width:100%;
		min-width: 100%;
	}
}
@media all and (max-width:500px) {
	.link-list-v2 ul li .button {
		margin: 0 0 10px;
		width: fit-content;
		min-width: 100%;
		padding: 12px 28px;
	}
}