@import url("https://fonts.googleapis.com/css2?family=Sora:wght@100..800&display=swap");

body {
  font-family: "Sora", sans-serif;
}


.banner-img {
  text-align: center;
  position: relative;
}

.banner-img .banner-first-img {
  width: auto;
  height: 100vh;
}

.banner-back-img {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  top: 0;
}

.banner-back-img img {
  filter: blur(10px);
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

.btn-buy {
  display: block;
  width: 200px;
  height: 50px;
  border-radius: 10px;
  margin: 20px auto;
  text-decoration: none;
  text-align: center;
  color: #fff;
  font-size: 24px;
  font-weight: 900;
  text-transform: capitalize;
  background: #fb26a5             ;
  line-height: 50px;
}

@media screen and (max-width: 767px) {
  .banner-img .banner-first-img {
    width: 100%;
    height: auto;
  }

  .banner-back-img {
    display: none;
  }
  .btn-buy{
    font-size: 18px;
  }
}
@media screen and (min-width: 768px) and (max-width:1024px) {
.banner-img .banner-first-img {
    width: 100%;
    height: auto;
  }
}