.glite-video {
  position: relative;
}
.glite-video > a {
   height: 100px;
   display: block;
   width: 100px;
   background: var(--color-primary);
   text-align: center;
   border-radius: 50%;
   position: absolute;
   left: calc(50% - 50px);
   top: calc(50% - 50px);
   position: absolute;

}
.glite-video> img {
  width: 100%;
  transition: all 0.3s ease 0s;
  -webkit-transition: all 0.3s ease 0s;
}
.glite-video > a::after {
  /* content: ''; */
  /* position: absolute; */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.glite-video > a:hover > img {
  transform: scale(1.03);
  -webkit-transform: scale(1.03);
}

.glite-video .play {
  position: absolute;
  z-index: 10;
  left: calc(50% - 55px);
  top: calc(50% - 55px);
  width: 110px;
  height: 110px;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  background: var(--color-primary);
  border-radius: 50%;
}
.glite-video .play > i {
  font-size: 45px;
  color: white;
  position: relative;
}
.glite-video .play::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 50%;
  background: var(--color-primary);
  opacity: 0.4;
  animation: scale1 2s linear infinite;
}
.glite-video .play::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 50%;
  background: var(--color-primary);
  opacity: 0.2;
  animation: scale2 2s linear infinite;
}

.glite-video > a:hover::after {
  opacity: 1;
}



@media screen and (max-width:768px) {
  .glite-video .play {
    left: calc(50% - 35px);
    top: calc(50% - 35px);
    width: 70px;
    height: 70px;
  }
  .glite-video .play > img {
    height: 30px;
  }
}

@media screen and (max-width:480px) {
  .glite-video .play {
    left: calc(50% - 35px);
    top: calc(50% - 35px);
    width: 70px;
    height: 70px;
  }
  .glite-video .play > img {
    height: 30px;
  }
}

@keyframes scale1 {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.4);
    transform: scale(1.4);
  }
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes scale2 {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.8);
    transform: scale(1.8);
  }
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@media screen and (max-width:480px){
  .glite-video > a {
    height: 70px;
    display: block;
    width: 70px;
    background: var(--color-primary);
    text-align: center;
    border-radius: 50%;
    position: absolute;
    left: calc(50% - 35px);
    top: calc(50% - 35px);
    position: absolute;
}
    .glite-video .play {
        left: calc(50% - 18px);
        top: calc(50% - 18px);
        width: 36px;
        height: 36px;
    }
    .glite-video .play > i{
      font-size: 26px;
    }
}