.movie .wrap{
width: auto;
height: auto;
max-width:1000px;
padding:10px;

-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
margin: 20px auto;
}
.movie .wrap h2{
font-weight: bold;
font-size: 18px;
color: #6b825d;
}

.demo_videos {
    display: grid;
    margin-top: 30px;
    	display:flex;
	justify-content:flex-start;
	align-items:stretch;	
    -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  }
  .video_item{
    width: 48%;
    margin:0 1% 30px 1%;
    -webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
  }

  .video_item h3 {
    font-size:16px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
  }

  .video_wrapper {
    position: relative;
    padding-bottom: 177.78%;
    /* 9:16 ratio */
    height: 0;
    overflow: hidden;
  }

  .video_wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
  }

  .video_item p {
    margin-top: 10px;
    font-size: 0.9rem;
    line-height: 1.6;
  }