div.about_video_wrapper {
  /* position: relative; */
}

.custom_video_container {
  /* border-radius: 4vw;
  border-radius: 40px; */

  /* overflow: hidden;
  width: 100%;
	max-width: 800px;
	transform: unset;
  margin: 65px auto 0; */

  box-shadow: 0 6px 6px -2px rgba(0,0,0,.5);
}

.custom-video-area {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  margin: auto;
  padding-bottom: 56.25%;
}
.custom-video-area video {
  position: absolute;
  top: 0;
  right: -50%;
  bottom: 0;
  left: -50%;
  min-width: 100%;
  width: 100%;
  min-height: 100%;
  margin: auto;
}

.video-controls {
  position: absolute;
  z-index: 10;
  width: 100%;
  height: 100%;
  /* right: 0;
  bottom: 0 !important;
  left: 0;
  margin: auto;
  padding: 0 0 10px 0;
  transition: all 0.4s ease-in-out; */
  background: transparent;
}
/* progress bar wrapper */
.video-controls .top-wrapper {
  display: none;
}
.video-controls .bottom-wrapper {
  padding: 0 20px 0 20px;
  display: block;
}
.video-controls .bottom-wrapper > div:not(.play-button) {
  display: none;
}
.video-controls .progress-bar {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 5px;
  margin-bottom: 5px;
  cursor: pointer;
  background: rgba(175, 171, 201, .6);
}
.video-controls .progress-bar span {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 0;
  height: 100%;
}
.video-controls .progress-bar .time-bar {
  z-index: 10;
  background: #142b8b;
  background: rgba(46, 26, 71, 0.6);
}
.video-controls .progress-bar .buffer-bar {
  z-index: 5;
  background: rgba(46, 26, 71, .6);
  background: rgba(175, 171, 201, .6);
}
.video-controls_more {
  padding: 0 35px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.video-controls .play-button {
  /* display: inline-block;
  cursor: pointer;
  vertical-align: middle;

  position: absolute;
  width: 3.5vw;
  height: 3.75vw;
  background: white;

  bottom: 40px;
	right: 40px;
  max-width: 45px;
  max-height: 48px; */

  cursor: pointer;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.video-controls .play-button:hover {
  /* background: rgb(46, 26, 71); */
}
/* button state paused */
.video-controls .play-button:before {
  /* font-family: "FontAwesome";
  content: "\f04b";
  color: #fff; */

  content: '';
  background-image: url(../images/icon_play.png);
  background-size: contain;
  position: absolute;
  /* width: 3.5vw;
  height: 3.5vw;
  right: 0px;
  bottom: .1vw;

  width: 100%;
  height: 100%;
  bottom: -2px; */
  width: 75px;
  height: 75px;
}
/* button state playing */
.video-controls.playing .play-button:before {
  background-image: url(../images/icon_play.png);
  /* right: .05vw;
  right: 1px; */
  background-image: none;
}
.video-controls .play-button:hover:before {
  background-image: url(../images/icon_play.png);
}
.video-controls.playing .play-button:hover:before {
  background-image: url(../images/icon_play.png);
}

.video-controls .time {
  font-size: 11px;
  font-weight: 600;
  line-height: 12px;
  display: inline-block;
  width: 80px;
  vertical-align: middle;
  color: #fff;
}
.video-controls .sound-button {
  display: inline-block;
  width: 16px;
  cursor: pointer;
  vertical-align: middle;
}
.video-controls .sound-button:before {
  font-family: "FontAwesome";
  content: "\f027";
  color: #fff;
}
.video-controls .sound-med:before {
  font-family: "FontAwesome";
  content: "\f028";
  color: #fff;
}
.video-controls .sound-muted:before {
  font-family: "FontAwesome";
  content: "\f026";
  color: #fff;
}
.video-controls .volume {
  position: relative;
  display: inline-block;
  overflow: hidden;
  width: 70px;
  height: 4px;
  cursor: pointer;
  vertical-align: middle;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.6);
}
.video-controls .volume .volume-bar {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  display: block;
  height: 100%;
  background-color: #fff;
}
/* .video-controls .btnFS {
  position: relative;
  top: 3px;
  display: inline-block;
  float: right;
  cursor: pointer;
  vertical-align: middle;
}
.video-controls .btnFS:before {
    font-size: 14px;
    font-family: "FontAwesome";
    content: "\f0b2";
  color: #fff;
} */

@media (max-width: 767px) {
  .custom_video_container {

  }
  .video-controls .play-button {
    /* right: 35px;
    bottom: 25px;
    width: 33px;
    height: 36px; */
  }
  .video-controls .play-button:before {
    /* right: 0;
    bottom: 1px;
    width: 33px;
    height: 33px; */
  }
}

@media (max-width: 600px) {
  .custom_video_container {
  }
  .video-controls .play-button {
  }
  /* button state paused */
  .video-controls .play-button:before {
  }
  /* button state playing */
  .video-controls.playing .play-button:before {
  }
}