@import "https://netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css";

html, body {
 background: #234;
font-family:"Poppins", sans-serif;
}
.imgbuts {
    display:flex;
max-width: 350px;
  width: 100%;
  height: auto;
}
.dnbtn {
    max-width: 350px;
  border: 2px solid #0ff;
  border-radius: 50px;
  position: absolute;
  color: #0ff;
  transform: translate(-50%, -50%);
  padding: 25px 0 0 0;
  height: 25px;
  text-decoration: none;
  transition: .3s;
}

.dnbtn:before {
  font-family: 'ionicons';
  content: '\f2dd';
  font-size: 26px;
	color: #0ff;
  position: absolute;
  transform: translate(-50%, -50%);
  transition: .3s;
}

.dnbtn:hover:before {
  display: none;
}

.dnbtn:hover:after {
  font-family: Prompt;
  content: 'DOWNLOAD';
  color: #0ff;
  font-size: 18px;
  position: absolute;
  transform: translate(-50%, -50%);
  transition: .3s;
  animation: fadein .3s;
}

.dnbtn:hover {
  width: 160px;
}
a:link{text-decoration:none}
.vn-red a{
  background-color:#e74c3c;
  display:inline-block;
  position:relative;
  margin:30px 5px;
  padding:20px 20px 20px 80px;
  color:#fff;
  transition:all 0.4s ease
}

.vn-red a:before{
  content:"\f019";
  font-family:fontAwesome;
  position:absolute;
  font-style: normal;
  font-weight: normal;
  text-decoration: inherit;
  font-size:28px;
  border-radius:0 20px 0 0;
  color:#000;
  background-color:#fff;
  opacity:0.3;
  padding:20px;
  top:0;
  left:0
}

.vn-red a:hover{
  background:#2c3e50
}

a.dobut {
    max-width: 200px;
    background: #ffffff;
    border: solid 1px #e6e6e6;
    border-radius: 2px;
    display: inline-block;
    height: 100px;
    line-height: 100px;
    margin: 5px;
    position: relative;
    text-align: center;
    vertical-align: middle;
    width: 100px;
}

a.dobut span {
    background: #f2594b;
    border-radius: 4px;
    color: #ffffff;
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    line-height: normal;
    padding: 5px 10px;
    position: relative;
    text-transform: uppercase;
    z-index: 1;
}

a.dobut span:last-child {
    margin-left: -20px;
}

a.dobut:before,
a.dobut:after {
    background: #ffffff;
    border: solid 3px #9fb4cc;
    border-radius: 4px;
    content: '';
    display: block;
    height: 35px;
    left: 50%;
    margin: -17px 0 0 -12px;
    position: absolute;
    top: 50%;
    /*transform:translate(-50%,-50%);*/
    
    width: 25px;
}

a.dobut:hover:before,
a.dobut:hover:after {
    background: #e2e8f0;
}
/*a.dobut:before{transform:translate(-30%,-60%);}*/

a.dobut:before {
    margin: -23px 0 0 -5px;
}

a.dobut:hover {
    background: #e2e8f0;
    border-color: #9fb4cc;
}

a.dobut:active {
    background: #dae0e8;
    box-shadow: inset 0 2px 2px rgba(0, 0, 0, .25);
}

a.dobut span:first-child {
    display: none;
}

a.dobut:hover span:first-child {
    display: inline-block;
}

a.dobut:hover span:last-child {
    display: none;
}

@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeout {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}