 #container {
      /* overflow: hidden; */
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
    }

    #background_video {
      position: fixed;

      top: 50%; left: 50%;
      transform: translate(-50%, -50%);

      object-fit: cover;
      height: 100%; width: 100%;
    }

    #video_cover {
      position: absolute;

      width: 100%; height: 100%;

      background: url('/css/video_cover.jpeg') no-repeat;
      background-size: cover;
      background-position: center;
    }

    #video_controls {
      position: absolute;
      left: 50%;
      transform: translate(-50%, 0);
    }

    #play img {
      width: 100px;
    }
    #pause img {
      width: 90px;
    }
    #pause {
      display: none;
    }

    @media (min-width: 768px) {
      #video_controls {
        display: none;
      }
    }

    /* Demo page specific styles */

    body {
      text-align: center;
      font-family: 'proxima-nova', Helvetica;
    }

    #container {
      /* height: 100%; */
    }

    #overlay {
      position: fixed;
      top: 0; right: 0; left: 0; bottom: 0;
      background: rgba(0,0,0,0.5);
    }

    #main_content {
      z-index: 2;
      position: relative;
      display: inline-block;
	  width: 100%;
	  height: 100%;
      
    }
	
	.solution_1{
		display: flex;
		padding: 10% 15% 100px 15%;
		text-align: left;
		align-items: flex-end;
		color: #fff;
	}
	.solution_1 h1{
		font-size: 4rem;
		line-height: 1.4;
		width: 50%;
		padding: 0 100px;
	}
	.solution_1 p{
		font-size: 1rem;
		width: 50%;
		line-height: 2;
		
	}