/*home*/

.video-container2 {
    width: 100%;
    max-width: 100%;
  
 }
 
 .video-container2 video {
    width: 100%;
    height: auto;
   
 }
 

 .title_and_video .row {
    display: flex;
    align-items: center;
    
 }
 
 .title_and_video .col-lg-6 {
    flex: 1;
    padding: 0 15px;
 }
 
 .title_all_box {
    padding-left: 30px; 
    
 }
 
 .video-container2 video {
    max-height: 300px; 
    border-radius: 30px;
 }
 


 /*blog*/
 .video-container {
    position: relative;
    width: 100%;
    max-width: 750px;
}

.video-container video {
    width: 100%;
    height: auto;
    cursor: pointer;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    font-size: 24px;
    cursor: pointer;
    display: block;
}

.video-container video:playing + .play-btn {
    display: none;
}

