.smoke-container {
    position: absolute;
    top: -25px;
    width: 104%;
    height: 25px;
    left: -2%;
    border-radius: 14px 14px 0 0;
}
  
.smoke-effect {
    position: absolute;
    top: 0;
    left: 1%;
    width: 98%;
    height: 100%;
    pointer-events: none;
    border-radius: inherit;
    display: block;
    filter: blur(7px);
}

@media only screen and (max-width: 763px) {

    .smoke-container {
      width: 94%;
      left: 3%;
      border-radius: 14px 14px 0 0;
    }

    .smoke-effect:not(:first-of-type()){
      display: none;
    }
}

@media only screen and (min-width: 763px) {
  .smoke-effect {
    left: 5%;
    width: 90%;
  }
}
  