.info {
  width: 100%;
  position: absolute;
  bottom: 0;
  background: rgb(0 0 0 / 70%);
  backdrop-filter: blur(3px);
  border-radius: 58px 58px 0 0;
}

.infoMobile {display:none}


    @media(max-width:768px) {
      .info {display: none;}
      .infoMobile {display: block !important;
        background: #111111;
      }
    }