        *{box-sizing: border-box;
          -webkit-box-sizing: border-box;
          -ms-box-sizing: border-box;
          -moz-box-sizing: border-box;
          -o-box-sizing: border-box;
          padding: 0;
          margin: 0;
          -webkit-font-smoothing: antialiased;
          -moz-osx-font-smoothing: grayscale;}

          body{padding: 0; margin: 0;font-family: 'Circular Book'; font-size: 13px; line-height: 28px; color: #000;}
          .svg_blk{display: none;}
          .logo_blk {
              position: absolute;
              z-index: 999;
              display: block;
              top: 20px;
              left: 50%;
              transform: translateX(-50%);
          }

          .logo_blk svg {
              fill: #EC008C;
              width: 150px;
          }

         .video_box {
           display: flex;
           flex-wrap: wrap;
           height: 100vh;
        }

        .video_blk {
           max-width: 33.333%;
           height: 100vh;
           overflow: hidden;
           position: relative;
        }
        .contnt_video {
          position: absolute;
          z-index: 9;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          display: flex;
          align-items: center;
          justify-content: center;
          flex-direction: column;
          color: #fff;
          pointer-events: none;
          background: rgb(0 0 0 / 0.2);
          transition: all ease-in-out 03s;
        }

        .video_blk video {
           height: 100vh;
           width: auto;
           left: -73%;
           position: relative;
           pointer-events: all;
           z-index: 2;
        }
        .contnt_video h3 {
            font-family: 'FuturaBook';
            text-transform: uppercase;
            letter-spacing: 20px;
            font-size: 28px;
            line-height: 34px;
            padding: 0 20px 20px;
            border-bottom: 1px solid #ffffff7d;
            transition: all ease-in-out 0.6s;
            margin-bottom: 20px;
        }

        .contnt_video span {
            font-family: 'FuturaLight';
            font-size: 18px;
            text-transform: uppercase;
            letter-spacing: 10px;
            line-height: 28px;
            transition: all ease-in-out 0.6s;
            opacity: 0;
            overflow: hidden;
            position: relative;
            top: 40px;
        }
        .video_blk:hover .contnt_video span {
            top: 0;
        }

        .video_blk:hover .contnt_video span {
            opacity: 1;
        }

        @media(max-width:991px){
          .video_blk video {
              height: auto;
              top: 0;
              left: 50%;
              width: 100%;
              transform: translateX(-50%);
          }
          .video_blk {
            max-width: 100%;
            height: 100vh;
            position: relative;
          }
          .video_box {
            flex-wrap: nowrap;
            flex-direction: column;
          }

        .contnt_video h3 {
            font-size: 24px;
            line-height: 30px;            
            padding: 0 15px 15px;
        }

        .contnt_video span {
            font-size: 16px;
            line-height: 26px;
        }

        .logo_blk svg {
              width: 100px;
          }
        }

        @media(max-width:767px){
          .logo_blk svg {
              width: 80px;
          }
        .contnt_video h3 {
            font-size: 18px;
            line-height: 28px;       
            padding: 0 10px 10px;
        }

        .contnt_video span {
            font-size: 14px;
            line-height: 24px;
        }
          .video_blk video {
              height: 100%;
              width: auto;
              left: 0;
              position: relative;
              transform: none;
              pointer-events: all;
              z-index: 2;
          }
          .video_blk {
              max-width: 100%;
              height: 33.33%;
              overflow: hidden;
          }
          .video_box {
              height: 100vh;
          }
        }