.ref-element-main{
	_background: yellow;
	border: 1px solid #1b3954;
	box-shadow: 0px 6px 15px grey;
	display: flex;
	margin:auto;
	width: 1000px;
	justify-content: space-evenly;
	
	margin-bottom: 25px;
	
}
.ref-logo{
	width: 30%;
	_border: 1px solid black;
}
.ref-info{
	width: 65%;
	_border: 1px solid black;
	padding-bottom: 15px;
}
.button {
  display: inline-block;
  border-radius: 4px;
  background-color: #acb200;
  border: none;
  color: white;
  text-align: center;
  font-size: 20px;
  padding: 20px;
  width: 210px;
  transition: all 0.5s;
  cursor: pointer;
  margin: 5px;
}

.button span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.button span:after {
  content: '\00bb';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}

.button:hover span {
  padding-right: 25px;
}

.button:hover span:after {
  opacity: 1;
  right: 0;
}