.video-section {
  height: 300px;
  width: 100%;
  position: relative;
  text-align: center;
  overflow: hidden;
  background-size: cover;
  background-position: center center;
}
.video-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,130,195,0.68);
}
.video-section::after {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}
.video-section .text-part {
  display: inline-block;
  vertical-align: middle;
  position: relative;
}
.video-section iframe{
  width: 200%;
  height: 300%;
  position: absolute;
  top: 0;
  left:0;
  z-index: -1;
  transform: translate(-25%,-33.33%)
}
.video-section .text-part {
  color:white;
}
.video-section .text-part .big-title,.video-section .text-part .small-title {
  margin: 25px 0;
}
.video-section .text-part .big-title {
  font-size: 30px;
  font-weight: bold;
  letter-spacing: 10px;

}
.video-section .text-part a {
  padding: 6px 20px;
  background: white;
  color: #117ab5;
  transition: all ease 0.4s;
}
.video-section .text-part a:hover {
  background: #117ab5;
  color: white;

}
@media (max-width: 1024px) {
  .video-section {
    height: 340px;
  }
  .video-section iframe{
    display:none;
  }
  .video-section .text-part {
    line-height: 1.7;
    width: 95%;
    margin: 0 auto;
  }
  .video-section .text-part .big-title {
    line-height: 1;

  }
}