:root {
    --theme-color: #0058AB;
    --primary-color: #0FABDC;
    --secondary-color: #EFA666;
    --hover-color: #f6333a;
    --text-primary-color: #222222;
    --text-secondary-color: #596478;
    --heading-color: #1D3B69;
    --heading-color-2: #298D13;
    --bg-color-1: #f2f2f2;
    --bg-color-2: #11101d;
  
  }
  


.video-main{

  }

  .video-content {
    width: 100%;
    /* padding: 0 80px; */
    /* aspect-ratio: 16/3; */
  }
  .video-content iframe{
    width: 100%;
    aspect-ratio: 16/9;
  }
  
  
   /* Video Section */
  
   .video-section {
    position: relative;
    overflow: hidden;
    /* border-radius: 10px; */
  }
  .video-section img{
    width: 100%;
    aspect-ratio: 16/11;
    object-fit: cover;
  }
  
  .overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: rgba(0, 0, 0, .5); */
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  /* .open-video-btn {
      padding: 10px 20px;
      font-size: 16px;
      background-color: #007bff;
      color: white;
      border: none;
      cursor: pointer;
      border-radius: 5px;
  }
  
  .open-video-btn:hover {
      background-color: #0056b3;
  } */

  .video-title h3{
    color: var(--theme-color);
    font-weight: normal;
    font-size: 20px;
    padding: 10px 0;
    text-align: center;
    margin: 0;
}
  
  
  /* Video Modal */
  .video-modal {
      display: none; /* Hidden by default */
      position: fixed;
      z-index: 1000;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      overflow: auto;
      background-color: rgba(0, 0, 0, 0.8);
  }
  
  .video-modal-content {
      position: relative;
      margin: 10% auto;
      padding: 10px;
      width: 80%;
      max-width: 700px;
      background-color: white;
      border-radius: 8px;
  }
  
  .video-modal-content video {
      width: 100%;
      height: auto;
      border-radius: 8px;
  }
  
  .close-btn {
      position: absolute;
      top: -30px;
      right: -30px;
      color: #aaa;
      font-size: 28px;
      font-weight: normal;
      cursor: pointer;
  }
  
  .close-btn:hover,
  .close-btn:focus {
      color: black;
      text-decoration: none;
      cursor: pointer;
  }
  
  
  
  /* Styling for the pulse button */
  .pulse-button {
      background-color: #ff0000;
      border: none;
      border-radius: 50%;
      width: 50px;
      height: 50px;
      cursor: pointer;
      position: relative;
      font-size: 24px;
      color: white;
      box-shadow: 0 0 0 0 rgba(255, 61, 0, 0.7);
      animation: pulse 1.5s infinite;
      outline: none;
      display: flex;
      justify-content: center;
      align-items: center;
  }
  
  /* Pulse effect */
  @keyframes pulse {
      0% {
          box-shadow: 0 0 0 0 rgba(255, 61, 0, 0.7);
      }
      70% {
          box-shadow: 0 0 0 20px rgba(255, 61, 0, 0);
      }
      100% {
          box-shadow: 0 0 0 0 rgba(255, 61, 0, 0);
      }
  }
  
  /* Play icon */
  .pulse-button i {
      font-size: 24px;
      color: white;
  }
  
  /* Hover effect */
  .pulse-button:hover {
      background-color: #e53935;
  }


  @media screen and (max-width: 576px) {

    
  /* about start here  */
    .video-content {
        /* padding: 0 20px; */
      }

        
    .video-modal-content {
        padding: 5px;
    }

    .video-content iframe{
        width: 100%;
        aspect-ratio: 16/12;
      }
      
      
  /* about end here  */
  }

  @media screen and (min-width:576px) and (max-width: 768px){
    
      /* about start here  */

        .video-content {
            /* padding: 0 60px; */
        }

        /* about end here  */
  }

  @media screen and (min-width:768px) and (max-width: 992px){

      /* about start here  */

      .video-content {
        /* padding: 0 80px; */
      }

    /* about end here  */

  }

