@keyframes bounce2 {
  0% {
    transform: scale(1, 1) translateX(0);
  }
  10% {
    transform: scale(1.1, 0.9) translateX(0);
  }
  30% {
    transform: scale(0.9, 1.1) translateX(-4px);
  }
  50% {
    transform: scale(1.05, 0.95) translateX(2px);
  }
  57% {
    transform: scale(1, 1) translateX(-2px);
  }
  64% {
    transform: scale(1, 1) translateX(0);
  }
  100% {
    transform: scale(1, 1) translateX(0);
  }
}
/* Fonts */
.video-section {
  padding: 64px;
}
.video-section__title {
  text-align: center;
  margin-bottom: 24px;
}
.video-section__img .media {
  position: relative;
}
.video-section__img .media .img {
  width: 100%;
  height: auto;
}
.video-section__img .media .play-btn {
  display: flex;
  position: absolute;
  color: #232933;
  z-index: 3;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}
.video-section__img .media .play-btn__wrap {
  display: flex;
  position: relative;
  background: #10243E;
  align-items: center;
  gap: 9px;
  padding: 5.5px 22px 5.5px 5.5px;
  border-radius: 137.908px;
  box-shadow: 0 0 0 rgba(255, 255, 255, 0.4);
  animation: mastheadplay 2s infinite;
}
@keyframes mastheadplay {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
.video-section__img .media .play-btn__icon {
  display: block;
  width: 56px;
  height: 56px;
  border-radius: 28px;
  background-image: url(../images/ic-play-video.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-color: #4B61DD;
}
.video-section__img .media .play-btn:hover {
  text-decoration: none;
}
.video-section__img .media .play-btn.b-small {
  color: #FFF;
  width: 100%;
  height: 100%;
}
.video-section__img .media .play-btn.b-small .play-btn__icon {
  width: 40px;
  height: 40px;
  top: 12px;
  left: 20px;
  background: #EAECFB url(../../images/ic-play-video-blue.svg) no-repeat center/20px;
  transition: all 0.2s ease;
}
.video-section__img .media .play-btn.b-small .play-btn__text {
  color: #FFF;
  font-size: 14px;
  line-height: 20px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  height: auto;
}
.video-section__img .media .play-btn.b-small:hover .play-btn__icon {
  background-color: #d5d9f7;
}
.video-section.inapp {
  padding: 40px 0;
}
@media (max-width: 991px) {
  .video-section {
    padding: 32px 0;
  }
}
@media (max-width: 560px) {
  .video-section__title br {
    display: none;
  }
}/*# sourceMappingURL=video-section.css.map */