		
.project-code {
	padding: 42px 0;
	font-size: 31px;
	border: 1px solid #093;
	text-align: center;
}
.stream-btn {
	width: 40%;
	margin: 25px auto;
	padding: 25px 0;
	font-size: 31px;
	border: 1px solid #093;
	text-align: center;
	display: block;
	box-shadow: 0px 0px 9px #0099334d;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	transition: all .3s cubic-bezier(.34, 1.61, .7, 1);
}
.stream-btn:hover {
	-webkit-transform: translate3d(0, -10px, 0);
	transform: translate3d(0, -10px, 0);
}
.skype {
      -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
    width: 34px;
    height: 34px;
    position: relative;
    margin: 6px auto -4px auto;
    border-radius: 150px;
    animation: play 1.5s ease infinite;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
    display: inline-block;
    left: 47%;
	top:90px !important;
}
.skype:after {
     background: #30a411;
    background-size: 100% 100%;
    content: "\f03d";
    color: #fff;
    font-size: 17px;
    line-height: 31px;
    font-family: "FontAwesome";
    font-weight: bold;
    text-align: center;
    width: 34px;
    height: 34px;
    margin: 0 auto 0 auto;
    position: absolute;
    border-radius: 150px;
    z-index: 99999 !important;
}
.skype:hover {
  animation: none;
  transform: scale(1.2);
  transition: 0.5s;
}

@keyframes play {
  0% {
    transform: scale(1);
  }
  15% {
    box-shadow: 0 0 0 10px rgba(48, 164, 17, 0.2);
  }
  25% {
    box-shadow: 0 0 0 10px rgba(48, 164, 17, 0.2), 0 0 0 20px rgba(48, 164, 17, 0.2);
  }
  30% {
    transform: scale(1.2);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(48, 164, 17, 0.2), 0 0 0 20px rgba(48, 164, 17, 0.2), 0 0 0 30px rgba(48, 164, 17, 0.2);
  }
  80% {
    transform: scale(1);
  }
}