.video-frame {
  position: relative;
  height: 100%;
}
.video-frame .play-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.video-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.square-img::after {
  border-color: #fff;
}
.core-value-box {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  height: 100%;
}
.core-value-box h6 {
  margin-bottom: 12px;
}
.core-value-box .resource-icon {
  position: relative;
  background: transparent;
  border: 1px solid #f6f6f6;
  width: 80px;
  min-width: 80px;
  height: 80px;
  border-radius: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 0;
  box-shadow: 0px 4px 4px 0px rgba(233, 242, 255, 0.1) inset;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.core-value-box .resource-icon::after {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: #f6f6f6;
  content: "";
  z-index: -1;
  border-radius: 50%;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transform: scale(0.98);
  transform: scale(0.98);
}
.core-value-box:hover .resource-icon {
  border-color: #002868;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.core-value-box:hover .resource-icon::after {
  -webkit-transform: scale(0);
  transform: scale(0);
  opacity: 0;
}

/* -----------------------------------------
    Media 480px 
--------------------------------------------*/
@media (max-width: 480px) {
  .core-value-box {
    flex-direction: column;
  }
}
