@import url(//fonts.googleapis.com/css?family=Open+Sans:400,800);
.play {
  font-family: 'Open Sans', sans-serif;
  text-align: center;
  display: block;
  width: 0;
  height: 0;
  border-top: 50px solid transparent;
  border-bottom: 50px solid transparent;
  border-left: 60px solid #ffffff;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  left: 10px;
}
.play:before {
  content: '';
  position: absolute;
  top: -78px;
  left: -118px;
  bottom: -78px;
  right: -38px;
  border-radius: 50%;
  border: 15px solid #FDFDFD;
  z-index: 2;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
}
.play:after {
  content: '';
  opacity: 0;
  transition: opacity 0.6s;
  -webkit-transition: opacity 0.6s;
  -moz-transition: opacity 0.6s;
}
.play:hover:before, .play:focus:before {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
}
.play.active {
  border-color: transparent;
}
.play.active:after {
  content: '';
  opacity: 1;
  width: 70px;
  height: 80px;
  background: #FDFDFD;
  position: absolute;
  right: 5px;
  top: -40px;
  border-left: 20px solid #FDFDFD;
  box-shadow: inset 30px 0 0 0 #FDFDFD;
}







.clip-polygon-small-image
{
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  height: 200px;
  width: 200px;
  -webkit-clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
  clip-path: url("#clipPolygonSmall");
}








.clip-polygon
{
  height: 400px;
  width: 400px;
  clip-path: url("#clipPolygonCenter");
}

.clip-polygon-small
{
  height: 200px;
  width: 200px;
  clip-path: url("#clipPolygonSmall");
}

.clip-polygon-top-center
{
  height: 400px;
  width: 760px;
  clip-path: url("#clipPolygonTopCenter");
}

.clip-polygon-top-left
{
  height: 625px;
  width: 760px;
  clip-path: url("#clipPolygonTopLeft");
}

.clip-polygon-top-right
{
  height: 625px;
  width: 760px;
  clip-path: url("#clipPolygonTopRight");
}