.parallax {
  background: linear-gradient( rgba(20,20,20, .8), rgba(20,20,20, .5)), transparent url("../assets/img/background/asd2.jpg") no-repeat top;
  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-size: 100% 100%;
  margin-top: -10px !important;
  width: 100%;

}

.close1 {
  position:absolute;
  right:-70px;
  top:0;
  z-index:999;
  font-size:3rem;
  font-weight: bold;
  color:#aaa;
  opacity:10;
  background: none;
  border: none;
  cursor: pointer;
  float:right;
}

.close1:hover{
	color: #fff;
}

.context{
	font-family:"Montserrat", sans-serif;
	font-size:3em;
	color: #fff;
	text-align: center;
	text-transform: uppercase;
	width: 100%;
}

.context p {
	text-transform: uppercase;
	font-size: 0.8em;
	color: #fff;
	text-align: center;
	font-family: "Raleway", sans-serif;
	line-height: 35px;
}

.play-btn {
  width: 80px;
  height: 80px;
  background: #0069d9;
  border-radius: 50%;
  position: relative;
  display: block;
  margin: auto;
  /*box-shadow: 0px 0px 25px 3px #0069d9;*/
  cursor: pointer;
  border: 4px solid rgba(255, 255, 255, 1);
}

/* triangle */
.play-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-40%) translateY(-50%);
  transform: translateX(-40%) translateY(-50%);
  transform-origin: center center;
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 25px solid #fff;
  z-index: 100;
  -webkit-transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

/* pulse wave */
.play-btn:before {
  content: "";
  position: absolute;
  width: 150%;
  height: 150%;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation: pulsate1 2s;
  animation: pulsate1 2s;
  -webkit-animation-direction: forwards;
  animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, .75);
  top: -25%;
  left: -25%;
  background: rgba(198, 16, 0, 0);
}

@-webkit-keyframes pulsate1 {
  0% {
    -webkit-transform: scale(0.6);
    transform: scale(0.6);
    opacity: 1;
    box-shadow: inset 0px 0px 25px 3px rgba(255, 255, 255, 0.75), 0px 0px 25px 10px rgba(255, 255, 255, 0.75);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
    box-shadow: none;

  }
}

@keyframes pulsate1 {
  0% {
    -webkit-transform: scale(0.6);
    transform: scale(0.6);
    opacity: 1;
    box-shadow: inset 0px 0px 25px 3px rgba(255, 255, 255, 0.75), 0px 0px 25px 10px rgba(255, 255, 255, 0.75);
  }
  100% {
    -webkit-transform: scale(1, 1);
    transform: scale(1);
    opacity: 0;
    box-shadow: none;

  }
}
