.pg-videoparentcontainer {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 100px;
  padding: 0px 100px;
  position: relative;
  overflow: hidden;
}
.pg-videoleftcontainer {
  height: 400px;
  width: 50%;
  background-color: #17c3b9;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-left: 50px;
  border-radius: 20px 0 0 20px;
}
.pg-videolefttextcontent {
  max-width: 450px;
  color: #fff;
  z-index: 3;
}
.pg-videolefttextcontent h1 {
  font-size: 30px;
}
.pg-videolefttextcontent p {
  font-size: 16px;
  margin-top: 10px;
}
.pg-videoleftcountcontainer {
  display: flex;
  gap: 20px;
  margin-top: 50px;
  z-index: 3;
}
.pg-videoleftcount {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
}
.pg-videoleftcount p {
  color: #fff;
  font-size: 18px;
}
.pg-videoleftcount p:last-child {
  font-weight: 600;
}
.pg-videorightcontainer {
  height: 400px;
  width: 50%;
  background-color: #00a7b4;
  border-radius: 0px 20px 20px 0px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.pg-videographics {
  height: 100%;
  width: 50%;
  background-color: #17c3b9;
  z-index: 2;
  rotate: -73deg;
  position: absolute;
  top: 0;
  left: 20%;
}
.pg-videorighticondiv {
  background-color: white;
  border-radius: 100%;
  height: 100px;
  width: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 0px 20px 15px #ffffff;
  transition: all 0.5s linear;
}
.pg-videorighticondiv i {
  font-size: 40px;
  color: #00a7b4;
}
.pg-videorighticondiv:hover {
  transform: scale(1.1);
}
.pg-popup-model {
  position: absolute;
  top: 0%;
  width: 100vw;
  height: 100vh;
  z-index: 100000;
  background-color: rgba(0, 0, 0, 0.966);
  display: none;
  justify-content: center;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
}
#closepopup {
  background-color: #00a7b4;
  margin-right: 20px;
  width: 25px;
  height: 25px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s linear;
  font-size: 15px;
  color: #fff;
}
#closepopup:hover {
  background-color: rgb(224, 62, 62);
  scale: 1.05;
}
#closepopup:hover::before {
  content: "Close";
  position: absolute;
  top: 4px;
  right: 30px;
}
.pg-videopopupcontainer {
  width: 100%;
  height: 80%;
}
.pg-videopopupcontainer iframe {
  width: 100%;
  height: 100%;
}
.show {
  display: flex;
}
.no-scroll {
  overflow: hidden;
}
/* Blur effect */
.blur-background {
  filter: blur(5px);
  transition: filter 0.3s ease;
}
@media (max-width: 767px) {
  /* .pg-popup-model {
    justify-content: flex-start;
  }
  #closepopup {
    margin-top: 10px;
  } */
  .pg-videoparentcontainer {
    width: 100%;
    padding: 0;
    flex-direction: column;
  }
  .pg-videographics {
    height: 100%;
    width: 100%;
    background-color: #17c3b9;
    z-index: 2;
    rotate: -73deg;
    position: absolute;
    top: 0;
    left: 10%;
  }
  .pg-videoleftcontainer {
    width: 100%;
  }
  .pg-videoleftcountcontainer {
    flex-wrap: wrap !important;
  }
  .pg-videoleftcount {
    width: 200px;
  }
  .pg-videolefttextcontent {
    max-width: 350px;
  }
  .pg-videorightcontainer {
    width: 100%;
    height: 200px;
    justify-content: flex-start;
    align-items: flex-end;
    padding-left: 70px;
    padding-bottom: 40px;
  }

  .pg-videorighticondiv {
    height: 70px;
    width: 70px;
    box-shadow: 0px 0px 20px 10px #ffffff;
  }
  .pg-videorighticondiv i {
    font-size: 20px;
  }
}
