/* Hero Styling */
.hero__lede--bullets ul li {
  margin-bottom: 2rem;
}
.hero__lede--bullets ul li:last-child {
  margin-bottom: 0px;
}
.hero__content-wrapper {
  backdrop-filter: blur(5px);
}
.feature__title {
  backdrop-filter: blur(5px);
  transition: transform 0.5s ease-in-out;
}
/* gradient for BG image --There is a bug in Bricks which does not allow you to use gradient voverlay on absolutely positioned elements without breaking the in-builder*/
.hero__image-overlay {
  background: linear-gradient(to right, var(--shade-trans-80) 0%, rgba(255, 255, 255, 0) 100%);
}
/* feature cards hover sudo element */
.feature__wrapper:hover > .feature__title {
  transform: scale(1.2) translateY(-10px);
}
