.lets-play {
  width: auto;
  float: right;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  transition: all 0.25s ease-out 0s;
  margin: 8px 0 0;
  position: relative;
  z-index: 9;
  display: flex;
  align-items: center;
}
.team-wrapp .lets-play {
    width: 42px;
    margin: 0 0 0;
    position: absolute;
    bottom: 22px;
    right: 22px;
}
#video-wrap:not(.active) {
  opacity: 0;
  visibility: hidden;
}
#video-wrap .video-overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
#video-wrap .video-container {
  width: 53%;
  transition: all 0.3s ease-in-out;
  transform: scale(0.9);
  padding: 0 0 30%;
  position: relative;
  background: transparent;
}
#video-wrap .close-video {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 5%;
  top: 5%;
  width: 42px;
  height: 42px;
  background: none;
  border: none;
  padding: 0;
  transition: all 0.3s ease-in-out;
  z-index: 150;
}
#video-wrap .close-video:before, #video-wrap .close-video:after {
  content: "";
  width: 60%;
  height: 3px;
  background: #ffffff;
  position: absolute;
  transition: all 0.3s ease-in-out;
}
#video-wrap .close-video:before {
  transform: rotate(42deg);
}
#video-wrap .close-video:after {
  transform: rotate(-42deg);
}
#video-wrap .close-video:focus {
  outline: none;
}
#video-wrap .close-video:hover:before, #video-wrap .close-video:hover:after {
  background: #0d8e92;
}
#video-wrap video,
#video-wrap iframe {
  width: 100%;
  height: 100%;
  background: transparent;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 10;
}
#video-wrap video {
  object-fit: cover;
}
#video-wrap.active {
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
  opacity: 1;
  visibility: visible;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 99999999;
}
#video-wrap.active .video-container {
  transform: scale(1);
}

/*Smartphone css*/
@media screen and (max-width: 480px) {
.lets-play { float:none; margin:0 0 0;}
#video-wrap .video-container { width: 90%; padding: 0 0 52%;}
}

@media screen and (min-width:481px) and (max-width:600px) {
.lets-play { float:none; margin:0 0 0;}
#video-wrap .video-container { width: 90%; padding: 0 0 52%;}
}

@media screen and (min-width:601px) and (max-width:767px) {
.lets-play { float:none; margin:0 0 0;}
#video-wrap .video-container { width: 90%; padding: 0 0 51%;}
}

@media screen and (min-width:768px) and (max-width:900px) {
#video-wrap .video-container { width: 74%; padding: 0 0 42%;}
}

@media screen and (min-width:901px) and (max-width:1024px) {
#video-wrap .video-container { width: 62%; padding: 0 0 35%;}
}

@media screen and (min-width:1025px) and (max-width:1240px) {

}