#title {
  
  background-color: black;
}
#title div.wrap {
  height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
  width: 980px;
  position: relative;
  overflow: hidden;
}
#title div.wrap:before{
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-image: linear-gradient(to right, #000 0%, rgba(0, 0, 0, 0.25) 25%, rgba(0, 0, 0, 0) 50%,rgba(0, 0, 0, 0.25) 75%, #000 100%);
  z-index: 2;
}
#title div.wrap video{
  
  position: relative;
  transform: scale(1.35);
  left: -2%;
  top: 0%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  position: absolute;
}
#title div.wrap h2 {
  
  line-height: 2;
  z-index: 3;
}
#title div.wrap p {
  
  line-height: 1.7;
  font-size: 20px;
  z-index: 3;
}
#title div.wrap div {
  
  padding-top: 15px;
  z-index: 3;
}
#title div.wrap div ul {
  
  display: flex;
  gap: 6px;
}
#title div.wrap div ul a:nth-child(1) {
  
  padding: 10px 29px 6px 13px;
  background-color: #eee;
  border-radius: 19px;
  font-size: 13px;
  position: relative;
  color: #333;
}
#title div.wrap div ul a.playstop.active{
  background: transparent url('../img/stop2.png') center/18px scroll no-repeat;
}
#title div.wrap div ul a.soundOnOff.active{
  background: transparent url('../img/soundOn.png') center/18px scroll no-repeat;
}
#title div.wrap div ul a.playstop {
  
  background: transparent url('../img/play.png') center/18px scroll no-repeat;
    color: white;
  border: 1px solid #eee;
  font-size: 0px;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  position: relative;
}
#title div.wrap div ul a.soundOnOff {
  
  background: transparent url('../img/soundoff.png') center/18px scroll no-repeat;  
    color: white;
  border: 1px solid #eee;
  font-size: 0px;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  position: relative;

}

#title div.wrap div ul a:nth-child(1)::after{
  content: "";
  width: 8px;
  height: 8px;
  display: block;
  position: absolute;
  right: 12px;
  top: 12px;
  border-top: 1px solid;
  border-right: 1px solid;
  transform: rotate(45deg);
}