    .zig-v4-title-head {
        font-family: 'Poppins'!important;
    }
.video-container {
  border-radius: 0px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
  position: relative;
  width: 100%;
  height: fit-content;
  padding: .25rem;
  background: #ffffff;
}
.video-container .video-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.video-container video {
  width: 100%;
  height: 100%;
  border-radius: 4px;
}

.play-button-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: auto;
  pointer-events: none;
}
.play-button-wrapper #circle-play-b {
  cursor: pointer;
  pointer-events: auto;
  position:relative;
  opacity:0.9;
}
.play-button-wrapper #circle-play-b svg {
  width: 48px;
  height: 48px;
  border-radius: 100%;
  display: block;
  position:relative;
}
.play-button-wrapper #circle-play-b:before{
  content: '';
  width: 75%;
  height: 75%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  position: absolute;
  border-radius: 100%;
  background: #ffffff;
  margin: auto;
}
.custom-cards-heading-block {
  padding: 0px 70px;
  padding:bottom:0px;
}

/* Main Heading */
.custom-cards-heading-block h1.custom-heading {
  color: #ffffff; /* Blue */
  font-size: 54px;
  font-weight: bold;
  margin-bottom: 10px;
  text-align: center;
}

/* Subheading */
.custom-cards-heading-block p.custom-subheading {
  color: #ffffff; /* Black */
  font-size: 24px;
  margin-bottom: 20px;
  text-align: center;
  margin-top: 0;
  padding-bottom: 10px;
}

/* Technologies Block */
.custom-cards-heading-block .custom-technologies {
  color: #1759FF; /* Blue */
  font-size: 24px;
  margin-bottom: 40px;
  text-align: left;
  position: relative;
  z-index: 1;
  padding: 15px 10px;
}

/* Skewed Background for Technologies */
.custom-cards-heading-block .custom-technologies::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #C5FF02; /* Bright Yellow */
  z-index: -1; /* Places it behind the text */
  transform: skew(-10deg); /* Skew the background */
  transform-origin: left;
}

/* Technology Span */
.custom-cards-heading-block .custom-technologies span {
  color: #1759FF; /* Blue */
  font-weight: normal;
  font-size: 24px;
}
.zig-divider {
  width: 91%; /* Set the width to 80% */
  height: 1px; /* Thickness of the divider */
  background-color: #ccc; /* Divider color */
  margin: 30px auto; 
  margin-top:30px;
   margin-bottom:0px; 
}

