.site_button {
	display: flex;
	align-items: center;
	justify-content: center;
	background: #111;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 300;
	color: #fff;
	position: relative;
	z-index: 2;
	width: 100%;
	height: 100%;
	overflow: hidden;
	cursor: pointer;
	transition: 1s;
}

.site_button_border {
	width: 153px;
	height: 46px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: linear-gradient(180deg, #efe39373 0%, #9a673075 100%);
	border-radius: 8px;
	padding: 1px;
	z-index: 2;
	position: relative;
	transition: 1s;
}

.site_button span {
	margin: auto;
	position: relative;
	z-index: 1;
}

.site_button::after {
	position: absolute;
	content: "";
	height: 0;
	width: 50%;
	background: linear-gradient(180deg, #EFE393 0%, #9A6730 100%);
	left: 0;
	top: 0;
	bottom: auto;
	transition: 1s;
}

.site_button::before {
	position: absolute;
	content: "";
	height: 0;
	width: 50%;
	background: linear-gradient(180deg, #EFE393 0%, #9A6730 100%);
	right: 0;
	top: auto;
	bottom: 0;
	transition: 1s;
}

.site_button_border:hover .site_button::after,
.site_button_border:hover .site_button::before {
	height:100%;
}

.site_button_border:hover .site_button {
	color: #111;
	font-weight: 500;
}

.pdr {
	padding-right: 10px;
}

.pdt {
	padding-top: 20px;
}

@media all and (min-width: 320px) and (max-width: 767px) {
	.site_button_border {
		width: 130px;
		height: 35px;
	}

	.site_button {
		font-size: 14px;
	}

	.pdr {
		padding-right: 7px;
	}
}

@media all and (min-width: 768px) and (max-width: 980px) {
	.site_button_border {
		width: 130px;
		height: 40px;
	}

	.site_button {
		font-size: 14px;
	}

	.pdr {
		padding-right: 7px;
	}
}

@media only screen and (min-width: 981px) and (max-width: 1024px) {
	.site_button_border {
		width: 130px;
		height: 40px;
	}

	.site_button {
		font-size: 14px;
	}

	.pdr {
		padding-right: 7px;
	}
}

@media all and (min-width: 1025px) and (max-width: 1140px) {
	.site_button_border {
		width: 130px;
		height: 40px;
	}

	.site_button {
		font-size: 14px;
	}
}

@media all and (min-width: 1141px) and (max-width: 1280px) {
	.site_button_border {
		width: 140px;
		height: 43px;
	}
}

@media all and (min-width: 1281px) and (max-width: 1440px) {
	.site_button_border {
		width: 145px;
		height: 44px;
	}
}

@media all and (min-width: 1441px) and (max-width: 1680px) {
	.site_button_border {
		width: 150px;
		height: 44px;
	}
}

@media all and (min-width: 1681px) and (max-width: 1880px) {}