.ops_contents_banner{
	width: 100%;
	padding: 10px 10px 10px 10px;
}

.ops_conversion_button{
	width: 100%;
	height: auto;
	padding: 20px 0 20px 0;
	text-align: center;
	margin: 0 auto;
}

.ops_conversion_button p{
	color: #fff; 
	font-family: "Roboto", sans-serif;
  	font-weight: 500;
  	font-style: normal;
}


.button a {
    background: #000;
    border-radius: 9999px;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    max-width: 400px;
    padding: 20px 32px;
    font-family: "Roboto", sans-serif;
  	font-weight: 500;
  	font-style: normal;
    color: #fff;
    line-height: 1.4;
    text-decoration: none;
    text-align: center;
    transition: 0.3s ease-in-out;
}
.button a:hover {
    background: #ccc;
    color: #FFF;
}
.button a:after {
    content: '';
    width: 8px;
    height: 8px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg) translateY(-50%);
    position: absolute;
    top: 50%;
    right: 30px;
    border-radius: 1px;
    transition: 0.3s ease-in-out;
}
.button a:hover:after {
    border-color: #FFF;
}