/*body{
  font-family: 'Lato', sans-serif;
}*/

.wrapper{
  position: absolute;
  left: 30%;
  transform: translate(-50%, -50%);
}

.link_wrapper{
  position: absolute;
}

a.special{
  display: block;
  width: 250px;
  height: 50px;
  line-height: 50px;
  font-weight: bold;
  text-decoration: none;
  background: #007bff;
  text-align: center;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all .35s;
}

.icon{
  width: 50px;
  height: 50px;
  border: 3px solid transparent;
  position: absolute;
  transform: rotate(45deg);
  right: 0;
  top: 0;
  z-index: -1;
  transition: all .35s;
}

.icon svg{
  width: 30px;
  position: absolute;
  top: calc(50% - 15px);
  left: calc(50% - 15px);
  transform: rotate(-45deg);
  fill: #B0BCC5;
  transition: all .35s;
}

a.special:hover{
  width: 200px;
  border: 3px solid #B0BCC5;
  background: transparent;
  color: #B0BCC5;
}

a.special:hover + .icon{
  border: 3px solid #B0BCC5;
  right: -25%;
}

/* Video buttons */
.btn {
  background-color: DodgerBlue; 
  border: none; 
  color: white; 
  padding: 12px 16px; 
  font-size: 16px; 
  cursor: pointer; 
}

.btn:hover {
  background-color: RoyalBlue;
}