.hero-stories{
  display: flex;
  align-items: flex-end;
  padding: 60px 20px;
  position: relative;
}
.hero-stories .wrapper{
  display: flex;
  gap: 50px;
  position: relative;
  align-items: flex-end;
  width: 1280px;
}
.hero-stories .back{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.hero-stories .back::before{
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  content: '';
  position: absolute;
  backdrop-filter: blur(7px);
}
.hero-stories .back img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-stories .left{
  flex: 1;
}
.hero-stories .right{
  flex: 1;
}
.hero-stories .right :is(:last-child){
  margin-bottom: 0;
}

@media(max-width: 1080px){
  .hero-stories .wrapper{
    gap: 40px;
  }
}
@media(max-width: 767px){
 .hero-stories .wrapper{
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-stories .wrapper > div{
    width: unset;
  }
  .hero-stories .left{
    max-width: 80%;
  }
  .hero-stories{
    padding: 180px 20px 40px;
    min-height: unset !important;
  }
  