.blog-blocks {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  position: relative;
  width: 100%;
  margin: 50px 0px;
  padding: 30px 20px;
  background: #F9F4EE;
  border-radius: 20px;
}
.blog-blocks-light-purple {
  background: #F2F2F6;
}
.blog-blocks:before,
.blog-blocks:after {
  content: "";
  display: block;
  position: absolute;
  width: 20px;
  height: 20px;
  background-repeat;
  background-size: contain;
  background-position: center;
}
.blog-blocks:before {
  bottom: -10px;
  left: -30px;
  background-image: url(https://4059422.fs1.hubspotusercontent-na1.net/hubfs/4059422/Swapn/Icons/swapn-decor-03.svg);
}
.blog-blocks:after {
  top: -10px;
  right: -30px;
  background-image: url(https://4059422.fs1.hubspotusercontent-na1.net/hubfs/4059422/Swapn/Icons/swapn-decor-01.svg);
}
.blog-blocks > img {
  flex: none;
  width: 50px;
  border: none!important;
  border-radius: 0px!important;
}
.blog-blocks .h5-style {
  margin-top: 0px;
}

@media screen and (max-width: 992px) {
  .blog-blocks:before,
  .blog-blocks:after {
    display: none;
  }
  .blog-blocks > img {
    display: none;
  }
}