:root {
  --bodyFont: "Onest", sans-serif;
  --titleFont: "Onest", sans-serif;
  --primaryColor: #01A66B;
  --secondaryColor: #005651;
  --bodyColor: #4B655C;
  --whiteColor: #ffffff;
  --titleColor: #1C1E30;
  --borderColor: #CDE4DC;
  --inputbgColor: #E6F7F1;
  --shadow6: 0px 16px 32px 0px rgba(0, 0, 0, .06);
  --transition: 0.4s all ease;
}

/** video css --------------------------
--------------------------------------*/
.tp-video-title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 5px;
}
.tp-video-desc {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 0;
}

.tp-video-playBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
.tp-video-playBtn a {
  width: 80px;
  height: 80px;
  background: skyblue;
  text-align: center;
  border-radius: 50%;
  transition: all 0.3s linear;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #222;
  font-size: 25px;
  position: relative;
  z-index: 1;
}
.tp-video-playBtn a::before {
  border: 1px solid rgba(0, 0, 0, 0.4);
}
.tp-video-playBtn a::after {
  border: 1px solid rgba(0, 0, 0, 0.4);
}

.tp-video-no_shape .tp-video-playBtn a::before {
  display: none;
}
.tp-video-no_shape .tp-video-playBtn a::after {
  display: none;
}

.tp-video-shape1 .tp-video-playBtn a::before {
  display: none;
}
.tp-video-shape1 .tp-video-playBtn a::after {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  border-radius: 50%;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(5px);
  animation-name: popupBtn;
  animation-duration: 2s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  z-index: -1;
  margin: 0;
}

.tp-video-shape2 .tp-video-playBtn a::after, .tp-video-shape2 .tp-video-playBtn a::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  border-radius: 50%;
  width: 100%;
  height: 100%;
  animation-name: popupBtn2;
  animation-duration: 2s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  margin: 0;
}
.tp-video-shape2 .tp-video-playBtn a::before {
  animation-delay: 1s;
}

.tp-video-shape3 .tp-video-playBtn a::after, .tp-video-shape3 .tp-video-playBtn a::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  content: "";
  border-radius: 50%;
  width: 100%;
  height: 100%;
  animation: popupBtn3 2000ms ease-out infinite;
  margin: 0;
}
.tp-video-shape3 .tp-video-playBtn a::after {
  width: calc(100% + 8px);
  height: calc(100% + 8px);
}

@keyframes popupBtn {
  0% {
    transform: scale(0.9);
    opacity: 0;
  }
  60% {
    transform: scale(1.4);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}
@keyframes popupBtn2 {
  0% {
    transform: none;
    opacity: 0;
  }
  20%, 70% {
    opacity: 1;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}
@keyframes popupBtn3 {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.4);
    opacity: 0;
  }
}
@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(0.5);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}
.tp-btn-position-left .tp-video-playBtn {
  display: flex;
  flex-direction: row;
}

.tp-btn-position-top .tp-video-playBtn {
  display: flex;
  flex-direction: column;
}

.tp-btn-position-right .tp-video-playBtn {
  display: flex;
  flex-direction: row-reverse;
}

.tp-btn-position-bottom .tp-video-playBtn {
  display: flex;
  flex-direction: column-reverse;
}

/*# sourceMappingURL=video.css.map */
