:root {
  --bodyFont: "Poppins", sans-serif;
  --titleFont: "Tomorrow", sans-serif;
  --transition: all 0.5s ease-in-out;
  --transition-sec: all 1.8s ease-in-out;
  --transition-third: all 2.2s ease-in-out;
  /* Color styles */
  --primaryColor: #ed2a00;
  --titleColor: #ffffff;
  --textColor: #474747;
  --bodyColor: #000000;
  --blackColor: #000000;
  --whiteColor: #ffffff;
  --menuColor: #000000;
  --borderColor: #e6e6e6;
  --borderColor2: #ffffff14;
  --btnTextColor: #000000;
  --btnTextHoverColor: var(--primaryColor);
  --btnBgColor: var(--primaryColor);
  --btnBgHoverColor: var(--primaryColor5);
  --linkColor: var(--secondaryColor);
  --linkHoverColor: var(--primaryColor);
  --neutralColor0: #ffffff;
  --neutralColor10: #fafafa;
  --neutralColor20: #f5f5f6;
  --neutralColor30: #ebebed;
  --neutralColor40: #dfdfe1;
  --neutralColor50: #c2c2c6;
  --neutralColor60: #b3b3b8;
  --neutralColor70: #a7a7ac;
  --neutralColor80: #98999e;
  --neutralColor90: #898a91;
  --neutralColor100: #7b7b83;
  --neutralColor200: #6c6d75;
  --neutralColor300: #5d5e67;
  --neutralColor400: #51525c;
  --neutralColor500: #42434e;
  --neutralColor600: #363742;
  --neutralColor700: #252632;
  --neutralColor800: #161725;
  --neutralColor900: #0a0b19;
  --neutralColor1000: #0d0d0d;
}

@keyframes waves {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}
@keyframes fadeIn2nd {
  0% {
    opacity: 0;
    transform: translate3d(-10%, 0, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(180deg);
  }
}
/** video css --------------------------
--------------------------------------*/
@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;
  }
}
.themephi-video {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 100px 20px;
  width: 100%;
  height: 100%;
  min-height: 100px;
}
.themephi-video.center .overly-border {
  margin: 0 auto;
}
.themephi-video.left .overly-border {
  margin-left: 0;
  margin-right: auto;
}
.themephi-video.right .overly-border {
  margin-left: auto;
  margin-right: 0;
}
.themephi-video.style1 .video-desc {
  top: 60px;
}
.themephi-video .video-desc {
  z-index: 1;
  font-size: 20px;
  position: relative;
}
.themephi-video .video-desc span {
  display: block;
  font-size: 22px;
  font-weight: 400;
}
.themephi-video .overly-border {
  border-radius: 50%;
  position: absolute;
  width: 100px;
  height: 100px;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.themephi-video .video-content {
  z-index: 10;
}
.themephi-video .video-content h4 {
  margin-top: 40px;
  margin-bottom: 0;
  font-size: 30px;
  color: #fff;
  text-transform: uppercase;
}
.themephi-video:hover .popup-videos {
  animation-duration: 0.8s;
}
.themephi-video .popup-videos {
  position: absolute;
  transform: translateX(-50%) translateY(-50%);
  box-sizing: content-box;
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  line-height: 90px;
  padding: 0;
  margin: 0 auto;
  left: 50%;
  top: 50%;
  z-index: 9;
  text-align: center;
  background: var(--primaryColor);
}
.themephi-video .popup-videos:after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  transition: all 200ms;
}
.themephi-video .popup-videos:before {
  border: 1px solid #fff;
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  animation: pulse-border 1500ms ease-out infinite;
}
.themephi-video .popup-videos i {
  text-indent: 5px;
  transition: 0.3s ease all;
  font-size: 28px;
  color: var(--primaryColor);
  position: relative;
  top: -4px;
}
.themephi-video .popup-videos i:before {
  color: #fff;
  top: -1px;
}
.themephi-video .popup-videos:hover {
  border-color: rgba(255, 255, 255, 0.7);
}
.themephi-video .popup-videos span {
  display: block;
  position: relative;
  z-index: 3;
  width: 0;
  height: 0;
  border-left: 27px solid #fff;
  border-top: 17px solid transparent;
  border-bottom: 17px solid transparent;
}
.themephi-video:hover .overly-border:before, .themephi-video:hover .overly-border:after {
  opacity: 1;
  transform: scale(1);
}/*# sourceMappingURL=video.css.map */