.videoSection {
	text-align: center;
  }
  
  .vms-text-section {
	width: calc(100% - 200px);
	margin: 0 auto;
	padding: 45px 95px 40px 95px;
  }
  
  .vms-text-section h3 {
	font-family: Archivo;
	font-weight: 600;
	font-size: 28px;
	color: rgba(180, 178, 178, 1);
	margin: 0;
	margin-bottom: 10px;
	line-height: 1.2;
	letter-spacing: 0;
  }
  
  .vms-text-section h2 {
	font-family: Archivo;
	font-weight: 600;
	font-size: 36px;
	line-height: 1.2;
	color: #191919;
	margin-bottom: 0;
  }
  .vms-text-section p {
	font-family: Archivo;
	font-weight: 400;
	font-size: 22px;
	line-height: 1.5;
	letter-spacing: 0;
	text-align: center;
	color: rgba(0, 0, 0, 1);
	width:1050px;
	margin: 30px auto 0 ;
  }
  
  .video-container {
	position: relative;
	width: calc(100% - 200px);
	max-width: 1240px;
	height: 567px;
	aspect-ratio: 16 / 9;
	border-radius: 20px;
	overflow: hidden;
	margin: 0 auto;
  }
  
  .video-wrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 567px;
	pointer-events: none;
	z-index: 1;
	border-radius: 20px;
	border: none !important;
  }
  
  .video-wrapper .thumbnail {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 567px; /* Use full height and width */
	/* background-image: url('https://img.youtube.com/vi/nTzv3OhNve0/maxresdefault.jpg'); */
	background-size: cover;
	background-position: center;
	z-index: 1;
	border-radius: 20px;
	border: none;
  }
  
  .play-button-overlay {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	border: none;
	background-color: transparent;
	padding: 0;
  }
  
  .play-button-overlay img {
	width: 100px;
	height: 100px;
  }
  
  .video-container.playing iframe {
	pointer-events: auto;
  }
  
  .video-container.playing .thumbnail,
  .video-container.playing .play-button-overlay {
	display: none;
  }
  .play-button-overlay button{
	padding: 0;
	border-radius: 0;
  }
  
  /* Media queries for responsiveness */
  @media (max-width: 1024px) {
	.videoSection {
	  padding: 0;
	}
  
	.vms-text-section {
	  padding: 0px;
	  margin-bottom: 20px;
		margin-top:20px;
	}
  
	.vms-text-section h3 {
	  font-size: 20px;
	  font-weight: 600;
	  line-height: 1.2;
	  margin-bottom: 5px;
	}
	.video-wrapper .thumbnail {
		height: 100%;
	}
  
	.vms-text-section h2 {
	  font-family: Archivo;
	  font-weight: 600;
	  font-size: 26px; /* Adjusted font size */
	  line-height: 1.2;
	  letter-spacing: 0;
	  text-align: center;
	  padding: 0px;
	}
	.vms-text-section p {
		font-family: Archivo;
		font-weight: 400;
		font-size: 16px;
		line-height: 1.5;
		letter-spacing: 0%;
		text-align: center;
		width: auto !important;
		margin: 15px 16px 0;
		padding: 0 17.5px !important;
	  }
  
	.play-button-overlay img {
	  width: 46px;
	  height: 46px;
	}
  
	.video-container {  
	  width: calc(100% - 32px);
	  height: 231px;
	  margin: 0 16px;
	  aspect-ratio: 16 / 9; /* Maintain 16:9 aspect ratio */
	}
	.page-template-template-ALP-ERP .video-wrapper .thumbnail{
		display:none;
	}
	.video-wrapper .mobile_thumbnail {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%; 
		background-size: cover;
		background-position: center;
		z-index: 1;
		border-radius: 20px;
		border: none;
	  }
	  .video-wrapper .thumbnail {
		  position: relative;
	  }
  }
  
  @media (max-width: 480px) {
	.vms-text-section {
	  margin-bottom: 20px;
		margin-top: 20px;
	  width: 80%;
	}
  
	.vms-text-section h3 {
	  font-size: 20px;
		line-height: 26px;
	  margin-bottom: 5px;
	}

  	.vms-text-section h2 {
	  font-size: 26px;
		line-height: 1.2;
	  margin-bottom: 5px;
	}

	  

	.vms-text-section p {
	  font-size: 35px;
	}
  
	.play-button-overlay img {
	  width: 46px;
	  height: 46px;
	}
  
	.video-container {
      width: calc(100% - 32px);
      height: 231px;
      margin: 0 16px;
	  aspect-ratio: 16 / 9; /* Maintain 16:9 aspect ratio */
	}
  }
  @media (min-width: 768px) and (max-width: 1024px) {
	.video-container{
		height: 40vh;
	}
  }
  @media (max-width: 1300px){
	.vms-text-section p{
		width:auto
	}
  }
  @media (max-height: 550px){
	.video-container {
        height: 80vh;
    }
  }
  