/*================================================
EA Video Area CSS
=================================================*/
/*
Video wave Style*/
.ea-video-btn-one {
  display: inline-block;
  width: 100px;
  height: 100px;
  line-height: 100px;
  text-align: center;
  border-radius: 0;
  color: var(--main-color);
  position: relative;
  top: 3px;
  z-index: 1;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.ea-video-btn-one i {
  font-size: 80px;
  color: var(--mainColor);
  position: absolute;
  top: 0;
  left: 6px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
}

.ea-video-btn-one::after, .ea-video-btn-one::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  bottom: 0;
  left: 0;
  border-radius: 0;
  border-radius: 50%;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  -webkit-animation: ripple 1.6s ease-out infinite;
          animation: ripple 1.6s ease-out infinite;
  background-color: rgba(255, 255, 255, 0.9);
}

.ea-video-btn-one:hover::before, .ea-video-btn-one:hover::after {
  background-color: rgba(255, 255, 255, 0.9);
}

@-webkit-keyframes ripple {
  0%, 35% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 1;
  }
  50% {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
    opacity: 0.8;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(2);
            transform: scale(2);
  }
}

@keyframes ripple {
  0%, 35% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 1;
  }
  50% {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
    opacity: 0.8;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(2);
            transform: scale(2);
  }
}

/*
Video wave Style*/
.ea-video-btn-two span {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  position: absolute;
  content: "";
  display: block;
  border-radius: 50%;
  width: 90px;
  height: 90px;
}

.ea-video-btn-two span::after {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 0.1px solid var(--mainColor);
  -webkit-animation: videoTwo 8s linear infinite;
          animation: videoTwo 8s linear infinite;
}

.ea-video-btn-two span::before {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 0.1px solid var(--mainColor);
  -webkit-animation: videoTwo 8s linear infinite;
          animation: videoTwo 8s linear infinite;
}

.ea-video-btn-two span:nth-child(1)::after {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

.ea-video-btn-two span:nth-child(1)::before {
  -webkit-animation-delay: 5s;
          animation-delay: 5s;
}

.ea-video-btn-two span:nth-child(2)::after {
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}

.ea-video-btn-two span:nth-child(2)::before {
  -webkit-animation-delay: 6s;
          animation-delay: 6s;
}

.ea-video-btn-two span:nth-child(3)::after {
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
}

.ea-video-btn-two span:nth-child(3)::before {
  -webkit-animation-delay: 7s;
          animation-delay: 7s;
}

.ea-video-btn-two span:nth-child(4)::after {
  -webkit-animation-delay: 4s;
          animation-delay: 4s;
}

.ea-video-btn-two i {
  width: 90px;
  height: 90px;
  line-height: 80px;
  text-align: center;
  border-radius: 50%;
  display: inline-block;
  background: var(--whiteColor);
  color: var(--mainColor);
  border: 5px solid var(--mainColor);
  font-size: 60px;
}

.ea-video-btn-two.video-btn-3 i {
  color: var(--mainColor);
  border-color: var(--mainColor);
}

.ea-video-btn-two.video-btn-3 span::before {
  border: 0.1px solid var(--mainColor);
}

.ea-video-btn-two.video-btn-3 span::after {
  border: 0.1px solid var(--mainColor);
}

@-webkit-keyframes videoTwo {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: translate(-50%, -50%) scale(5);
            transform: translate(-50%, -50%) scale(5);
    opacity: 0;
  }
}

@keyframes videoTwo {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: translate(-50%, -50%) scale(5);
            transform: translate(-50%, -50%) scale(5);
    opacity: 0;
  }
}

.ea-video-content {
  max-width: 1010px;
  margin: auto;
  text-align: center;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 4px;
  padding-top: 150px;
  padding-bottom: 150px;
  position: relative;
  z-index: 1;
}

.ea-video-content.bg-2 {
  background-image: unset;
  padding: 0;
}

.ea-video-content.bg-2 img {
  border-radius: 50%;
  -webkit-box-shadow: var(--box-shadow);
          box-shadow: var(--box-shadow);
  border: 5px solid var(--whiteColor);
}

.ea-video-content.bg-2::before {
  display: none;
}

.ea-video-content.bg-2 .video-btn-center {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.ea-video-content.bg-5 {
  border: 5px solid var(--whiteColor);
  -webkit-box-shadow: var(--box-shadow);
          box-shadow: var(--box-shadow);
}

.ea-video-content.bg-5::before {
  display: none;
}

.ea-video-content.bg-5 .video-btn-center {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.ea-video-content.bg-7 {
  border-radius: 0;
}

.ea-video-content.bg-7::before {
  display: none;
}

.ea-video-content.bg-9 {
  padding-top: 150px !important;
  padding-bottom: 150px !important;
  border-radius: 15px;
}

.ea-video-content.bg-9::before {
  display: none;
}

.ea-video-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(45deg, #38c8f3 0%, #38c8f3 0%, #397fe7 100%);
  opacity: 0.9;
  z-index: -1;
}

.ea-video-content .ea-title {
  color: var(--whiteColor);
  margin-bottom: 0;
  margin-top: 30px;
}

.ea-video-content h3 {
  font-size: 40px;
}

.ea-video-bg {
  padding-left: 50px;
  background-color: #fff7f2;
  border-radius: 0 225px 225px 0;
}

.ea-video-bg p {
  padding-right: 50px;
}

.ea-video-bg h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.ea-video-bg .video-btn-one i {
  color: #d14327;
}

.ea-video-area-style-three {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  padding-top: 200px;
  padding-bottom: 200px;
  position: relative;
  z-index: 1;
}

.ea-video-area-style-three::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

.ea-video-area-style-three .ea-video-bg {
  background-color: transparent;
  padding-left: 0;
}

.ea-video-area-style-three .ea-video-bg .ea-title {
  color: var(--whiteColor);
}

.ea-video-area-style-three .ea-video-bg p {
  color: var(--whiteColor);
}

.ea-video-style-four .ea-video-bg {
  background-color: transparent;
  padding-left: 0;
}

.ea-video-style-four .bg-4 {
  background-image: unset;
  padding: 0;
  position: relative;
}

.ea-video-style-four .bg-4::before {
  display: none;
}

.ea-video-style-four .bg-4 .video-btn-center {
  position: absolute;
  bottom: 200px;
  right: 200px;
}

.ea-video-play-btn {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 70px;
  display: inline-block;
  width: 85px;
  height: 85px;
  border-radius: 50%;
  background-color: #db3945;
  color: var(--mainColor);
  border: 5px solid #464d4b;
}

.ea-video-area-style-five .ea-video-content {
  border-radius: 0;
}

.ea-video-area-style-five .ea-video-content::before {
  display: none;
}

.ea-video-area-style-five {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  padding-top: 200px;
  padding-bottom: 200px;
  position: relative;
  z-index: 1;
}

.ea-video-area-style-five::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background-color: #ffffff;
  z-index: -1;
}

.ea-video-area-style-five::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

.ea-video-area-style-six .ea-video-bg {
  background-color: var(--whiteColor);
  -webkit-box-shadow: var(--box-shadow);
          box-shadow: var(--box-shadow);
}

.ea-video-area-style-seven .ea-video-bg {
  background-color: var(--whiteColor);
  -webkit-box-shadow: none;
          box-shadow: none;
  padding-left: 0;
}

.ea-video-area-style-seven .video-content-wrap {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  padding: 50px 40px;
  border-radius: 0 10px 10px 0;
}

.ea-video-area-style-seven .pl-0 {
  padding-left: 0;
}

.ea-video-area-style-seven .pr-0 {
  padding-right: 0;
}

.ea-video-area-style-seven .ea-video-content {
  position: relative;
  padding: 0;
}

.ea-video-play-btn i {
  position: relative;
  top: -7px;
  left: 4px;
  color: var(--whiteColor);
}

.ea-video-btn-one .fa, .ea-video-btn-one .far, .ea-video-btn-one .fab, .ea-video-btn-one .fas {
  font-size: 45px;
}

.ea-video-play-btn .fa, .ea-video-play-btn .far, .ea-video-play-btn .fab, .ea-video-play-btn .fas {
  font-size: 45px;
  top: -21px;
}
