SCSS

HTML

<div class="container">
  <div class="left">
    <div class="base">
      <div class="Image"></div>
      <div class="mask"></div>
      <div class="tag-content">
        <div class="content"></div>
      </div>
    </div>
    <div class="content"></div>
  </div>
</div>

SCSS

.container{
  position: relative; 
  width: 100%; 
  height: 100vh
}

.left{
  position: absolute; 
  height: 100%; 
  width: 65%; 
  left: 0
}

.left .base{
  clip-path: polygon(0 0, 100% 0, 54% 100%, 0% 100%);
  height: 100%;
  width: 100%;
}

.left .base .Image{
  background-image:url('https://img95.699pic.com/photo/50135/8221.jpg_wh860.jpg');
  left: -35%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100vw;
  height: 100%;
  position: absolute;
}

.left .base .mask{
  height: 100%;
  width: 100%;
  display: block;
  opacity: 0.5;
  position: absolute;
  background: #71660055;
}
.left .tag-content{
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  filter: blur(5px);
}
.left .tag-content .content{
  clip-path: polygon(3% 3%, 94% 3%, 50% 97%, 3% 97%);
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  background: rgba(255, 255, 255, 0.5);
}
.left .content{
  clip-path: polygon(3% 3%, 94% 3%, 50% 97%, 3% 97%);
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  background: rgba(255, 255, 255, 0);
  backdrop-filter: blur(5px);
}