.site_button {
    font-size: 18px;
    color: #000;
    width: 175px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-transform: capitalize;
    font-weight: 500;
    background: #fff;
    cursor:pointer;
    font-family: 'Poppins', sans-serif;
    /* border: 2px solid;
    border-image-slice: 1;
    border-image-source: linear-gradient(to right, rgb(60 182 68) 7%, rgb(173 212 44) 48%); */
    overflow: 	hidden;	
    position: relative;
    border: solid 2px transparent !important;
    border-radius: 50px;
    background-image: linear-gradient(white, white), linear-gradient(to right, rgb(60 182 68) 7%, rgb(173 212 44) 48%);
    background-origin: border-box;
    background-clip: content-box, border-box;
}
.site_button span {
    z-index: 1;
}
.site_button::after{
    content: "";
    position: absolute;
    background: linear-gradient(90deg, rgba(24,172,76,1) 0%, rgba(173,212,44,1) 30%, rgba(173,212,44,1) 58%, rgba(24,172,76,1) 100%);
    background-size: 290% auto;
    animation: btnhover 5s linear infinite;
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%;
    transition: 1s;		
}
.site_button:hover::after{	
	left: 0;
}
button.site_button{
	background: #fff !important;
}
@keyframes btnhover {
	from {
		background-position: 150% center;
	}
}
.site_button p {
    z-index: 1;
}

@media all and (min-width: 320px) and (max-width: 767px) {
	.site_button {
        width: 150px;
		height: 45px;
	    font-size: 15px;
	}
}

@media all and (min-width: 481px) and (max-width: 767px) {
 
}

@media all and (min-width: 768px) and (max-width: 980px) {
	.site_button {
        width: 150px;
		height: 45px;
	    font-size: 15px;
	}
}

@media only screen and (min-width: 981px) and (max-width: 1024px) {
	.site_button {
        font-size: 16px;
	    width: 155px;
	    height: 45px;
	}
}

@media all and (min-width: 1025px) and (max-width: 1140px) {
	.site_button {
        font-size: 16px;
	    width: 155px;
	    height: 45px;
	}
}

@media all and (min-width: 1141px) and (max-width: 1280px) {
  	.site_button {
	    width: 160px;
        font-size: 17px;
	}
}

@media all and (min-width: 1281px) and (max-width: 1440px) {

}

@media all and (min-width: 1441px) and (max-width: 1680px) {

  
}

@media all and (min-width: 1681px) and (max-width: 1880px) {

}


