.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%;
      top: -28px;
      height: 30px;
      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%;
    display: none;
  }
  .smoke-container{
    top: -44px;
    width: 92%;
    height: 42px;
    left: 4%;
    display: none;
    opacity: .3;
  }
}
  